bate's blog

調べたこと実装したことなどを取りとめもなく書きます。

2013-07-01から1ヶ月間の記事一覧

ラジオ英会話07/31

今日は聞き取りが難しかった。 spruce upは全く意味がわからんかった。 英語 意味 honey do list お願いリスト spruce up こぎれいにする We need to spruce up the house 私たちは家を掃除する必要がある vacuum 掃除機をかける vacuum all the carpet 全部…

入門ビジネス英語07/30

any time would do.のwouldが聞き取れなかった。 英語 意味 any time 何時でも anytime いつでも What time works for you? 何時が都合が良いですか? Any time world do. いつでも大丈夫ですよ What time should I schedule interview? 面接スケジュールは…

ワンポイント・ニュースで英会話07/30

早すぎて聞き取れない。 折り紙の技術を工業製品に応用する話だったような。 英語 意味 the japanese art of folding paper 日本の紙を折る技術 intricate 入り組んだ fold 〜を折る

英会話タイムトライアル07/30

ちょくちょく聞き取れないものもあった。 英語 意味 I'm all ears. ぜひ聞きたいです We are all ears. They seems to be all ears. If anyone has suggestion, I'm all ears. Tokyo is all ears. The president is all ears. If there's a better way, I'm …

ラジオ英会話07/30

lemonが冷麺に聞こえてしまうポンコツ。 テキストなしでもいけそう。 英語 意味 clean out 〜 〜を掃除する make room for 〜 〜のためにスペースを作る toss it. 捨てる mold カビ shelf life 保存期間 it's stll good. まだ大丈夫 Does Miso has long shel…

GLFW3.0.1とGLEW1.10.0での簡易サンプル

VBOとシェーダーを使ったもの。 動けばOK 行列はglmを使った。楽ちん。三角形が回るサンプル。アプリケーション // glew32s.libを使う. #define GLEW_STATIC #include <stdio.h> #include <stdlib.h> #include <GL/glew.h> #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> const int g_WindowWidth</glm/gtc/type_ptr.hpp></glm/gtc/matrix_transform.hpp></glm/glm.hpp></glfw/glfw3.h></gl/glew.h></stdlib.h></stdio.h>…

GLFW3.0.1とGLEW1.10.0でVBO

後はシェーダーを使えば最少サンプルになる。 // glew32s.libを使う. #define GLEW_STATIC #include <stdio.h> #include <stdlib.h> #include <GL/glew.h> #include <GLFW/glfw3.h> const int g_WindowWidth = 640; const int g_WindowHeight = 480; GLuint g_VBO = 0; GLuint g_Indices = 0; GLFWwindow*</glfw/glfw3.h></gl/glew.h></stdlib.h></stdio.h>…

入門ビジネス英語07/29

会話が短く、繰り返し使うので分かりやすい。Do you think could 〜 ?で丁寧に提案する。 Do you think could come in at nine? 9時に来れますか?でフィードバックを許容する感じになるらしい。 こっちは9時に来て欲しいことを伝えつつも、相手の都合を確認…

ワンポイント・ニュースで英会話07/29

実際のニュース部分の聞き取りは難しい。早い。 英語 日本語 coalition 連立 upper house 参議院 growth strategy 成長戦略 stable majority 安定多数

英会話タイムトライアル07/29

初めて聞いた。 テキストなしでもいけそう。 ABCは大文字らしい。the ABCs of 〜 〜のいろは the ABCs of working for company 会社勤めのいろは一番難しかったのは下記の文。 I am not expert but I'll teach you the ABCs of architecture.

vc2012のdesktopをインストール

エディター周りがいい感じで改善されてるらしいのでインストールしてみる。

PowerPointの試用版を落とした

新しい会社の自己紹介用pptを作る必要があるので試用版を落として使ってみることに。 保存できるだろうか。http://www7.buyoffice.microsoft.com/jpn/

mysqlのテーブルのvarcharをmd5でハッシュ化

id username password 1 testuser testpass update mytable set password=md5(password); id username password 1 testuser 179ad45c6ce2cb97cf1029e212046e81

4.2.0f4にしたらMonoDevelopが開かなくなった

MonoDevelopが開かなくなった。 unity4.1のglibsharpglue-2.dllをコピペしたら開けた。

自転車を処分

引越しをするので自転車を処分した。 最後に自転車で海までの10kmサイクリングをした。少し感傷的になった。

smartyをインストール

smartyのインストール sudo apt-get install smarty設定の変更 sudo vi /etc/php5/apache2/php.ini ; UNIX: "/path1:/path2" ; コメントアウトを削除 include_path = ".:usr/share/php:/usr/share/php/smarty/libs/"

最後の出勤

明日というか今日が最後の出勤。誰が自分の作業を引き継ぐのか不明瞭になり、 仕方なく別のシステム担当に色々と任せる流れになった。

php+apache+mysqlをインストール

もろもろのインストール sudo apt-get install apache2 php5 libapache2-mod-php5 mysql-server php5-mysqlちょっとした設定 sudo a2enmod userdir sudo vi /etc/apache2/mods-enabled/php5.conf「php_admin_value engine Off」をコメントアウト(行頭に#を付…

VirtualBoxをアップデートしたらエラーが出た

VirtualBoxを新しくしたら下記のエラーが出た。 vt x features locked or unavailable in msr .... とりあえず、再起動でbiosの設定を開いて、CPUのvirtualization云々という項目と、 intel vt云々という項目を有効にしたら直った。

phpからmysqlにアクセス

ちょっとしたサンプルを作ってphpとmysqlを思い出す作業。 <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <a href="./">戻る</a> <br> <form method="post" action="register.php"> <p>ユーザー名:<br>…</p></form></body></html>

転職します。

転職先が決まって、仕事の残作業を片付けつつ引き継ぎ。 家では要らない物の処分と荷造り。 本がやたらとある。引越しの時はいつも本が問題になる。 電子書籍に移行しないと駄目かもね。