Skip to content

Instantly share code, notes, and snippets.

View Noctem's full-sized avatar

David Christenson Noctem

View GitHub Profile
@Noctem
Noctem / BigBuckBunny.avi
Last active October 18, 2019 04:33
Sample Files
This file has been truncated, but you can view the full file.
# Patches for Qt must be at the very least submitted to Qt's Gerrit codereview
# rather than their bug-report Jira. The latter is rarely reviewed by Qt.
class Qt59 < Formula
desc "Cross-platform application and UI framework"
homepage "https://www.qt.io/"
url "https://download.qt.io/official_releases/qt/5.9/5.9.6/single/qt-everywhere-opensource-src-5.9.6.tar.xz"
mirror "https://www.mirrorservice.org/sites/download.qt-project.org/official_releases/qt/5.9/5.9.6/single/qt-everywhere-opensource-src-5.9.6.tar.xz"
sha256 "dacc995ae3a7cdad80eb9fdf6470299a8fac41f468a9bb941670ece523b62af4"
head "https://code.qt.io/qt/qt5.git", :branch => "5.9", :shallow => false
@Noctem
Noctem / niahash32.c
Last active November 12, 2016 07:12 — forked from laverdet/niahash.c
niahash.c w/ __uint128_t removed
#include <stdint.h>
#include <string.h>
#define HI(n) ((uint64_t)(n)>>32)
#define LO(n) ((uint64_t)(n)&0xffffffff)
#define U128(hi,lo) ((my_uint128_t){ .high = hi, .low = lo})
typedef struct {
uint64_t high;
uint64_t low;
@Noctem
Noctem / niahash.c
Last active December 2, 2016 08:30 — forked from anonymous/niahash.c
niahash c
#include <stdint.h>
#include <string.h>
#define HI(n) ((uint64_t)(n)>>32)
#define LO(n) ((uint64_t)(n)&0xffffffff)
#define U128(high,low) ((__uint128_t)(uint64_t)high<<64 | (uint64_t)low)
#if 1
/* IOS 1.15.0 */
static uint64_t magic_table[16] = {
@Noctem
Noctem / # rust - 2016-09-28_04-53-56.txt
Created September 28, 2016 23:43
rust on macOS 10.12 - Homebrew build logs
Homebrew build logs for rust on macOS 10.12
Build date: 2016-09-28 04:53:56
@Noctem
Noctem / # rust - 2016-09-28_04-53-56.txt
Created September 28, 2016 23:42
rust on macOS 10.12 - Homebrew build logs
Homebrew build logs for rust on macOS 10.12
Build date: 2016-09-28 04:53:56
@Noctem
Noctem / notification-test.py
Created August 9, 2016 05:02
Test pokeminer notifications.
#!/usr/bin/env python
import notification
import time
pokemon = {
'encounter_id': 9325,
'spawn_id': 3502935,
'pokemon_id': 6,
'expire_timestamp': time.time() + 600000 / 1000.0,
@Noctem
Noctem / # git-annex - 2015-12-29_05-29-08.txt
Created December 29, 2015 20:04
git-annex on OS X 10.11.2 - Homebrew build logs
Homebrew build logs for git-annex on OS X 10.11.2
Build date: 2015-12-29 05:29:08
2015-08-03 14:23:41 -0600
./configure
-prefix
/Users/David/Developer/qBittorrent-env/homebrew/Cellar/qt/4.8.7
-system-zlib
-qt-libtiff
-qt-libpng
-qt-libjpeg
-confirm-license
@Noctem
Noctem / qBittorrent-build.txt
Last active August 29, 2015 14:21
qBittorrent build terminal output
$ ./configure --with-geoip-database-embedded --with-qt5 --with-boost=/Users/David/Developer/qBittorrent-env/homebrew/opt/boost
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed