※英字配列での記述[]内が日本語配列
- win+ ret ナレーターモード起動
 - win+1~10 タスクバーに登録されているものの左から1,2,,,で起動
 - win+ =[^] 画面拡大モード起動 ※使い方不明
 - win+ e エクスプローラー起動
 
| #!/usr/bin/perl | |
| # -*- coding:utf-8 -*- | |
| use strict; | |
| use warnings; | |
| use feature 'say'; | |
| use encoding 'utf-8'; | |
| sub responseScalar { | |
| my $a = shift; | 
| #!/usr/bin/perl | |
| # -*- coding:utf-8 -*- | |
| #use strict; | |
| #strictつけてるとエラーが出てしまうのでコメントアウト | |
| use warnings; | |
| use feature 'say'; | |
| my $file_scope = 'File Scope'; | 
| #!/usr/bin/perl | |
| # -*- coding:utf-8 -*- | |
| use strict; | |
| use warnings; | |
| use feature 'say'; | |
| use encoding 'utf-8'; | |
| my @array = (1,2,3); | |
| my %hash = ( | 
| #!/usr/bin/env python | |
| # -*- coding:utf-8 -*- | |
| import sys, urllib | |
| import os.path | |
| def download(url): | |
| img = urllib.urlopen(url) | |
| localfile = open( os.path.basename(url), 'wb') | |
| localfile.write(img.read()) | 
| require 'rfm' | |
| class FMServer | |
| def initialize() | |
| @FM_CONFIG = { | |
| :host => "FileMakerServerの接続先IP", | |
| :account_name => "FileMakerFileのログインアカウント", | |
| :password => "FileMakerFileのログインパスワード", | |
| :database => "FileMakerFileの名前", | |
| :ssl => false, | |
| :root_cert => false, | 
| %form{:method=>"POST",:action => '/fmcomment'} | |
| %input{:type=>"hidden",:name=>"_method",:value=>"PUT"} | |
| %table | |
| %tr | |
| %td 名前 | |
| %td | |
| %input{:type=>"text",:name=>"name"} | |
| %tr | |
| %td タイトル | |
| %td | 
| #/usr/bin/ruby | |
| require 'rubygems' | |
| require 'sinatra' | |
| require 'model/comment.rb' | |
| require 'sass' | |
| helpers do | |
| include Rack::Utils;alias_method :h, :escape_html | |
| #追加 | 
| body { | |
| padding-top: 60px; | |
| } | |
| /* ブラウザの横幅が980px以下の時 */ | |
| @media (max-width: 980px){ | |
| body { | |
| padding-top: 0px; | |
| } | |
| } | 
| .inVisible { | |
| display: none; | |
| } |