- CARTA HOLDINGS(旧VOYAGE GROUP)
- 技術広報が新卒研修<Open AIハッカソン>をスパイしてみた - (2023/04/11)
- @t_wadaに学ぶテスト駆動開発【CARTA 23新卒研修】 - (2023/04/19)
- 【新卒研修】監修者@t_wadaと読む!プログラマが知るべき97のこと読書会 - (2024/04/09)
- Classi
- 当たり前にリリースしていく ~ 新卒研修編 - (2021/05/20)
- リモートワークのための質問力向上研修を実施しました - (2021/12/07)
- CyberZ
- 良いコードとは何か - エンジニア新卒研修 スライド公開 - (2021/04/27)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// コマンドプロンプトで UWP の音声認識APIを利用するサンプル | |
// NuGet で UWPDesktop を追加してください。 | |
// https://blogs.msdn.microsoft.com/lucian/2015/10/23/how-to-call-uwp-apis-from-a-desktop-vbc-app/ | |
using System; | |
using Windows.Media.SpeechRecognition; | |
namespace UWPCommandLine | |
{ | |
class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace WavPlayerTest | |
{ | |
public class SortedItems<T> | |
{ |
Help wanted! :-)
Xamarin.Android binds the Android Java API, which means that all Java language features need to be "bound" to corresponding C# language features. For many language constructs, this binding is simple, e.g. type names are (usually) unchanged and identical, while other language features are changed in subtle
One of the best ways to investigate a problematic Xamarin.Android Binding is to first ensure you have the proper tooling available:
- Diagnostic MSBuild Output Enabled(Instructions)
- Java Decompiler(http://jd.benow.ca/)
- .NET Decompiler(https://www.jetbrains.com/decompiler/)
- Binding SDK Documentation
前提: インストール先をC:\SPTK
とする。
- 公式サイトからソースコード(例:
SPTK-3.8.tar.gz
)をダウンロード、任意の場所に展開し、ソースコードのフォルダを開く(例:C:\SPTK-3.8
)。 Makefile.mak
の1行目を編集し、C:\SPTK\bin
をC:\SPTK
変更する(\bin
を削除する)。あるいは、任意のパスを指定すると、そのフォルダにインストールされる。- Visual Studioの
x86 Native Tools コマンドプロンプト
を管理者権限で起動し、C:\SPTK-3.8
に移動する。x64版ではコンパイルできなかった。 unistd.h
が無いため、どこかから拾ってきてC:\SPTK-3.8\include\unistd.h
を作成する。例えば、Win7 64bit, MSVS2013なら このリンク先からコピペする のでもコンパイルできた。- 以下のコマンドを、順番に実行し、エラーが出なれけばインストール完了。
nmake /f Makefile.mak
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# Filename: boost.sh | |
# Author: Pete Goodliffe | |
# Copyright: (c) Copyright 2009 Pete Goodliffe | |
# Licence: Please feel free to use this, with attribution | |
# Modified version | |
#=============================================================================== | |
# | |
# Builds a Boost framework for iOS, iOS Simulator, and OSX. | |
# Creates a set of universal libraries that can be used on an iOS and in the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: | |
:: WINDOWS SETTINGS | |
:: | |
:: キーボードの配列を英語配列にする | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "LayerDriver JPN" /t REG_SZ /d kbd101.dll /f | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardIdentifier" /t REG_SZ /d PCAT_101KEY /f | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardSubtype" /t REG_DWORD /d 0 /f | |
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardType" /t REG_DWORD /d 7 /f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
// クラス名が被っているといけないので、namespaceで囲む | |
namespace TAK_CameraController | |
{ | |
// マウスのボタンをあらわす番号がわかりにくかったので名前を付けた | |
enum MouseButtonDown | |
{ | |
MBD_LEFT = 0, |