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
for /R %i in (.svn) do rd /Q /S "%i" |
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
クラウドコンピューティングの定義 | |
マルチテナント性(Multitenancy) (共有リソース) | |
専用リソース(つまり、シングルユーザやオーナー専用のコンピュータ設備)を想定していた従来のコンピューティングモデルとは異なり、クラウドコンピューティングはネットワークレベル、ホストレベル、アプリケーションレベルでリソースを共有する(つまり、複数ユーザが同一リソースを使う)というビジネスモデルに基づいている。 | |
大規模スケーラビリティ | |
たとえ組織に何百何千ものシステムがあったとしても、クラウドコンピュティングは何万ものシステムまでスケールする能力を備えている。また、ネットワーク帯域やストレージ容量を大規模にするスケールする能力も備えている。 | |
弾力性(Elasticity) | |
従量課金(pay as you go) | |
リソースのセルフ・プロビジョニング | |
従来のソフトウェアモデル |
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
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer; | |
import org.springframework.beans.factory.xml.XmlBeanFactory; | |
import org.springframework.context.support.GenericApplicationContext; | |
import org.springframework.core.io.ClassPathResource; | |
public class Main { | |
/** | |
* @param args | |
*/ |
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
require 'rubygems' | |
require 'mechanize' | |
ID = 'YOUR_ID' | |
PASSWORD = 'YOUR_PASSWORD' | |
agent = Mechanize.new | |
agent.get('https://netanswerplus.saisoncard.co.jp/WebPc/welcomeSCR.do') | |
agent.page.form('_USA01Form').field('inputId').value = ID | |
agent.page.form('_USA01Form').field('inputPassword').value = PASSWORD |
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
(`・ω・´)ゞビシッ!! |
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
@echo off | |
for %%I in (%1 %1.com %1.exe %1.bat %1.cmd %1.vbs %1.js %1.wsf) do if exist %%~$path:I echo %%~$path:I |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- SvnAntが必要。 --> | |
<!-- バージョンの違いによってエラーが出るので注意が必要。 --> | |
<project name="my project" default="checkout" basedir="."> | |
<property name="workspace.dir" value="c:\workspace\myproject" /> | |
<property name="svn.userid" value="scott" /> | |
<property name="svn.password" value="tiger" /> | |
<property name="svn.url" value="https://svn.example.com/svn/myproject/trunk" /> |
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 | |
#コンソールログファイル | |
CONSOLELOG_PATH=/opt/app/weblogic/user_projects/domains/base_domain/servers/base_server_01/logs/base_server_01.out | |
#バックアップ世代数 | |
GENERATION=7 | |
idx=$GENERATION |
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 | |
# 同一フォルダに生成される share ファイルを | |
# $ tail -f share | |
# すれば確認できます。 | |
if [ $# -eq 0 ]; then | |
echo 'Please Input Your Name: "./chat.sh John"' | |
exit | |
fi |
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/bash | |
USER=USER | |
PWD=PASSWORD | |
sqlplus -s ${USER}/${PWD}<<EOF | |
select * from hogehoge; | |
EOF |
OlderNewer