How to Use
Open up Terminal.app
in your /Applications/Utilities
directory, then type in these commands, one after each other:
-
Create a temporary directory for cycript:
mkdir cycript && cd cycript
-
Pull the latest cycript from cycript.org:
(function () { | |
if (!window.fluid) { | |
alert("This script is meant to be run in Fluid! You should disable it."); | |
return; | |
} | |
window.fluid.dockBadge = ''; | |
setInterval(newNotif, 500); |
// put this file somewhere on your Mac | |
// download jquery and put it there as well | |
// then in Fluid, under the Userscripts option set the path pattern to match your | |
// inotes UL, then add the below, tweak for your path | |
// window.fluid.include("/Users/userid/Documents/Mac/Fluid/jquery-1.8.3.min.js"); | |
// window.fluid.include("/Users/userid/Documents/Mac/Fluid/fluid-inotes.js"); | |
// | |
// Note the auto userid and password filling this script does. Obviously adjust to | |
// your info. Line ~108 below. |
(function () { | |
if (!window.fluid) { | |
alert("This script is meant to be run in Fluid! You should disable it."); | |
return; | |
} | |
window.fluid.dockBadge = ''; | |
setInterval(newNotif, 500); |
/* Start by setting display:none to make this hidden. | |
Then we position it in relation to the viewport window | |
with position:fixed. Width, height, top and left speak | |
speak for themselves. Background we set to 80% white with | |
our animation centered, and no-repeating */ | |
div.loading { | |
display: block; | |
position: fixed; | |
z-index: 1000; |
#!/bin/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name="$inputline" | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url="$inputline" |
Open up Terminal.app
in your /Applications/Utilities
directory, then type in these commands, one after each other:
Create a temporary directory for cycript:
mkdir cycript && cd cycript
Pull the latest cycript from cycript.org:
/* Move the wp-admin bar to the bottom */ | |
#wpadminbar { | |
bottom: 0; | |
position: fixed; | |
top: initial; | |
} | |
body.logged-in.admin-bar { | |
margin-top: -32px; | |
} | |
@media(max-width:782px) { |
/* | |
Turn any webpage back into a wireframe with "lorem ipsum" text. | |
1. Bookmark this page | |
2. Edit the bookmark, and change the link into | |
javascript:(function(u){ c=document;b=c.body;s=c.createElement('script');s.src=u+'?r='+(new Date()).getTime();b.appendChild(s);})('https://raw.github.com/gist/585708/ac1961130915ed2aef0e67bc97d35ead08513aba/loremipsumizer.js');void(0); | |
3. Visit any webpage | |
4. Click on the bookmark |
tell application "Safari" | |
set current_tab to current tab of front window | |
set tab_title to name of current_tab | |
set tab_address to URL of current_tab | |
tell application "Spillo" | |
show create bookmark panel with properties {url:tab_address, title:tab_title} | |
end tell | |
end tell |
#!/usr/bin/python | |
################################################################################ | |
# tool: Brutus - FTP Brute-Force/Dictionary Attack Tool | |
# version: 0.3 | |
# email: mrh@bushisecurity.com | |
# www: bushisecurity.com/brutus/ | |
################################################################################ | |
# MIT License |