Skip to content

Instantly share code, notes, and snippets.

@reqshark
reqshark / init.coffee
Created November 4, 2015 07:50
atom server
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@dengjonathan
dengjonathan / .babelrc
Last active May 1, 2018 20:36
Webpack/ Babel/ Express Env for React
{
"plugins": ["react-hot-loader/babel"],
"ignore":[]
}
@Nikolaj-K
Nikolaj-K / bit_level_SHA256.py
Last active May 6, 2024 07:14
A python script to perform sha2 in terms of if-statements and for-loops.
"""
Bit level SHA2.
Script to perform sha2 in terms of if-statements and for-loops. This runs 1 batch iteration
(i.e. about 50 bytes max input, but should be easy to extend to any size.)
No warranty.
Explanation video:
https://youtu.be/UziK-Hqzwi4
2019