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
<a onclick="wp_showhide.main(this, '{myId}')" href="javascript:void(0)"> | |
["{Show Text}", "{Hide Text}", "{visible}"] | |
</a> | |
<div id="{myId1}"> | |
{Content goes here} | |
</div> |
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
<a onclick="wp_showhide.main(this, 'spoiler1')" href="javascript:void(0)"> | |
["Show Text", "Hide Text", "visible"] | |
</a> | |
<div id="spoiler1"> | |
{Content goes here} | |
</div> |
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
defaults write com.apple.dashboard mcx-disabled -boolean YES | |
killall Dock |
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
defaults write com.apple.dashboard mcx-disabled -boolean NO | |
killall Dock |
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
package main | |
import ( | |
"net" | |
"strings" | |
"fmt" | |
) | |
func handleConnection(conn net.Conn) { | |
// try to read data from the connection |
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
.popup { | |
position:fixed; | |
color: #4c3327; | |
font-family: Helvetica, Arial, sans-serif; | |
top:0; | |
left:0; | |
width:100%; | |
height:100%; | |
max-width:100%; | |
max-height:100%; |
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 | |
# -*- coding: utf-8 -*- | |
import subprocess | |
__all__ = ["transform"] | |
__version__ = '0.3' | |
__author__ = 'Christoph Burgmer <[email protected]>' | |
__url__ = 'http://github.com/cburgmer/upsidedown' |
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 python2 | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
import sys | |
import struct | |
import socket | |
import time | |
import select |
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
; Map ctrl-backspace to delete (similar to MacOS) | |
^BS:: | |
Send {DEL} | |
return | |
; Map Caps lock to escape | |
Capslock::Esc | |
; Toggles default audio device in Control Panel (switches between headset and speakers). | |
!s:: |
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
curl 'https://www.unitedwifi.com/payment/ajax/notification.do' --data 'actionkey=FLIGHT_TIME_NOTIFICATIONS' --compressed | |
# [{ | |
# "class":"com.bluebird.business.flightimebar.FlightimeBarResponse", | |
# "destinationIATA":"MCO", | |
# "eventType":"FLIGHTTIMEBAR", | |
# "flightETA":"8:58PM", | |
# "flightRunningStatus":89, | |
# "flightStatusText":"0h 33m with United Wi-Fi!", | |
# "flightTotalDuration":332, | |
# "markers":[{ |