Skip to content

Instantly share code, notes, and snippets.

View kyxap's full-sized avatar
🏴󠁧󠁢󠁥󠁮󠁧󠁿

kyxap kyxap

🏴󠁧󠁢󠁥󠁮󠁧󠁿
View GitHub Profile
@kyxap
kyxap / gitCheat.md
Last active February 28, 2018 18:24
My Git Cheat Sheet
  • Delete remote branch: git push origin --delete <branch_name>
  • Delete local branch : git branch -d <branch_name>
  • Uncommit/Delete local commits: git reset --soft HEAD^
  • Chech/View unpushed commits: git log --branches --not --remotes
  • Diff added and uncomited: git diff --cached
@hackruu
hackruu / di-fm-premium-account-generator.sh
Last active June 17, 2024 07:14
Generate di.fm premium account and playlist. Also supports radiotunes.com (ex sky.fm) and jazzradio.com.
#!/bin/bash
AGENT="AudioAddict-di/1.4.7 iOS/8.1"
COOKIES="./cookies.txt"
AUTH="ephemeron:dayeiph0ne@pp"
DOMAIN=gmail.com
PLAYLISTDI="di.fm.m3u"
PLAYLISTSKY="sky.fm.m3u"
PLAYLISTJAZZ="jazzradio.m3u"
PLAYLISTROCK="rockradio.m3u"
PLAYLISTCLASSICAL="classicalradio.m3u"
@rxaviers
rxaviers / gist:7360908
Last active June 27, 2024 16:22
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@mcs
mcs / XmlUnitTest.java
Created October 19, 2011 06:48
Using XMLUnit in JUnit4 to test XML
package learning_tests;
import static org.custommonkey.xmlunit.XMLAssert.*;
import org.custommonkey.xmlunit.XMLUnit;
import org.junit.Test;
public class XmlUnitTest {
@Test