Skip to content

Instantly share code, notes, and snippets.

View JasonHarder's full-sized avatar
🏠
Working from home

Jason Harder JasonHarder

🏠
Working from home
View GitHub Profile
@hadanischal
hadanischal / charles-proxy-android.md
Created July 14, 2021 05:38 — forked from twaddington/charles-proxy-android.md
How to set up Charles Proxy for the Android Emulator.

Charles Proxy Android

Steps

1. Add the Network Security Configuration to your app

<network-security-config>
   <debug-overrides>
 
@flyingluscas
flyingluscas / InstallPopcornTime.md
Last active April 19, 2023 01:51
Installing Popcorn Time on Ubuntu 16.x

1. Downloading

32 bits version

$ wget https://get.popcorntime.sh/build/Popcorn-Time-0.3.10-Linux-32.tar.xz -O popcorntime.tar.xz

64 bits version

@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@cesarfigueroa
cesarfigueroa / ordinals.rb
Last active September 7, 2017 03:29
Ordinal Indicators in Ruby
class Fixnum
def with_ordinals
if (11..13).include?(self.abs % 100)
'th'
else
case self.abs % 10
when 1 then 'st'
when 2 then 'nd'
when 3 then 'rd'
else 'th'