Skip to content

Instantly share code, notes, and snippets.

View NickM101's full-sized avatar
🤖
Pathfinder

Nick_Munene NickM101

🤖
Pathfinder
  • Nairobi, Kenya
  • 09:59 (UTC +03:00)
View GitHub Profile
@Pirsanth
Pirsanth / run2DifferentReactNativeAppsOn2DifferentEmulatorsOrDevicesAtTheSameTime.md
Last active December 28, 2023 03:26
How to run 2 different react native apps on 2 different emulators/devices at the same time

How to run 2 different react native apps on 2 different emulators/devices at the same time

I've been a react-native developer for about one and a half years now. I have only recently begun reading some of react-native-community/cli's source code in preparation of becoming an open source contributor. In the process of doing so, I have found ways of alleviating a few common pain points for me when developing with react-native. This gist will deal with one such pain point, as per the title above and is a part of a larger series of such posts.

Story time

Click here to view a higher resolution version of the above gif (Github's Camo only allows gifs smaller than 5 megabytes)

For a project at my last company, we has two separate apps one that was the admin version of the app and another that was the client version of the app with two seperate repos. Both versions of the app wor

@dantheman213
dantheman213 / youtube-dl_cheatsheet.md
Last active January 23, 2022 01:40
youtube-dl best way to download video or entire to high quality mp3

youtube-dl cheat sheet

Docs and Binary for youtube-dl are located here:

https://github.com/rg3/youtube-dl/

Install dependencies

apt-get install libav-tools ffmpeg # Linux (either one of either should do) brew install ffmpeg # OSX choco install ffmpeg # Windows

@bantya
bantya / countrys_flags.js
Last active January 3, 2024 21:15
Javascript : Flags of the countries
/**
* All flags are thankfuly taken from http://flagpedia.net/
* Flag lovers should definitely check it out..
*
* User can modify this list as per his/her need..
*
* - Rahul K. Thakare
* INDIA
* rahulthakare1504@gmail.com
* github.com/bantya
@bartholomej
bartholomej / css-media-queries-cheat-sheet.css
Last active April 12, 2024 14:40
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }