Skip to content

Instantly share code, notes, and snippets.

View servadestroya's full-sized avatar

servadestroya

View GitHub Profile
@ThunderCls
ThunderCls / acid_lime.ini
Last active May 19, 2024 21:45
Acid Lime Theme by ThunderCls (http://i.imgur.com/IuvA7gq.png)
[Colors]
AbstractTableViewBackgroundColor=#212121
AbstractTableViewHeaderTextColor=#000000
AbstractTableViewSelectionColor=#2E2E2E
AbstractTableViewSeparatorColor=#454545
AbstractTableViewTextColor=#E8EADE
DisassemblyAddressBackgroundColor=#XXXXXX
DisassemblyAddressColor=#484848
DisassemblyAutoCommentBackgroundColor=#XXXXXX
DisassemblyAutoCommentColor=#787878
@chipx86
chipx86 / streaming-tar.py
Last active October 20, 2022 21:17
Sample code to build a tar chunk-by-chunk and stream it out all at once.
#!/usr/bin/env python
#
# Building a tar file chunk-by-chunk.
#
# This is a quick bit of sample code for streaming data to a tar file,
# building it piece-by-piece. The tarfile is built on-the-fly and streamed
# back out. This is useful for web applications that need to dynamically
# build a tar file without swamping the server.
import os
import sys