Skip to content

Instantly share code, notes, and snippets.

View ffadilaputra's full-sized avatar
👉🏻 🐛 👀

Ivan Fadila Putra ffadilaputra

👉🏻 🐛 👀
View GitHub Profile
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
url
https://www.liputan6.com/
https://www.kompas.com/
https://www.cnnindonesia.com/nasional
https://www.merdeka.com/
@ffadilaputra
ffadilaputra / tmux-cheatsheet.markdown
Created April 10, 2020 05:18 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@ffadilaputra
ffadilaputra / git-deployment.md
Created December 26, 2019 02:56 — forked from noelboss/git-deployment.md
Simple automated GIT Deployment using Hooks

Simple automated GIT Deployment using GIT Hooks

Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.

How it works

You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.

@ffadilaputra
ffadilaputra / Rupiah.as
Created May 22, 2019 15:39 — forked from faisalman/Rupiah.as
Konversi Angka ke format Rupiah & vice versa (C#, PHP, JavaScript, ActionScript 3.0)
package
{
/**
* ActionScript 3.0 Code Snippet
* Convert Number to Rupiah & vice versa
* https://gist.github.com/845309
*
* Copyright 2011-2012, Faisalman
* Licensed under The MIT License
* http://www.opensource.org/licenses/mit-license
@ffadilaputra
ffadilaputra / sample-spread.js
Created January 1, 2018 01:27
Contoh Spread dalam Javascript
//Spread dalam array
let user = ["Shikamarau","Naruto","Hinata <3"]
let ano = ["Temari",...user]
// Spread
let number = [2,3,5,4]
let kecil = Math.min(...number)
// Ini Parameter dari Luar
let jumlah = (...number) => {
@ffadilaputra
ffadilaputra / gist:f00dbb961378d8fa2c2f6abda9ac7bcf
Created October 7, 2017 00:37 — 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:
@ffadilaputra
ffadilaputra / gist:96c6ac2a1dddcf64518cb0ca85de807f
Created October 7, 2017 00:37 — 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:
@ffadilaputra
ffadilaputra / centered_text_border.html
Last active January 22, 2016 21:47
Centered Text In Border
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Centered</title>
</head>
<style type="text/css" media="screen">
.wrap {
border-top:1px solid #000;
/*
* Copyright (C) 2014 Chris Banes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software