Skip to content

Instantly share code, notes, and snippets.

View old-repo-ekoteguh's full-sized avatar
👋
Study from home

Old Repository of Eko old-repo-ekoteguh

👋
Study from home
View GitHub Profile
@old-repo-ekoteguh
old-repo-ekoteguh / webdev_online_resources.md
Created July 17, 2018 02:24 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@old-repo-ekoteguh
old-repo-ekoteguh / Intellij IDEA CPU 100% fix
Created May 20, 2018 05:52
Intellij IDEA CPU 100% fix
http://stackoverflow.com/questions/21595289/intellij-idea-13-ce-consuming-lots-of-cpu
C:\Program Files (x86)\JetBrains\IntelliJ IDEA 14.1.3\bin
idea.exe.vmoptions
idea64.exe.vmoptions
Mac user
http://stackoverflow.com/questions/20545435/why-is-the-new-version-of-intellij-idea-so-slow?rq=1
@old-repo-ekoteguh
old-repo-ekoteguh / .tmux.conf
Created February 22, 2018 08:59
Setting .vimrc and .tmux.conf
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
tks @BrianBland ,
actually I did this:
cd $HOME/Library/Caches/Homebrew
tar xf delve-*.gz
go into directory ( mine is delve-1.0.0-rc.1 )
sh scripts/gencert.sh
it will asks for password, and you're done.
After that just re run brew install go-delve/delve/delve
and it will pass without problems
@old-repo-ekoteguh
old-repo-ekoteguh / ConvertDataToCSV.java
Created March 28, 2014 02:48
Here is example of converting data ArrayList<Properties> to CSV in Java programming. I use library OpenCSV to convert this data.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package contoh.manipulasi.csv;
import au.com.bytecode.opencsv.CSVWriter;
import java.io.FileWriter;
import java.util.ArrayList;
import java.util.Properties;
@old-repo-ekoteguh
old-repo-ekoteguh / PercabanganSwitchCase.java
Created March 28, 2014 02:45
Here is simple example of using conditional swirch-case in Java programming.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.dekteguh.percabangan;
/**
*
* @author Eko Teguh Widodo
*/
@old-repo-ekoteguh
old-repo-ekoteguh / PercabanganIfBersarang.java
Created March 28, 2014 02:44
Here is simple example of using conditional nested-if-else in Java programming
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.dekteguh.percabangan;
/**
*
* @author Eko Teguh Widodo
*/
@old-repo-ekoteguh
old-repo-ekoteguh / PercabanganIfElse.java
Created March 28, 2014 02:43
Here is simple example of using conditional If-else in Java programming
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.dekteguh.percabangan;
/**
*
* @author Eko Teguh Widodo
*/
@old-repo-ekoteguh
old-repo-ekoteguh / PercabanganIf.java
Created March 28, 2014 02:42
Here is simple example of using conditional If in Java programming.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.dekteguh.percabangan;
/**
*
* @author Eko Teguh Widodo
*/