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
#select account on firefox | |
cd /Applications/Firefox.app/Contents/MacOS/ | |
./firefox-bin -p & |
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
# for Golang | |
export GOROOT=$HOME/go | |
export GOARCH=amd64 | |
export GOOS=darwin | |
export GOBIN=$HOME/go/bin | |
export GOPATH=$HOME/_go | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin:$GOBIN |
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
.DS_Store |
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
#include <SoftwareSerial.h> | |
// 2:RX,3:TXでシリアル通信する宣言 | |
SoftwareSerial mySerial(2, 3); | |
long int Tido = 35431721; | |
long int Tkeido = 139317210; | |
String inputString = ""; | |
String Data[16]; |
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
int latchPin = 3; // 74HC595のST_CPへ | |
int clockPin = 4; // 74HC595のSH_CPへ | |
int dataPin = 2; // 74HC595のDSへ | |
unsigned int val; | |
unsigned int j; | |
unsigned int k; | |
void setup() { | |
pinMode(latchPin, OUTPUT); | |
pinMode(clockPin, OUTPUT); |
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
#!/usr/bin/python | |
f = open('./Bookmarks.txt') | |
line = f.readline() | |
while line: | |
# print(line) | |
if line.find('url":') > 0: | |
print(line) | |
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
//In console "hello world" on user code of Ranorex | |
//ref.1 https://docs.microsoft.com/ja-jp/dotnet/csharp/programming-guide/inside-a-program/hello-world-your-first-program | |
//ref.2 https://www.wareko.jp/blog/post-20367 | |
//ref.3 http://bignight.hatenablog.com/entry/2015/01/14/191931 | |
//ref.4 https://stackoverflow.com/questions/15604014/no-console-output-when-using-allocconsole-and-target-architecture-x86 | |
//ref.5 https://msdn.microsoft.com/ja-jp/library/system.io.textwriter(v=vs.110).aspx | |
//ref.6 https://www.ranorex.com/help/latest/lesson-7-code-modules | |
/////////////////////////////////////////////////////////////////////////////// | |
// |
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
Sub copy_sheet2sheet() | |
' | |
' copy_sheet2sheet Macro | |
' copy to sheet2 from sheet1 | |
' | |
Application.Goto Reference:="copy_sheet2sheet" | |
Dim i As Integer | |
Dim j As Integer | |
Dim col_start As Integer |
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
<html> | |
<title>Hello, tomorinao</title> | |
<body> | |
<p>Tomorinao works!</p> | |
<p> | |
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Hello,%20tomorinao">Tweet</a> | |
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | |
</p> | |
<body> | |
</html> |
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
<html> | |
<head> | |
<title>PHP Test</title> | |
</head> | |
<body> | |
<?php | |
$a = 2; | |
echo '<p>Hello World utf-8</p>'; | |
echo '<p>'; | |
echo $a; |
OlderNewer