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
#!/usr/bin/perl | |
###################################################### | |
# SHA512 Hash Bruter v1.0 by Exor # | |
###################################################### | |
$ver = "01"; | |
$dbgtmr = "1"; #Intervall of showing the current speed + lastpassword in seconds. | |
if ($dbgtmr<=0){ die "Set dbgtmr to a value >=1 !\n";}; | |
use Digest::SHA("\x73\x68\x61\x35\x31\x32\x5f\x68\x65\x78"); |
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
#!/bin/bash | |
while true; do | |
"$HOME/.bin/dwm-status" & | |
sleep 1; | |
done & | |
dzconky & | |
sleep 1 && trayer --widthtype request --edge bottom --align right --height 20 --transparent true --tint '0x121212' & | |
pidgin & | |
parcellite & | |
wicd-client & |
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
# file: ~/.bin/dwm-status | |
# description: status script for dwm's statusbar | |
# note: the weird symbols are for the custom-made icons from the font | |
#!/bin/zsh | |
date_format="%H:%M, %a %d %b %Y" | |
internet_checker() { # {{{ | |
if host google.com &> /dev/null | |
then return 0 |
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
#!/bin/zsh | |
if zenity --question --text="Upload file?" --ok-label="Yes" --cancel-label="No" ; then | |
if file=$(zenity --file-selection --title="Select a File") | |
then | |
zenity --info --text="Link: \n$(ompload -u "$file" | awk '{print $NF}')" | |
else | |
zenity --info --text="$(echo "No file selected.")" ; | |
fi | |
fi |
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
#! /usr/bin/python2 | |
import os | |
import string | |
import urllib | |
#Enter your username and password below within double quotes | |
# eg. username="username" and password = "password" | |
username = "user" | |
password = "pass" |
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
# file: ~/.tmux.conf | |
# description: Configuration file for tmux,the terminal multiplexer | |
# credits: milomouse from arch linux bbs | |
# command prefix: | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
bind-key b set-option status | |
bind-key K confirm kill-server |
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
#! /usr/bin/python | |
""" | |
Python3 script which returns new mail count from gmail | |
""" | |
import urllib.request | |
import re | |
URL = "https://mail.google.com/gmail/feed/atom" | |
username = "username" |
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
#!/bin/zsh | |
# ANSI Color -- use these variables to easily have different color | |
# and format output. Make sure to output the reset sequence after | |
# colors (f = foreground, b = background), and use the 'off' | |
# feature for anything you turn on. | |
initializeANSI() | |
{ | |
esc="" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<feed version="0.3" xmlns="http://purl.org/atom/ns#"> | |
<title>Gmail - Inbox for [email protected]</title> | |
<tagline>New messages in your Gmail Inbox</tagline> | |
<fullcount>0</fullcount> | |
<link rel="alternate" href="http://mail.google.com/mail" type="text/html" /> | |
<modified>2011-08-06T15:13:45Z</modified> | |
</feed> |
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
#!/bin/sh | |
# ANSI Color -- use these variables to easily have different color | |
# and format output. Make sure to output the reset sequence after | |
# colors (f = foreground, b = background), and use the 'off' | |
# feature for anything you turn on. | |
initializeANSI() | |
{ | |
esc="" |
NewerOlder