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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontFamily": "源ノ角ゴシック Code JP", | |
"editor.tabSize": 3, | |
"editor.insertSpaces": true , | |
"markdown.styles": [ | |
"file://C:/Users/kmr/Dropbox/misc/vscode/github.css" | |
], | |
"editor.wrappingColumn": 300 | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 = $ARGS[0] | |
$elements = @("id", "lat", "lon", "created_at", "closed_at") | |
if ((Test-Path $filename) -eq $false) | |
{ | |
Write-Host "File is not exist or access denied." | |
exit | |
} | |
Write-Output ("{") |
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
[out:xml][timeout:25]; | |
( | |
way | |
["building"!~".*"] | |
["highway"!~".*"] | |
["parking"!~".*"] | |
["landuse"!~".*"] | |
["amenity"!~".*"] | |
["waterway"!~".*"] | |
["railway"!~".*"] |
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 | |
### BEGIN INIT INFO | |
# Provides: vpnup | |
# Required-Start: $all | |
# Required-Stop: $network $local_fs $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: SoftEther VPN Client | |
# chkconfig: 2345 99 1 | |
# description: SoftEther VPN Client |
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
--- bme280_sample.py 2016-07-12 13:28:25.468817326 +0900 | |
+++ bme280.py 2016-07-12 13:44:07.662705914 +0900 | |
@@ -1,3 +1,4 @@ | |
+#!/usr/bin/env python | |
#coding: utf-8 | |
import smbus | |
@@ -20,7 +21,7 @@ | |
def get_calib_param(): |
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
Add-Type -AssemblyName System.Windows.Forms | |
Start-Sleep -s 3 | |
#2バイト文字もOKっぽい | |
[System.Windows.Forms.SendKeys]::SendWait("あか") | |
$include=[System.Windows.Forms.SendKeys] | |
$include::SendWait("OK") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 = $ARGS | |
$elements = @("id", "lat", "lon", "created_at", "closed_at") | |
if ((Test-Path $filename) -eq $false) | |
{ | |
Write-Host "File is not exist or access denied." | |
exit | |
} | |
Write-Output ("{") |