Skip to content

Instantly share code, notes, and snippets.

View sherwino's full-sized avatar
💨

Sherwin sherwino

💨
View GitHub Profile
2021-03-29 18:17:02.682 7609-7609/com.applicaster.miamiheat I/libc: SetHeapTaggingLevel: tag level set to 0
2021-03-29 18:17:02.704 7609-7609/com.applicaster.miamiheat I/aster.miamihea: Late-enabling -Xcheck:jni
2021-03-29 18:17:02.743 7609-7609/com.applicaster.miamiheat I/aster.miamihea: Unquickening 26 vdex files!
2021-03-29 18:17:02.756 7609-7609/com.applicaster.miamiheat D/ActivityThread: setConscryptValidator
2021-03-29 18:17:02.757 7609-7609/com.applicaster.miamiheat D/ActivityThread: setConscryptValidator - put
2021-03-29 18:17:02.774 7609-7609/com.applicaster.miamiheat D/ActivityThread: handleBindApplication()++ app=com.applicaster.miamiheat
2021-03-29 18:17:02.783 7609-7609/com.applicaster.miamiheat D/ApplicationLoaders: Returning zygote-cached class loader: /system/framework/android.test.base.jar
2021-03-29 18:17:03.120 7609-7609/com.applicaster.miamiheat D/ActivityThread: handleBindApplication() -- skipGraphicsSupport=false
2021-03-29 18:17:03.121 7609-7609/com.applicaster.miamiheat D/ActivityThrea
@sherwino
sherwino / mega.m3u8
Created June 20, 2020 05:36
live-audio
#EXTM3U
#EXTINF:-1,Mega Nordeste
http://listen.radionomy.com:80/MegaNordeste
@sherwino
sherwino / audio.json
Last active June 24, 2020 04:57
Feeds
{
"type": {
"value": "feed"
},
"entry": [
{
"id": "001",
"title": "live_audio_stream",
"summary": "this item plays item in mp3 format",
"type": {
@sherwino
sherwino / two.json
Last active December 13, 2019 18:55
Two items feed
{
"type" : {
"value" : "feed"
},
"entry" : [
{
"type" : {
"value" : "video"
},
"id" : "Id1",
@sherwino
sherwino / happy_git_on_osx.md
Created November 16, 2018 16:00 — forked from trey/happy_git_on_osx.md
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "[email protected]"

@sherwino
sherwino / ultimate-ut-cheat-sheet.md
Created August 3, 2018 14:03 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai and Sinon

The Ultimate Unit Testing Cheat-sheet

For Mocha, Chai and Sinon

using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies


@sherwino
sherwino / mongo-autostart-osx.md
Created May 6, 2018 02:24 — forked from subfuzion/mongo-autostart-osx.md
mongo auto start on OS X

Install with Homebrew

brew install mongodb

Set up launchctl to auto start mongod

$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents

/usr/local/opt/mongodb/ is a symlink to /usr/local/Cellar/mongodb/x.y.z (e.g., 2.4.9)

@sherwino
sherwino / index.js
Created April 26, 2018 23:44
Play/Pause Gifs
//This funciton allows the user to play and stop each gif on user click
$("body").on("click", ".allGiphyImages", function() {
var src = $(this).attr("src");
if($(this).hasClass("play")){
//Stop the gif animation
$(this).attr("src", src.replace(/\.gif/i, "_s.gif"));
$(this).removeClass("play");
} else {
//Play the gif animation