This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Normal white Button as seen on Google.com*/ | |
| button { | |
| color: #444444; | |
| background: #F3F3F3; | |
| border: 1px #DADADA solid; | |
| padding: 5px 10px; | |
| border-radius: 2px; | |
| font-weight: bold; | |
| font-size: 9pt; | |
| outline: none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name clicca cuore auto periscope | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.pscp.tv/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name rimpiazza timeevent (roba di periscope) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.pscp.tv/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding=utf-8 | |
| import os | |
| from os import listdir | |
| from os.path import isfile, join | |
| bot_path=os.getcwd() | |
| lista_cibo=[f for f in listdir(bot_path) if isfile(join(bot_path, f))] | |
| for x in lista_cibo: | |
| os.rename(x,x.replace(" ","_")) |
NewerOlder