brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
| 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 |
| #EXTM3U | |
| #EXTINF:-1,Mega Nordeste | |
| http://listen.radionomy.com:80/MegaNordeste |
| { | |
| "type": { | |
| "value": "feed" | |
| }, | |
| "entry": [ | |
| { | |
| "id": "001", | |
| "title": "live_audio_stream", | |
| "summary": "this item plays item in mp3 format", | |
| "type": { |
| { | |
| "type" : { | |
| "value" : "feed" | |
| }, | |
| "entry" : [ | |
| { | |
| "type" : { | |
| "value" : "video" | |
| }, | |
| "id" : "Id1", |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies
| //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 |