- Persiapkan requirement untuk menambahkan repository nodesource dengan perintah berikut
sudo apt-get update
helm repo add cord https://charts.opencord.org
helm repo add atomix https://charts.atomix.io
public class Latihan { | |
public static void main(String[] args) { | |
} | |
} |
#!/bin/bash | |
export DEBIAN_FRONTEND=noninteractive | |
curl -sL https://deb.nodesource.com/setup_10.x | bash - | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list | |
apt-get update -y | |
echo "installing tzdata" | |
apt-get install tzdata -y |
import android.util.Log; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
public class HttpRequest { |
export ZPLUG_HOME=$HOME/.zplug | |
source $ZPLUG_HOME/init.zsh | |
zmodload zsh/zprof | |
zplug "zplug/zplug" | |
# Prezto framework | |
zplug "sorin-ionescu/prezto", \ | |
use:"init.zsh", \ |
let blacklists = ["*:localhost:*"] | |
let barposition = "bottom" |
proxy_server=proxy.your.heart | |
proxy_port=8080 | |
proxy_user=subhi%40your.heart | |
proxy_password=your.heart |
" Declare ignore filetype here | |
let g:ignore_autosave = 'tex' | |
function AutoSave() | |
if &modifiable == 1 && &readonly == 0 | |
\ && expand('%') != '' | |
\ && &buftype != 'nofile' | |
%s/\s\+$//e | |
if &filetype != g:ignore_autosave | |
update |
<?php | |
use Rhumsaa\Uuid\Uuid; | |
class UUIDModel extends Eloquent { | |
public $incrementing = false; | |
protected $softDelete = true; | |
public function __construct(array $attributes = array()) { |