目指せ!!full stack developer

一生プログラマーのままに生きたい

2016-09-01から1ヶ月間の記事一覧

html 自習ノート

htmlテキストエディタ:sublimetext タイトル :<h1> ... <h7> (<h1> biggest text) 文字表示属性:font color,size,strong(太字),i(斜め) 画像 :img スライダー :marquee 音楽、ビデオ :embed 改行 :br ライン :hr リンク :a ーーーーーーーーーーーーー <html> <head> <title>xixi bubu</title> </head></html></h1></h7></h1>

tool 色採取ツール

ツール名:Moo0 color picker マウスの矢印は採取したい色に置き、「alt」押下 http://jpn.moo0.com/?top=http://jpn.moo0.com/software/ColorPicker/

android layout listview loading

今週末できたリストビューのロード処理。 イメージはこんな感じ ソースコードアップしました。 github.com

正規表現とテキスト検索

よく使う正規表現 ■正規表現¥b 一桁区切り.* 同一行任意桁文字¥d 一桁数字¥b¥d{5}¥b 5桁数字¥s 一桁空白例:¥b¥d{5}¥b¥b¥d¥d¥d¥d¥d¥b¥bpackage¥bpackagemanager.*¥bpackage¥bfalse¥sremovablehttp://deerchao.net/tutorials/regex/regex.htm#lookaround

git コマンド2 バージョン管理

git

//to see version No. git log //to see current version No. git reflog //forc to some version git reset --head <バージョン番号> //current status about branch git branch //create new branch git branch <new name> //trunk <==> branches git checkout <branch name> //ad</branch></new>…

git コマンド

git

まず、以下の4つの領域 Remote:サーバー上のrepository Repository:ローカル上のrepository Index(stage):一時保管領域 workspace:ワークスペース 現在gitの設定 git config --list ワークスペースからstageへ git add <file> git add . // 全ディレクトリ stage</file>…

gitの種類と特徴

git

現在主なgitはgithubとbitbucketがある。機能的にはほぼ一緒だが、 以下の特徴 github データ量が多い、privateのrepositoryは有料 ※:良いサンプルプロジェクト探すには最適 bitbucket データ量が少ない、privateのrepositoryは無料 ※:小グループ開発には…