-
名前(任意)
- ありさわ
-
Twitter or Facebookのアカウント or HN等
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
package Kadai::Library; | |
use strict; | |
use warnings; | |
use base qw(Class::Accessor::Fast); | |
use Carp qw(croak); | |
use WWW::Mechanize; | |
use Web::Scraper; | |
use DateTime; | |
use URI; |
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
#name : ルイズコピペ | |
#ここからもらってきた http://azunyan.sitemix.jp/kunkakunka/kunkakunka.php | |
# -- | |
${1:ルイズ}!$1!$1!$1ぅぅうううわぁああああああああああああああああああああああん!!! | |
あぁああああ…ああ…あっあっー!あぁああああああ!!!$1$1$1ぅううぁわぁああああ!!! | |
あぁクンカクンカ!クンカクンカ!スーハースーハー!スーハースーハー!いい匂いだなぁ…くんくん | |
んはぁっ!${2:ルイズ・フランソワーズ}たんの${3:桃色ブロンド}の髪をクンカクンカしたいお!クンカクンカ!あぁあ!! | |
間違えた!モフモフしたいお!モフモフ!モフモフ!髪髪モフモフ!カリカリモフモフ…きゅんきゅんきゅい!! | |
${5:小説}${6:11巻}の$1たんかわいかったよぅ!!あぁぁああ…あああ…あっあぁああああ!!ふぁぁあああんんっ!! | |
${7:アニメ}${8:2期}決まって良かったね$1たん!あぁあああああ!かわいい!$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
# -*- coding:utf-8 -*- | |
import pygame | |
from pygame.locals import * | |
import pygame.mixer | |
import sys | |
import copy | |
import array | |
sounds = [0 for j in range(0,20)] | |
cell = [[0 for j in range(0,20)] for i in range(0,20)] |
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
# top | |
screen -t server1:top 38 ssh oracle@server1 | |
stuff "top c\n" | |
sleep 10 | |
stuff "m\n" | |
# tail alert.log(10g) | |
screen -t server1:alert 39 ssh oracle@server1 | |
encoding sjis | |
stuff "tail -f \$ORACLE_BASE/admin/\$ORACLE_SID/bdump/alert_\${ORACLE_SID}.log\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
#!/opt/local/bin/perl | |
# | |
# Modified by @takaxp | |
# Last Update: 2014-04-11@22:27 | |
# 2013-12-25: skip source blocks specified as ":exports no" | |
# 2012-01-09: support date([YYYY-MM-DD XX]) insertion | |
# 2012-01-09: support #+BEGIN_SRC | |
# 2011-11-16: use strict and warnings | |
# 2011-11-16: Add conversion from numeric items to ` - '. | |
# 2011-11-16: Skip headers, if #+TITLE: is, use it as the top headline. |
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
# -*- mode: snippet -*- | |
# name: あーキチガイきたキチガイ | |
# key: kichigai-has-come | |
# -- | |
あー${1:キチガイ}きた$1 | |
〃∩ ∧_∧ | |
⊂⌒( ・ω・) | |
\_つ_つ | |
${2:( ◠‿◠ )}) ))ウッスw | |
あー$1 いっちゃう$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
class Directory | |
include Enumerable | |
def initialize(dirname) | |
@dirname = dirname | |
@files = Dir.open(dirname) {|dir| | |
dir.reject {|name| name == "." || name == ".." } | |
} | |
end | |