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 java.util.Scanner; | |
| public class Week1 { | |
| public static void main(String[] args) { | |
| Scanner reader = new Scanner(System.in); | |
| System.out.printf("Masukkan tanggal lahir, bulan lahir, dan tahun lahir\n"); | |
| System.out.printf("Setiap variabel dipisah dengan spasi\nInput : "); | |
| short tanggalLahir = reader.nextByte(); | |
| byte bulanLahir = reader.nextByte(); |
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
| /** | |
| * | |
| * @author nelvson | |
| */ | |
| import java.util.Scanner; | |
| public class Week3 { | |
| public static void main(String[] args) { | |
| Scanner reader = new Scanner(System.in); | |
| int X = reader.nextInt(); | |
| int Y = reader.nextInt(); |
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
| /** | |
| * | |
| * @author nelvson | |
| */ | |
| import java.util.Scanner; | |
| public class Week2 { | |
| public static void main(String[] args) { | |
| Scanner reader = new Scanner(System.in); | |
| int N = reader.nextInt(); | |
| int M = reader.nextInt(); |
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
| "~/.vimrc | |
| "latest update : 2019-01-10 | |
| " | |
| " | |
| "colorscheme nord | |
| "TODO: find out why nord isnt working | |
| " | |
| map <C-c> y:e ~/clipsongzboard<CR>P:w !pbcopy<CR><CR>:bdelete!<CR> |
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
| PS1='[\h@\W$] ' | |
| export TERM=xterm-256color | |
| export EDITOR=/usr/bin/nano | |
| alias clean='find . -name ".DS_Store" -exec rm "{}" \;' | |
| export PATH=./node_modules/.bin:$PATH | |
| export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH" | |
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
| assume-paste-time 1 | |
| base-index 0 | |
| bell-action any | |
| bell-on-alert off | |
| default-command "" | |
| default-shell "/bin/bash" | |
| destroy-unattached off | |
| detach-on-destroy on | |
| display-panes-active-colour red | |
| display-panes-colour blue |
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
| letter | frequency | |
|---|---|---|
| A | 0.08167 | |
| B | 0.01492 | |
| C | 0.02782 | |
| D | 0.04253 | |
| E | 0.12702 | |
| F | 0.02288 | |
| G | 0.02015 | |
| H | 0.06094 | |
| I | 0.06966 |
OlderNewer