空き巣に入られたときとか、会社からの貸出物が盗まれるといろいろ困ることになるので対策しないとねー、という流れになっているものの…
- 貸出PC
- ストレージの暗号化&遠隔Wipeは行う
- Windows用ノートPCはワイヤーロック用の穴が開いてるのでワイヤーだけ購入してデスクに固定できる
| #!/usr/bin/env bash | |
| # Get Japan's national holidays from the Cabinet Office | |
| # Supports year specification (default is current year) | |
| # デフォルト値: 今年 | |
| DEFAULT_YEAR=$(date '+%Y') | |
| # 引数の取得 | |
| YEAR="${1:-$DEFAULT_YEAR}" |
| package your.awesome.package | |
| import android.arch.lifecycle.LiveData | |
| import android.arch.lifecycle.MutableLiveData | |
| import io.reactivex.Observable | |
| import io.reactivex.disposables.Disposable | |
| fun <T> Observable<T>.toLiveData() : LiveData<T> { | |
| return object : MutableLiveData<T>() { |
| ; 左右 Alt キーの空打ちで IME の OFF/ON を切り替える | |
| ; | |
| ; 左 Alt キーの空打ちで IME を「英数」に切り替え | |
| ; 右 Alt キーの空打ちで IME を「かな」に切り替え | |
| ; Alt キーを押している間に他のキーを打つと通常の Alt キーとして動作 | |
| ; | |
| ; Author: karakaram http://www.karakaram.com/alt-ime-on-off | |
| #Include IME.ahk |
| package com.amay077.android.view; | |
| import java.io.InputStream; | |
| import java.net.URL; | |
| import java.util.Random; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| import jp.co.cosmoroot.gequu.R; | |
| import android.content.Context; | |
| import android.graphics.drawable.Drawable; |
| status key command | |
| DirectInput Hiragana IMEOn | |
| Precomposition Hiragana IMEOn | |
| Composition Right MoveCursorRight | |
| Composition Left MoveCursorLeft | |
| Conversion Backspace Cancel | |
| Conversion Ctrl [ Cancel | |
| Conversion Ctrl h Cancel | |
| Composition ESC Cancel | |
| Conversion ESC Cancel |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
| "profiles": |
| @NgModule({ | |
| imports: [ | |
| CommonModule, | |
| … | |
| ], | |
| declarations: [ | |
| … | |
| MyModalConfirmContent], ←追加 | |
| exports: [LayoutComponent], | |
| entryComponents: [MyModalConfirmContent] ←追加 |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| package="your.awesome.app"> | |
| <application> | |
| <!-- need provider tag in application tag --> | |
| <provider | |
| android:name="android.support.v4.content.FileProvider" |