Skip to content

Instantly share code, notes, and snippets.

View afandiyusuf's full-sized avatar

yusuf afandi afandiyusuf

View GitHub Profile
@afandiyusuf
afandiyusuf / cheatsheet.md
Last active November 22, 2017 06:00
Laravel cheatsheet

First Step

Requirement of laravel

  • PHP >= 5.6.4
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension
@afandiyusuf
afandiyusuf / FocusManager.cs
Created October 22, 2017 16:07
Script untuk pengaturan focus manager pada unity3d dan vuforia. Add script ini di focus button yang ada collidernya
using UnityEngine;
using Vuforia;
public class FocusManager : MonoBehaviour {
private void Start()
{
BackToAuto();
}
@afandiyusuf
afandiyusuf / Common Command Git
Created January 30, 2017 03:50
Git add commit
git status
git add .
git commit -m "initial commit"
git push -u origin master