Skip to content

Instantly share code, notes, and snippets.

View mtekasetya's full-sized avatar

Miftachut Ekasetya mtekasetya

View GitHub Profile
@mtekasetya
mtekasetya / gist:0f320e516a1dca13b707f0b86421bb85
Created January 16, 2022 16:02 — forked from rxaviers/gist:7360908
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:
@mtekasetya
mtekasetya / github actions debug
Created January 16, 2022 16:01 — forked from ovitente/github actions debug
A way to debug Github Actions workflows
---
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners
name : debug
on :
push :
branches : [ "master" ]
@mtekasetya
mtekasetya / idea
Created April 12, 2017 08:55 — forked from chrisdarroch/idea
Open a project in IntelliJ IDEA from your command line!
#!/bin/sh
# check for where the latest version of IDEA is installed
IDEA=`ls -1d /Applications/IntelliJ\ * | tail -n1`
wd=`pwd`
# were we given a directory?
if [ -d "$1" ]; then
# echo "checking for things in the working dir given"
wd=`ls -1d "$1" | head -n1`
@mtekasetya
mtekasetya / index.html
Created January 30, 2016 15:55
Rxjs: Timer
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/4.0.6/rx.all.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>RxJs Timer</title>
</head>
<body>
<div id="app"></div>
@mtekasetya
mtekasetya / hangouts-locale.js
Created May 19, 2012 11:55 — forked from beriberikix/hangouts-locale.js
Hangouts locale lookup function
function localeLookup(languageCode){
var englishDescription = '';
switch(languageCode){
case 'en':
englishDescription = 'English (American)';
break;
case 'af':
englishDescription = 'Afrikaans';
break;