Skip to content

Instantly share code, notes, and snippets.

View ngoanpv's full-sized avatar
:octocat:
python doing_cool_stuff.py

Pham Van Ngoan ngoanpv

:octocat:
python doing_cool_stuff.py
View GitHub Profile
@ngoanpv
ngoanpv / install_cocos2d-x.sh
Created February 7, 2018 10:29 — forked from codexico/install_cocos2d-x.sh
install cocos on ubuntu 16.04
sudo apt-get update
sudo apt-get upgrade
# 1) Download from source, the zip from the site has problems on linux
# https://github.com/cocos2d/cocos2d-x/pull/15958#issuecomment-228919359
git clone https://github.com/cocos2d/cocos2d-x.git
cd cocos2d-x
# 2016-06-27 branch master is broken, change to commit 04d3550
git checkout 04d3550
@ngoanpv
ngoanpv / ChatMessage.java
Created September 14, 2016 11:36 — forked from puf/ChatMessage.java
Zero to App: Develop with Firebase (for Android - Google I/O 2016)
package com.google.firebase.zerotoapp;
public class ChatMessage {
public String name;
public String message;
public ChatMessage() {
}
public ChatMessage(String name, String message) {