Skip to content

Instantly share code, notes, and snippets.

@jaradat
jaradat / Program.cs
Created November 24, 2018 12:53 — forked from TheSalarKhan/Program.cs
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);
@sgk
sgk / PatchYun.ino
Created September 20, 2013 17:50
Patch Yun to disable WiFi function.
#include <Process.h>
void setup() {
Bridge.begin();
Serial.begin(9600);
while (!Serial)
;
Serial.print("Patching...");