Skip to content

Instantly share code, notes, and snippets.

View fuomag9's full-sized avatar
🥝
Available

fuomag9

🥝
Available
View GitHub Profile
@fuomag9
fuomag9 / script.js
Created February 3, 2019 15:33
DNSDUMPSTER -> console
// ==UserScript==
// @name DNSDUMPSTER -> console
// @namespace http://tampermonkey.net/
// @version 0.1
// @description DNSDUMPSTER -> console
// @author fuomag9
// @match https://dnsdumpster.com/
// @grant none
// ==/UserScript==
@fuomag9
fuomag9 / space2underscore.py
Last active September 6, 2018 08:29
Replace spaces with underscores for files in execution folder
# 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(" ","_"))