Skip to content

Instantly share code, notes, and snippets.

View zawmoehtike's full-sized avatar
💻
Coding

Zaw Moe Htike zawmoehtike

💻
Coding
View GitHub Profile

FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

What's an Effective Engineer?

@zawmoehtike
zawmoehtike / Plurality.c
Created July 5, 2020 02:40 — forked from teeschorle/Plurality.c
CS50 Problem Set 3 (Fall 2019) - Plurality
#include <cs50.h>
#include <stdio.h>
#include <string.h>
// Max number of candidates
#define MAX 9
// Candidates have name and vote count
typedef struct
{
@zawmoehtike
zawmoehtike / proguard-rules.pro
Created June 9, 2020 08:01 — forked from jemshit/proguard-rules.pro
Proguard rules for common Android libraries
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
-keepclassmembers class fqcn.of.javascript.interface.for.webview {
public *;
}
### RxJava, RxAndroid (https://gist.github.com/kosiara/487868792fbd3214f9c9)
-keep class rx.schedulers.Schedulers {
public static <methods>;