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
| #!/bin/sh | |
| ## http://blog.half-moon.org/archives/963 @ 2012/05/25 | |
| if [ $# -eq 3 ]; then | |
| OUTFILEPREFIX=$1 | |
| RECTIMEMIN=$2 | |
| CHANNEL=$3 | |
| else | |
| echo "usage : $0 OUTFILEPREFIX RECTIMEMIN CHANNEL" |
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
| # A sample Gemfile | |
| source "https://rubygems.org" | |
| # gem "rails" | |
| gem 'faraday' | |
| gem 'faraday_middleware' | |
| gem 'em-synchrony' | |
| gem 'em-http-request' | |
| gem 'multi_xml' |
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
| MAILTO=j3tm0t0@gmail.com | |
| # ANN | |
| 59 0 * * 5 sh ~/bin/rec_radiko.sh LFR 122 ~/mp3/"ナインティナインのオールナイトニッポン " | |
| 59 0 * * 7 sh ~/bin/rec_radiko.sh LFR 122 ~/mp3/"オードリーのオールナイトニッポン " | |
| # ANN0 | |
| 59 2 * * 5 sh ~/bin/rec_radiko.sh LFR 122 ~/mp3/"Hi-Hiのオールナイトニッポン0 " | |
| # JUNK | |
| 59 0 * * 2 sh ~/bin/rec_radiko.sh TBS 122 ~/mp3/"JUNK 伊集院光・深夜の馬鹿力 " |
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
| Anonymous UUID: B4A99582-D3B2-CF1F-6340-AD71DF12D891 | |
| Tue Feb 4 22:24:50 2014 | |
| panic(cpu 0 caller 0xffffff80072b995c): "complete() while dma active"@/SourceCache/xnu/xnu-2422.1.72/iokit/Kernel/IOMemoryDescriptor.cpp:2619 | |
| Backtrace (CPU 0), Frame : Return Address | |
| 0xffffff80f7e53af0 : 0xffffff8006e22f69 | |
| 0xffffff80f7e53b70 : 0xffffff80072b995c | |
| 0xffffff80f7e53bb0 : 0xffffff7f874c5b06 | |
| 0xffffff80f7e53bf0 : 0xffffff7f874c442c | |
| 0xffffff80f7e53cb0 : 0xffffff7f874c2af4 |
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
| <?xml version="1.0"?> | |
| <root> | |
| <appdef> | |
| <appname>MicrosoftRDC</appname> | |
| <equal>com.microsoft.rdc.mac</equal> | |
| </appdef> | |
| <symbol_map type="KeyCode" name="RDC_VK_F1" value="0x7a"/> | |
| <symbol_map type="KeyCode" name="RDC_VK_F2" value="0x78"/> | |
| <symbol_map type="KeyCode" name="RDC_VK_F3" value="0x63"/> | |
| <symbol_map type="KeyCode" name="RDC_VK_F4" value="0x76"/> |
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
| require "coreaudio" | |
| dev = CoreAudio.default_output_device | |
| def f2(x) | |
| x = x % (Math::PI*2.0) | |
| if x<Math::PI | |
| return 1 | |
| else | |
| return -1 |
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
| function doGet(e) | |
| { | |
| if(!true){ | |
| e = { | |
| parameter:{ | |
| id: "xxxx", | |
| name: "Sheet1", | |
| range:"A1", | |
| data:"[[123]]" | |
| } |
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
| defmodule Return do | |
| defmacro returnable(do: block) do | |
| quote do | |
| try do | |
| unquote(block) | |
| catch | |
| {:return, result} -> result | |
| end | |
| end | |
| end |
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
| # git clone https://github.com/tensorflow/tensorflow.git | |
| # cd tensorflow/tensorflow/tools/dockerfiles | |
| # docker build -f dockerfiles/gpu-jupyter.Dockerfile -t tf:1.13.1-gpu-py3-jupyter . --build-arg USE_PYTHON_3_NOT_2=True --build-arg TF_PACKAGE_VERSION=1.13.1 | |
| FROM tf:1.13.1-gpu-py3-jupyter | |
| RUN apt install -y git lv nano tree wget | |
| RUN git clone https://github.com/autorope/donkeycar.git | |
| RUN cd /tf/donkeycar && \ |