Skip to content

Instantly share code, notes, and snippets.

View adityasatrio's full-sized avatar
👻
I may be slow to respond.

Aditya satrio nugroho adityasatrio

👻
I may be slow to respond.
View GitHub Profile
@adityasatrio
adityasatrio / TripleDesBouncyCastle.java
Last active February 1, 2021 07:21
Triple des bouncy castle.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package asn.helpers;
/**
*
* @author asn
*/
@adityasatrio
adityasatrio / GitQuickGlance
Created August 28, 2014 03:59
GIT quick description
http://www.kaskus.co.id/post/53f4d8f9d675d4aa188b45ba#post53f4d8f9d675d4aa188b45ba
git itu source code manager
bisa juga disebut revision manager
persis seperti svn dan cvs
hanya saja git itu terdistribusi
git dibuat sama linus torvalds, dkk
karena beliau gak puas sama svn dan cvs tsb
(sebenernya beliau sebelumnya pakai perforce, tapi lebih milih utk membuatnya sendiri yang sifatnya open source)
@adityasatrio
adityasatrio / Menu.java
Created August 19, 2014 13:15
Menu : parent and child menu, collapsing the child under the parent menu
package menu.test;
import java.io.Serializable;
import java.util.List;
public class Menu implements Serializable {
private Long id;
private Long parentid;
private String name;
private List<Menu> childMenu;