Author Archives: tetra

Java Source Structure

 

Posted in Android, Java | Tagged , | Leave a comment

java int to string

 

Posted in Java | Tagged | Leave a comment

Raspberry Pi network configuration

 

Posted in Raspberry Pi | Tagged , | Leave a comment

Razdroid download

image download http://androidpi.wikia.com/wiki/Android_Pi_Wiki open Git Shell git clone https://github.com/Razdroid/razdroid-kernel <- copy and paste(right-click)

Posted in Android, Raspberry Pi | Tagged , , , | Leave a comment

Raspberry Pi update

Advanced Options > Update or

vi upgrade

 

Posted in Raspberry Pi | Tagged | Leave a comment

Raspberry Pi bash profile configuration

open .profile add at line end(G)

 

Posted in Raspberry Pi | Tagged , | Leave a comment

source compile, class execute

filename.class

 

Posted in Java | Tagged | Leave a comment

java cygwin .configure

JDK Download  -> http://www.oracle.com/technetwork/java/javase/downloads/   JDK Install Save as  .configure

     

Posted in Java | Tagged , , | Leave a comment

vimrc configuration

   

Posted in Ubuntu, Windows 8 | Tagged | Leave a comment

cygwin vi upgrade

cygiwin setup Editors > vim Editors > vim-common Base > vi-minimal 은 삭제하도록 alias vi=’vim’ 지정  

Posted in Windows 8 | Tagged , | Leave a comment

bash_profile configuration

 

Posted in Ubuntu, Windows 8 | Tagged | Leave a comment

cygwin, git Install

< Cygwin Installation > http://cygwin.com/install.html http://cygwin.com/setup-x86.exe run setup-x86.exe as Administrator Next > Install from Internet or Install from Local Directory > Root Directory=C:\cygwin,  All User(recommended) check Select, Devel -> git Net -> openssh Setup Comleted, Cygwin Terminal shortcut created < … Continue reading

Posted in Ubuntu, Windows 8 | Tagged , | Leave a comment

Is there a quick way to clear “frequent” items list?

Answer: Open “Taskbar and Start Menu Properties” by right clicking the start menu button\properties when this opens you have the ability on the Start Menu tab to change this. If you just want to clear it for now uncheck under … Continue reading

Posted in Question | Tagged | Leave a comment

Redmine installation

Ubuntu 12.04 LTS 32bit 기준

  하여 메뉴를 선택하거나 또는 command line에서

  ; man tasksel -> https://help.ubuntu.com/community/Tasksel

  Redmine installed directory ->/usr/share/redmine ->/etc/redmine

 

 

  ifconfig로 ip확인 http://ip/redmine admin/admin <- 기본 로그인 … Continue reading

Posted in Ubuntu, Windows 8 | Tagged | Leave a comment

Raspberry Pi Kernel Compile

Ubuntu 12.04 LTS 32bit 기준 sudo apt-get install vim(선택사항) sudo apt-get update <- gcc-4.6-arm-linux-gnueabi 설치가 안될경우 sudo apt-get install git-core sudo apt-get install gcc-4.6-arm-linux-gnueabi sudo ln -s /usr/bin/arm-linux-gnueabi-gcc-4.6 /usr/bin/arm-linux-gnueabi-gcc mkdir raspberrypi cd raspberrypi git clone https://github.com/raspberrypi/tools.git <- 다운로드 40분 정도 … Continue reading

Posted in Raspberry Pi, Ubuntu | Tagged , | Leave a comment

scope operator

::  <- 전역의 범위를 지정 ::variable; // 전역변수를 우선 지정함 class::function();   여기서 namespace 개념이 파생됨.

Posted in C#, C++ | Leave a comment