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
alias l='ls -ltrG' | |
alias la='ls -laG' | |
alias ll='ls -lG' | |
alias ls='ls -G' |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>timer</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, minimum-scale=1, user-scalable=no"> | |
<link rel="stylesheet" href="/css/style.css"> | |
</head> | |
<body> | |
<script src="/js/script.js"></script> | |
</body> |
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
;(function () { | |
var textarea = document.createElement("textarea"); | |
var title = document.title; | |
var href = location.href; | |
textarea.textContent = "" + title + "\n" + href; | |
document.body.appendChild(textarea); | |
textarea.select(); | |
document.execCommand("copy"); |
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
javascript:(function(){if(/https:\/\/github.+\/milestone\/\d+/.test(location.href)){var c=[],d=/(#\d+)/;[].slice.call(document.querySelectorAll(".opened-by")).forEach(function(a){a=a.innerText.match(d);a.length&&c.push(a[1])});(function(a){var b=document.createElement("textarea");b.textContent=a;document.body.appendChild(b);b.select();document.execCommand("copy");document.body.removeChild(b)})(c.join("\n"));alert("\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f")}else alert("Error: \u5404 milestone \u306e\u753b\u9762\u306b\u3066\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044")})(); |
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
function onOpen() { | |
var ui = SpreadsheetApp.getUi(); | |
ui.createMenu("❖ マクロ") | |
.addItem("[選択行] 指定行の下に行移動", "moveRowsByActiveRow") | |
.addToUi() | |
; | |
} | |
function moveRowsByActiveRow() { |
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
javascript:(function(){var a=/^https:\/\/docs\.google\.com\/spreadsheets\/.+\/edit#gid=(\d+)$/;if(a.test(location.href)){var b=location.href.replace(/\/edit.+$/,"/export");a=["exportFormat=xlsx&format=xlsx","gid="+a.exec(location.href)[1]].join("&");window.open(b+"?"+a)}})(); |
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
Demo |
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
osascript -l JavaScript -e 'var s = Application("Safari"); var e = Application("System Events"); s.activate(); delay(0.1); e.keystroke("w", {"using": ["command down", "shift down"]}); delay(0.1); e.keystroke("n", {"using": ["command down", "shift down"]});' |
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 UnityEngine; | |
using System.Collections; | |
public class TestInterface : MonoBehaviour { | |
public string Url; | |
private string note; | |
public GUISkin guiSkin; | |
public GameObject redBoxPrefab; | |
public GameObject blueBoxPrefab; |
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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="im.yuya.unitywebview" | |
android:installLocation="preferExternal" | |
android:theme="@android:style/Theme.NoTitleBar" | |
android:versionCode="1" | |
android:versionName="1.0"> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | |
<application android:icon="@drawable/app_icon" |
NewerOlder