2017-06-01から1ヶ月間の記事一覧
// This is the main entry point of the application. static void Main(string[] args) { // if you want to use a different Application Delegate class from "AppDelegate" // you can specify it here. UIApplication.Main(args, null, "AppDelegate")…
Xamarinを起動するとアップデートを促されてた。 そしてアップデートをすると以下の Visual Studio for MacはXamarinの機能以上あるからもうあなたのマシンからXamarin消していいよー。 って・・・。それなら最初からアップデートじゃなくていいのにー。 す…
ImportError: No module named 'django.contrib.comments' Django==1.7からDjango==1.8.13に移行した。 1.6から分岐したせいか。 Porting to django_comments from django.contrib.comments — Django Comments 1.7 documentation django.contrib.commentsか…
「Wi2」を使っているが、結構繋がらなくなる。 まずairportコマンドのエイリアス作っておく。 alias "airport=/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport" 通常の復帰手順は以下の2通りで再接続できる。 …
ゲーム開発の民主化のゲームエンジンUnityにて No Drag&Drop has been setup. Please UnityEditor.DockArea:OnGUI() のエラー。 これが出るとInspectorでドラッグ・アンド・ドロップできない。 Unity再起動しても駄目。Macの再起動で直るかもしれないけどめ…
{1, 1, 1}のリスト using System.Linq; IList hogeList = null; hogeList = Enumerable.Repeat(1,3).ToList(); 1が3つ
myLabel = UILabel(frame: CGRect(x:10, y:80, width:300, height:30)) 色 myLabel.layer.borderColor = UIColor.gray.cgColor