Skip to content

Instantly share code, notes, and snippets.

View habibimroncn's full-sized avatar
🏠
Working from home

Habib Imron Cahyo Nugroho habibimroncn

🏠
Working from home
View GitHub Profile
@JashuaCovington
JashuaCovington / Encryptable.java
Created November 30, 2016 01:12
Java Encryption program
/**
* interface Encryptable.
*
* @author (Jashua Covington activity 26-29)
* @version (9/14/2015)
*/
public interface Encryptable
{
/**
* Represents the interface for an object that can be encrypted or decrypted.
@mul14
mul14 / laravel-new.sh
Last active March 19, 2016 09:40
Simple script to create Laravel project and cd into target directory. Put this script in your bashrc or zshrc file.
laravel-new() {
if [ -z "$1" ]; then
cat << EOF
Please provide a directory name.
Usage:
laravel-new [directory-name]
EOF
return;