This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Documentation | |
doxygen -g | |
doxygen Doxyfile | |
/** | |
* This is a documentation template. | |
* | |
* @param[in] i_px_v1 | |
* comment | |
* @param[in] i_ui_v2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace Organization.Namespace | |
{ | |
/// <summary> | |
/// #SCRIPTNAME# class summary | |
/// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GDB : | |
quit | |
run | |
break / watch / clear / delete | |
step / next / continue | |
print / backtrace / list | |
Visual Studio : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Java EE: web services using MVC architecture. | |
Controller: Application Server (TomCat) + Java code/ EnterpriseJavaBeans | |
View: JSP pages (compiled as HTML, CSS, XML ... documents) | |
Model: Server side | |
Sample View : | |
<%-- Include Core library --%> | |
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> | |
<%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x" %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Administration : | |
/etc/hosts | |
/etc/groups | |
/etc/redhat-release | |
echo "alias ll='ls -l'" >> ~/.bashrc | |
nmon | |
service ntp restart | |
rpm -qa |grep gcc | |
rpm -ql gcc | |
rpm -pql *.rpm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Android Debugger : | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe devices | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe -c | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe -s Filter | |
%LOCALAPPDATA%\Android\android-sdk\platform-tools\adb.exe -s Filter -d > logcat.txt | |
type logcat.txt | findstr "pattern" | |
Unity 3D log messages filtering : | |
adb logcat -s Unity ActivityManager PackageManager dalvikvm DEBUG | findstr /V UnityEngine | findstr /V Filename |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region GUI | |
// Assign a valid Text object added to the test Scene | |
public Text logger = null; | |
// Field 1 : | |
private bool m_DISPLAY_11 = true; | |
private string m_TEXTFIELD_11A = "1"; | |
private string m_TEXTFIELD_11B = "2"; |
NewerOlder