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
# Window index base 1 | |
set -g base-index 1 | |
set -g default-terminal "screen-256color" | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
# THEME | |
setw -g window-status-fg blue | |
setw -g window-status-bg default | |
setw -g window-status-attr bright |
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 | |
import curses | |
import socket | |
def get_info(host, port=25565): | |
# Cheers barneygale | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.settimeout(5.0) | |
s.connect((host, port)) | |
s.send('\xfe') |
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 | |
import curses | |
import socket | |
import thread | |
from time import sleep | |
def get_info(host, port=25565): | |
# Cheers barneygale | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.settimeout(5.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
#!/usr/bin/env python | |
#import thread | |
import threading | |
import time | |
import socket | |
class honey(threading.Thread): | |
"""Honeypot""" |
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
# Window index base 1 | |
set -g base-index 1 | |
set -g default-terminal "screen-256color" | |
set -g prefix C-b | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
set -g mode-keys vi | |
# easily toggle synchronization (mnemonic: e is for echo) | |
bind e setw synchronize-panes on |
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
<!-- Menu element that rolls in from the left --> | |
<div class="meny"> | |
<h2>More Experiments</h2> | |
<ul> | |
<li><a href="http://lab.hakim.se/radar/">Radar</a></li> | |
<li><a href="http://lab.hakim.se/forkit-js/">forkit.js</a></li> | |
<li><a href="http://lab.hakim.se/scroll-effects/">stroll.js</a></li> | |
<li><a href="http://lab.hakim.se/zoom-js">zoom.js</a></li> | |
<li><a href="http://lab.hakim.se/reveal-js">reveal.js</a></li> | |
<li><a href="http://itunes.apple.com/us/app/sinuous/id543097218">Sinuous iOS</a></li> |
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/env python | |
import curses | |
import curses.ascii | |
import curses.textpad | |
import subprocess | |
class processing: | |
def Run(self, command): |
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
<div id="testfield" class="span16"> | |
<div class="flyout-wrap"> | |
<a class="flyout-btn" href="#" title="Toggle"><span>Flyout Menu Toggle</span></a> | |
<ul class="flyout flyout-init"> | |
<li><a href="#"><span>Item</span></a></li> | |
<li><a href="#"><span>Item</span></a></li> | |
<li><a href="#"><span>Item</span></a></li> | |
<li><a href="#"><span>Item</span></a></li> | |
<li><a href="#"><span>Item</span></a></li> | |
<li><a href="#"><span>Item</span></a></li> |
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 | |
### BEGIN INIT INFO | |
# Provides: klaus | |
# Required-Start: | |
# Required-Stop: | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Git GUI loader | |
# Description: Start klaus git web front end | |
# |
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
import sys | |
import re | |
import subprocess | |
server_names = ('creative', 'survival', 'pve') | |
groups = ['HeadAdmins', 'TechAdmins', 'Moderators', 'sadmins', 'padmins', 'cadmins'] | |
path = '/ssd/%s/plugins/bPermissions/world/users.yml' |
OlderNewer