- the transport
- the party that controls the physical communication. for example yourrouter, or your IRCS network (the set of servers)
- note that in an IRC network where one or more links are non-SSL then the whole world is effectively the IRC network
This file contains 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 | |
# | |
# Usage: | |
# | |
# $ ./conception.py 1969-12-25 | |
# searching for most recent event before 1969-04-03 | |
# <li><a href="/wiki/April_1" title="April 1">April 1</a> | |
# – The <a href="/wiki/Hawker_Siddeley_Harrier" title="Hawker Siddeley Harrier">Hawker Siddeley Harrier</a> enters | |
# service with the <a href="/wiki/Royal_Air_Force" title="Royal Air Force">Royal Air Force</a>.</li> | |
# |
This file contains 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
9 |
This file contains 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 | |
# RFC2822 to ISO8601 date converter, that doesn't require you to fuck with the TZ variable. | |
# Fuck the POSIX time functions. | |
import time, email.utils, sys | |
t = email.utils.parsedate_tz(sys.argv[1]) | |
t, tz = t[:-1], t[-1] | |
print(time.strftime("%Y-%m-%dT%H:%M:%S", t) + "{0:+03d}{1:02d}".format(tz/3600, tz/60%60)) |
This file contains 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/python3 -i | |
from nacl.bindings import * | |
from binascii import b2a_hex | |
BO = "little" | |
order_b = 2**252 + 27742317777372353535851937790883648493 | |
order = 8 * order_b |
This file contains 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 | |
# Run this from a clone of: | |
# https://forge.ocamlcore.org/anonscm/git/ocamleditor/ocamleditor.git | |
set -e | |
VERSION="${VERSION:-1.13.2}" | |
git checkout $VERSION | |
git clean -fdx |
This file contains 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
# -- Options for LaTeX output --------------------------------------------- | |
latex_elements = { | |
# The paper size ('letterpaper' or 'a4paper'). | |
'papersize': 'a4paper', | |
# The font size ('10pt', '11pt' or '12pt'). | |
#'pointsize': '10pt', | |
# Additional stuff for the LaTeX preamble. |
This file contains 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
APT::Default-Release "testing"; | |
#Aptitude::Purge-Unused "true"; | |
APT::Architectures { "amd64"; "i386"; }; |
This file contains 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
Right about now, Free Software court is in full effect | |
Judge Whax presiding | |
In the case of Free Software vs. the GNOME Foundation; | |
prosecuting attorneys are: Satoshi, YYY, and ZZ-motherfucking-Z | |
Order, order, order | |
Satoshi, take the motherfucking stand | |
Do you swear to tell the truth, the whole truth | |
and nothing but the truth so help your nerd ass? |
This file contains 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
*.cm* | |
/a.out |
OlderNewer