View ssh-yubisign.py
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/env python3 | |
import base64 | |
import getpass | |
import os | |
import socket | |
import struct | |
import sys | |
import OpenPGPpy # requires https://github.com/dnet/OpenPGPpy/commit/d97a2184a1c1e40599ad1db30b06d33bb7178e59 |
View extract.py
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/env python | |
import subprocess, tempfile, struct, shutil, os | |
HDR_FMT = '<hhh' | |
HDR_LEN = struct.calcsize(HDR_FMT) | |
def extract_64bit_ico(exefn, icofn): | |
d = tempfile.mkdtemp() | |
gis = os.path.join(d, '.rsrc', 'GROUP_ICON') |
View Decode ARM64 CFString.py
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
import struct, re | |
doc = Document.getCurrentDocument() | |
sg = doc.getCurrentSegment() | |
addr = doc.getCurrentAddress() | |
i1 = sg.getInstructionAtAddress(addr) | |
if i1.getInstructionString() == 'adrp': |
View unzipwrapper.py
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
from subprocess import Popen, PIPE | |
from tempfile import TemporaryFile | |
from os import devnull | |
class ZipFile(object): | |
def __init__(self, filename): | |
self.filename = filename | |
open(filename).close() | |
def __enter__(self): |
View gist:9505053
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
-module(teszt). | |
-export([init/1, handle_call/3, q/1, init/0]). | |
-behaviour(gen_server). | |
init() -> | |
gen_server:start_link(?MODULE, [], []). | |
q(Pid) -> gen_server:call(Pid, q). | |
init([]) -> {ok, 0}. | |
handle_call(q, _, N) -> {reply, N, N + 1}. |
View gist:8568440
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
-module(test). | |
-export([foo/1, proc/0, price/1]). | |
-export([init_queue/0, queue_server/1, srv_enqueue/2, srv_dequeue/1]). | |
%% A function that returns a function, demonstrating that functions are | |
%% first-class citizens in the Erlang world. | |
%% | |
%% Example: | |
%% > SixMultiplier = test:foo(6). | |
%% #Fun<test.0.23908741> |
View searx.erl
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
-module(searx). | |
-export([ircmain/1, ircproc/1, reload/2]). | |
ircmain(Contact) -> | |
Pid = spawn(?MODULE, ircproc, [Contact]), | |
Contact ! {subscribe, Pid}, | |
ssl:start(), | |
Pid. | |
reload(Contact, Pid) -> |
View tickets.erl
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
-module(tickets). | |
-export([ircmain/1, ircproc/1, reload/2]). | |
-define(TICKETS_DIR, "path/to/campzer0"). | |
tickets() -> | |
NumTickets = filelib:fold_files(?TICKETS_DIR, | |
"\\.json$", false, fun (_, A) -> A + 1 end, 0), | |
integer_to_list(NumTickets). |
View mails.sh
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 | |
# reads e-mail addresses (one per row) from `mails.txt` and writes | |
# e-mail bodies into files inside the `mails` directory, putting the | |
# e-mail address in the filename, with a `.txt` extension -- these | |
# can be changed below | |
# author: András Veres-Szentkirályi <vsza@vsza.hu> | |
# source code is licensed under MIT, textual content under CC-BY-SA |
View tweet.erl
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
% depends: https://github.com/dnet/erlang-oauth | |
% depends: https://github.com/talentdeficit/jsx | |
-module(tweet). | |
-export([ircmain/1, ircproc/1, reload/2]). | |
-define(CONSUMER_KEY, "..."). | |
-define(CONSUMER_SECRET, "..."). | |
-define(ACCESS_TOKEN, "..."). | |
-define(TOKEN_SECRET, "..."). |
NewerOlder