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
<# | |
This is a Module for PowerShell. | |
This Adds chrome, google, bing and duckduckgo commands. | |
Usage: | |
chrome <URLs> | |
OR | |
google <search words> | |
OR | |
bing <search words> | |
OR |
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
colors koehler | |
set guioptions+=T | |
set showtabline=2 | |
let s:menutop = 'ユーザー' | |
if has('win32') | |
let s:menutop .= '(&U)' | |
endif |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
int main() | |
{ | |
char path[1024]; | |
printf("getenv(\"PWD\"): %s\n", getenv("PWD")); // " /home/me" | |
printf("cd /\n"); |
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
# from .bashrc | |
# BASH prompt | |
# "01/28T18:01 @HigesMacBookAir:~ $ " | |
PS1="\[\e[0;34m\]\D{%m/%dT%k:%M} @\h:\[\e[1;34m\]\W \[\e[0m\]\$ " |
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
set encoding=utf-8 | |
scriptencoding utf-8 | |
" statusline - help.txt[-][RO][HELP] 1C,1/221L 1% @20:00 [utf-8][unix][help] | |
set statusline=%F%m%r%h%w\ %3vC,%l/%LL\ %p%% | |
set statusline+=%=\ " \<space> | |
function FormatTime(t) | |
if a:t == -1 |
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
/* | |
* The Source of the Bookmarklet | |
*/ | |
(function (w) { | |
var affiliateID = "auct/p/DnvPkBwR6trLZQ9WVytq", | |
en = encodeURIComponent, | |
buildAffiliateURL = function (url, affID) { | |
return "http://atq.ck.valuecommerce.com/servlet/atq/referral?sid=2219441&pid=877510753&vcptn=" |
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
' | |
' Prints NEW, DELETED and CHAGED files in a directory. | |
' | |
' This script does not work with directorys have name include SPACE charactors. | |
' | |
' by HigeDice http://d.hatena.ne.jp/higedice/ | |
' | |
Option Explicit |