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
(`・ω・´)ゞビシッ!! |
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
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
クラウドコンピューティングの定義 | |
マルチテナント性(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
for /R %i in (.svn) do rd /Q /S "%i" |
NewerOlder