Skip to content

Instantly share code, notes, and snippets.

View natelowry's full-sized avatar
:shipit:

Nate Lowry natelowry

:shipit:
View GitHub Profile
@julian-savage
julian-savage / GzipInputStream.swift
Created August 7, 2016 13:23
InputStream which decompresses gzip/zlib compressed data
import Foundation
import Compression
public class GzipInputStream : InputStream {
private var decompressor : Decompressor
override public init(data: Data) {
let compressedInputStream = InputStream(data: data)
self.decompressor = Decompressor(compressedInputStream)
@aras-p
aras-p / preprocessor_fun.h
Last active July 16, 2024 02:50
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,