- Meta
- Mengandung probiotik untuk bakteri baik
- Jadi ga gampang sakit karena boosting imun dan jaga nafsu makan
- Airnya disarankan suhu ruangan aja, biar bakterinya yang ada ga mati
- Bahan
- Apple cider vinegar (2 sendok)
- Honey (1 sendok)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
FLAT UI Flavored Adminer Theme by M. Mahbubur Rahman ([email protected]) | |
Screenshot : http://d.pr/i/cznH | |
Based on work by : LukΓ‘Ε‘ Brandejs | |
https://raw.github.com/vrana/adminer/master/designs/ng9/adminer.css | |
*/ | |
@import url(https://fonts.googleapis.com/css?family=Roboto:400,600); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Go 19 hrs 59 mins βββββββββββββββββββββ 86.7% | |
TypeScript 1 hr 19 mins βββββββββββββββββββββ 5.7% | |
JSON 42 mins βββββββββββββββββββββ 3.1% | |
JavaScript 28 mins βββββββββββββββββββββ 2.0% | |
Vue.js 12 mins βββββββββββββββββββββ 0.9% |
I hereby claim:
- I am wayanjimmy on github.
- I am wayanjimmy (https://keybase.io/wayanjimmy) on keybase.
- I have a public key ASC4QQ6nsR8_Sh6_fPXK4Nvf_6mZHH_CDxnLkUIhl6OUiQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/xenial64" | |
config.vm.synced_folder "./", "/vagrant", owner: "www-data", group: "www-data", mount_options: ["dmode=775,fmode=666"] | |
config.vm.network "forwarded_port", guest: 8080, host: 8080, host_ip: "127.0.0.1" | |
config.vm.network "forwarded_port", guest: 8000, host: 8000, host_ip: "127.0.0.1" | |
config.vm.network "forwarded_port", guest: 9001, host: 9001, host_ip: "127.0.0.1" | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "2048" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
I curate a list of interesting CLI tools, below are some command line tools that I personally love and use
- tmux - Terminal multiplexer.
- ripgrep - Search text for patterns fast.
- fzf - Command-line fuzzy finder.
- exa - Replacement for ls written in rust.
- git - Version control.
- create-react-app - Create React apps with no build configuration.
- npx - Execute npm package binaries.
- wifi-password - Get the password of the WiFi you're on.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import http from 'http' | |
import url from 'url' | |
// config object | |
const config = { | |
httpPort: 8080 | |
} | |
// retrieve the third argument if user use custom port | |
if (process.argv.length > 2) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { args } from 'deno' | |
import { parse } from 'https://deno.land/x/flags/mod.ts' | |
import { serve } from 'https://deno.land/x/http/server.ts' | |
enum ErrorCode { | |
NotFound = 400 | |
} | |
const { p: port = 8080 } = parse(args) | |
const address = `0.0.0.0:${port}` |