- イーロン・マスク氏がテスラの従業員に送った、生産性を上げるための 7 つのアドバイス | BUSINESS INSIDER JAPAN
- 【翻訳】あなたが求めていたリアクティブプログラミング入門 - ninjinkun's diary
- あなたのプロジェクトに秩序をもたらす!git commit 支援ツールを作りました。 - Qiita
- プランクのやり方と姿勢7つの間違いと対策方法|腹筋や体幹の筋トレ効果を出したいなら! |
- [GDC 2017]FF15 のインタラクティブに変化する BGM は,どのような構造で,どのように制御されているのか - 4Gamer.net
- メルカリはなぜ採用が強いのか? 上位 2%を採る「戦略人事」の掟 | Forbes JAPAN(フォーブス ジャパン)
- Spantastic text styling with Spans – Android Developers – Medium
- タイピングの悪い癖を矯正したらストレスが減って効率が 20%向上した - 丁寧に手を抜く
- [GitHub の 3 種類のマージを理解する - Qii
This file contains 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
ffmpeg -i some.wav -vn -ac 2 -ar 44100 -ab 256k -acodec libmp3lame -f mp3 some.mp3 |
This file contains 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
import { ContactShadows, Environment } from '@react-three/drei' | |
import { useThree } from '@react-three/fiber' | |
import * as React from 'react' | |
import * as THREE from 'three' | |
const presets = { | |
rembrandt: { | |
main: [1, 2, 1], | |
fill: [-2, -0.5, -2], | |
}, |
This file contains 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
const useSTL = (path) => { | |
return useLoader(STLLoader, path) | |
} | |
useSTL.preload = (path) => useLoader.preload(STLLoader, path) | |
useSTL.clear = (input) => useLoader.clear(STLLoader, input) | |
const ModelSTL = () => { | |
const stl = useSTL(stlPath) |
This file contains 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
module.exports = function(cube) { | |
return new Promise((resolve, reject) => { | |
cube.peripheral.disconnect(error => { | |
if (error !== null) { | |
reject(error) | |
} else { | |
resolve() | |
} | |
}) | |
}) |
This file contains 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
class SomeDevice { | |
constructor(private peripheral: Noble.Peripheral) { | |
} | |
public connect(): void { | |
this.peripheral.connect(); | |
} | |
public disconnect(): void { | |
this.peripheral.disconnect(); |
This file contains 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
~/Library/Android/sdk/platform-tools/adb forward tcp:4444 localabstract:/adb-hub | |
~/Library/Android/sdk/platform-tools/adb connect localhost:4444 |
This file contains 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 UnityEngine; | |
using System.Collections; | |
public class AssetBundleSample : MonoBehaviour { | |
public GUIText guitext; | |
// Use this for initialization | |
void Start () { |
知識データベースシステムについて調べる. とりあえず使ってみて調査.他にも候補があれば教えてください.
- markdownのリアルタイムPreview欲しい,,と思ったけど工夫されてた。これはこれでありだな.
Qiita->
This file contains 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
# < 1.9.3 | |
print "type PASSWORD : " | |
system "stty -echo" | |
password = gets.chop | |
system "stty echo" | |
# > 1.9.3 | |
require 'io/console' | |
print "type PASSWORD : " | |
password = STDIN.noecho(&:gets).chop |
NewerOlder