- 'module' object has no attribute 'global_variables_initializer'
tf.global_variables_initializer().run() → tf.initialize_all_variables().run()とすればOK!
情報工学技術を利用した教育支援、いわゆる教育工学の研究やってます。研究に関係する技術動向(プログラミングねた)や、日常の覚書き、呟きなどを書いていこうかと思います。今のところ、初歩的なプログラムネタばっかりですが、、、、長い目でお付き合いください。
tf.global_variables_initializer().run() → tf.initialize_all_variables().run()とすればOK!
using UnityEngine; | |
using System.Collections; | |
using UnityEngine; using UnityEngine.UI; | |
public class NewBehaviourScript : MonoBehaviour { | |
public Text TestText; | |
//ボタンクリック時のメソッド | |
public void ClickTest() { | |
TestText.text = "ボタンが押された"; | |
Debug.Log("Clicked."); | |
} | |
Use this for initialization | |
void Start () { | |
} | |
// Update is called once per frame | |
void Update () { | |
} | |
} |
<Grid> | |
<Grid.RowDefinitions> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition /> | |
</Grid.RowDefinitions> | |
<Menu> | |
<MenuItem Header="ファイル" /> | |
<MenuItem Header="編集" /> | |
<MenuItem Header="ヘルプ"> | |
<MenuItem IsCheckable="True" Header="info" /> | |
</MenuItem> | |
</Menu> | |
</Grid> |
https://drive.google.com/file/d/XXXXXXXXXXXXXXXXというのが入手できますが、このURLは真の画像のURLではありません。Google Appsとして表示するビュワーを含んでいます。
http://drive.google.com/uc?export=view&id=XXXXXXXとします。 上記XXXXXXはファイルのユニークIDです。
sudo gpasswd -a ユーザ名 vboxsfこのコマンドを実行した後は、いったんログインしなおしてください。
C:\Users\ochi>powercfg -devicequery wake_armedこのコマンドで該当するデバイスがリストアップされます。私の場合は、ネットワークアダプターが悪さをしていたようですので、早速、該当機能をOFFにしました(デバイスマネージャーからプロパティで操作しますが、これは各デバイスで設定が変わってきます)。
HID キーボード デバイス
Intel(R) 82567V-2 Gigabit Network Connection
HID 準拠マウス
HID キーボード デバイス (001)
[DllImport("user32.dll")] | |
public static extern IntPtr GetForegroundWindow(); | |
[DllImport("user32.dll", EntryPoint = "GetWindowText", CharSet = CharSet.Auto)] | |
public static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount); | |
[DllImport("user32.dll")] | |
private static extern uint GetWindowThreadProcessId(IntPtr hWnd, out int lpdwProcessId); | |
int processid; | |
try{ | |
GetWindowThreadProcessId(GetForegroundWindow(), out processid); | |
if (0 != processid){ | |
Process p = Process.GetProcessById(processid); | |
System.Diagnostics.Debug.Write(processid + ":"); | |
System.Diagnostics.Debug.WriteLine(p.MainModule.FileVersionInfo.ProductName);//アプリケーションの名前が出てきます | |
} | |
else{ | |
System.Diagnostics.Debug.Write(processid + ":Sleep"); | |
} | |
} | |
catch (System.ComponentModel.Win32Exception e){ | |
System.Diagnostics.Debug.Writeln("何もしない"); | |
} |
Private Sub CommandButton1_Click() | |
CommandButton1.Enabled = False | |
Debug.Print Now() & "click" | |
'なんらかの処理 | |
'サウンドファイル再生などの非同期処理 | |
Application.Wait [Now()+”00:00:02.0”] | |
DoEvents 'Enabled=Trueの直前に書くこと | |
CommandButton1.Enabled = True | |
End Sub |
Unity:Scene 'XXXXX' (-1) couldn't be loaded because it has not been added to the buildというエラーメッセージが出ることがあります。 これは、遷移先のシーンが登録されていないという意味です。File→Build Settings にて、シーンを登録しましょう(ドラッグ&ドロップ)。
<b:Button type="PRIMARY" block ="true" ui:field="btnTrue" dataTarget="#myModal" dataToggle="MODAL">OK</b:Button> | |
<b:Modal title="入力ありがとうございました" closable="true" fade="true" dataBackdrop="STATIC" dataKeyboard="true" b:id="myModal" ui:field="confirm"> | |
<b:ModalBody> | |
<g:HTML>入力ありがとうございました</g:HTML> | |
</b:ModalBody> | |
<b:ModalFooter> | |
<b:Button type="PRIMARY" dataDismiss="MODAL">Close</b:Button> | |
</b:ModalFooter> | |
</b:Modal> |
/etc/in it.d/httpd start
httpd: Could not reliably determine the server’s fully qualified domain name, using local domain.localhost for ServerName
Unable to verify certificate 'Server-Cert'. Add "NSSEnforceValidCerts off" to nss.conf so the server can start until the problem can be resolved.
function getGistFileName() { | |
var url="https://api.github.com/users/ochilab/gists"; | |
// GIST APIに問い合わせ | |
var response = UrlFetchApp.fetch(url); | |
// JSONパース | |
var result =JSON.parse(response.getContentText()); | |
//とりあえず1つめのデータだけ | |
var files = result[0].files; | |
var fileName=""; | |
for(key in files){ | |
fileName=key; | |
break; | |
} | |
Logger.log(fileName); | |
} |