Skip to content

Instantly share code, notes, and snippets.

View tewedaj's full-sized avatar

Code Blue tewedaj

View GitHub Profile
@ArnoutDevos
ArnoutDevos / Remove_notebook_checkpoints.sh
Created December 7, 2018 10:08
command to remove automatically created .ipynb_checkpoints folders and their checkpoints
rm -rf `find -type d -name .ipynb_checkpoints`
@TheSalarKhan
TheSalarKhan / Program.cs
Created October 8, 2016 23:21
GZIP Compress/Decompress in C#/JAVA
using System;
using System.IO;
using System.IO.Compression;
using System.Text;
class Program {
private static string Compress(string text)
{
byte[] buffer = Encoding.UTF8.GetBytes(text);