Skip to content

Instantly share code, notes, and snippets.

View mfcallahan's full-sized avatar
🌵
console.log("Hello̸,̵ ̵W̴o̵r̵̩̉ļ̶̠̋͠d̵̡̡͖̏̋̅͜͝!̵̯͕͔̇"̵̰̪̮̠͊̈)̷̢͎̰͌͑;̵̳̟̏̐

Matt Callahan mfcallahan

🌵
console.log("Hello̸,̵ ̵W̴o̵r̵̩̉ļ̶̠̋͠d̵̡̡͖̏̋̅͜͝!̵̯͕͔̇"̵̰̪̮̠͊̈)̷̢͎̰͌͑;̵̳̟̏̐
View GitHub Profile
@scolestock
scolestock / ConsoleSpinner.cs
Last active July 20, 2020 14:25
C# Console spinner
// Inspired by http://www.dib0.nl/code/458-a-spinner-for-console-in-net
public class ConsoleSpinner
{
/// <summary>
/// Displays a text spinner and ellipses until a task completes.
/// </summary>
/// <param name="task">Task to watch for completion</param>
/// <param name="description">Description of the work - single word</param>
public static void UntilTaskComplete(Task task, string description = "work")
{
@matteomattei
matteomattei / crc32.py
Created July 8, 2014 07:52
Calculate CRC32 of a file in Python
#!/usr/bin/env python
import binascii
def CRC32_from_file(filename):
buf = open(filename,'rb').read()
buf = (binascii.crc32(buf) & 0xFFFFFFFF)
return "%08X" % buf
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active May 19, 2024 17:40
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\