NPCA部誌2018

Size: px
Start display at page:

Download "NPCA部誌2018"

Transcription

1 (?) (?) Python ( ) ( ) Python : Python import 5.2 Python Python Anaconda Anaconda 2 3 (Python2 ) macos Linux,Windows Subsystem for Linux Linux 46

2 5.3 Python sudo apt-get install python3 python3-pip pip Python macos Homebrew macos Homebrew /usr/bin/ruby -e "$(curl -fssl Python brew install python3 5.3 Python Python Python3 Python ( ) python( python3) Helloworld.py print( Hello,world! ) 47

3 5.4 C:\Users\taizo>python Helloworld.py Hello,world! 5.4 os Python FindFile.py 1 #! python3 2 # -*- coding: utf-8 -*- 3 4 import os 5 import sys 6 7 folder = sys.argv[1] 8 extension = sys.argv[2] 9 #folder extension 10 for foldername, subfolders, filenames in os.walk(folder): 11 for filename in filenames: 12 if filename.lower().endswith(extension):# extension 13 print(os.path.join(foldername, filename))# 2 Python sys sys import sys.argv 1 import sys 2 for i in sys.argv: 3 print(i) argv.py C:\Users\taizo>python argv.py a b c argv.py a b c sys.argv os.walk for 3 os.path.join OS 12~13 os.walk extension( extension) lower 48

4 C jpg python (FindFile.py ) C:// jpg : C:\Users C:\Users npca.png npca.png c:\users\npca.png Web & Web (Crawling) (Scraping) Google 1 #! python3 2 # -*- coding: utf-8 -*- 3 4 import requests 5 import bs4 6 import smtplib 7 from .mime.text import MIMEText 8 from .header import Header 9 10 percent = 70 # percent url = requests.get( ) # url URL 13 parse = bs4.beautifulsoup(url.text, "lxml") # parse url lxml HTML 14 probability = parse.select(.rain-probability )[0] 15 if int(probability.select( td )[1].text[0]) >= percent or int(probability.select( td )[2].text[0]) >= percent: 16 letter = 17 else: 18 letter = charset = iso-2022-jp 21 message = MIMEText(letter, plain, charset) 22 message[ Subject ] = Header(.encode(charset), charset) 23 smtp_obj = smtplib.smtp( smtp.gmail.com, 587) 24 smtp_obj.ehlo() 25 smtp_obj.starttls() 26 smtp_obj.login( FROM, PASSWORD ) 27 smtp_obj.sendmail( FROM, TO, message.as_string()) 49

5 28 smtp_obj.quit() 12~15 HTML 20~28 requests web requests.get URL bs4 bs4 BeautifulSoup4 BeautifulSoup4 HTML bs4.beautifulsoup HTML ( ) lxml HTML (pip install lxml ) smtplib SMTP(Simple Mail Transfer Protocol) smtplib.smtp smpt Gmail smtp TLS 587 smtplib.ehlo smtp_obj.starttls smtp_obj.quit TLS smtp_obj.login Google smtp_obj.sendmail FROM TO MIMEText Header as_string MIMEText Header 12~15 HTML tenki.jp 50

6 : tenki.jp ( Ctrl+U ) rain-probability select (. ) : tenki.jp 51

7 rain-probability td 2 3 td % 2 (6~12 12~18 ) percent 7 ) ( ) %* OK API API(Application Programming Interface) (Wikipedia ) API Twitter YouTube Twitter API Twitter Twitter SNS API URL Twitter API Twitter API Twitter ( Create New App Callback URL Keys and Access Tokens Create my access token 1 #!python3 2 # -*- coding: utf-8 -*- 3 from requests_oauthlib import OAuth1Session 4 import os 5 import time 6 import shelve 7 import requests 8 9 file = shelve.open( lasttweet ) 10 lasttweet = file[ lasttweet ] # CONSUMER_KEY = os.environ[ KEY ] 13 CONSUMER_SECRET = os.environ[ SECRET ] 14 ACCESS_TOKEN = os.environ[ ACCESS_TOKEN ] 15 ACCESS_TOKEN_SECRET = os.environ[ ACCESS_TOKEN_SECRET ] twitter = OAuth1Session(CONSUMER_KEY, 18 client_secret=consumer_secret, 19 resource_owner_key=access_token, 20 resource_owner_secret=access_token_secret) 52

8 21 22 response = twitter.get( + lasttweet + &count=300& exclude_replies=true&include_rts=false ) for tweet in response.json(): 25 try: 26 for image in tweet[ extended_entities ][ media ]: 27 image_url = image[ media_url ] 28 print(image_url) 29 image = requests.get(image_url) 30 image.raise_for_status() 31 image_file = open(os.path.join(, os.path.basename(image_url)), wb ) 32 for chunk in image.iter_content(100000): 33 image_file.write(chunk) 34 image_file.close() 35 time.sleep(5) 36 except: 37 pass file.close() Twitter 22 24~37 from requests_oauthlib import OAuth1Session Twitter API OAuth OAuth shelve shelve shelve Python ID lasttweet open close lasttweet import shelve file = shelve.open( lasttweet ) file[ lasttweet ] = file.close() Twitter os.environ json 5.1 screen_name since_id count exclude_replies include_rts (@ ) ID true false 24~37 try~except try except try 53

9 json URL extended_entities media media_url 29~34 raise_for_status 31= ( ) 54

10 YouTube API YouTube Google API URL YouTube API YouTubeAPI Google API Console( API YouTube Data API v3 API YouTube 1 from apiclient.discovery import build 2 import webbrowser 3 import datetime 4 import shelve 5 import os 6 7 file = shelve.open( begintime ) 8 begindate = datetime.datetime(int(file[ year ]), int(file[ month ]), int(file[ day ]), nt(file[ hour ]), int(file[ minute ]), int(file[ second ])) 9 nowdate = datetime.datetime.now() youtube = build( youtube, v3,developerkey=os.environ[ GOOGLE_KEY ]) 12 search = youtube.subscriptions().list(part= snippet, channelid= ID ).execute() def getchannel(info): 15 for channel in info[ items ]: 16 getmovie(channel[ snippet ][ resourceid ][ channelid ]) 17 if( nextpagetoken in info.keys()): 18 nextpage = youtube.subscriptions().list(part= snippet, channelid= ID, pagetoken = info[ nextpagetoken ]).execute() 19 channelname(nextpage) def getmovie(info): 22 channel = youtube.channels().list(part= contentdetails, id=info).execute() 23 uploads = youtube.playlistitems().list(part= snippet, playlistid=channel[ items ][0][ contentdetails ][ relatedplaylists ][ uploads ], maxresults=50).execute() 24 for movie in uploads[ items ]: 25 moviedate = datetime.datetime.strptime(movie[ snippet ][ publishedat ], %Y-%m-%dT%H:%M:%S.000Z ) 26 moviedate += datetime.timedelta(hours=9) 27 if moviedate > begindate: 28 webbrowser.open( + movie[ snippet ][ resourceid ][ videoid ]) getchannel(search) file[ year ] = nowdate.year 33 file[ month ] = nowdate.month 34 file[ day ] = nowdate.day 35 file[ hour ] = nowdate.hour 36 file[ minute ] = nowdate.minute 37 file[ second ] = nowdate.second file.close() from apiclient.discovery import build Python Google API Client for Python Google API pip install google-api-python-client webbrowser URL 55

11 datetime datetime datetime year month day hour minute second microsecond shelve shelve YouTube API YouTube API 10 build API API subscriptions().list part channelid ID (YouTube URL ID channel ) execute() json getchannel URL subscriptions().list items nextpagetoken subscriptions().list pagetoken 2 ID getmovie getmovie channels.list() part id ID items contentdetails relatedplaylists uploads ID playlistitems().list part playlistid ID maxresults 1 items snippet publishedat 56

12 5.6 ( T10:51:56.000Z) datetime datetime strptime datetime 9 9 shelve (?)! : ( ) 5.6 Web 57

13 Al Sweigart (2017) Python (2016) Python Twitter API YouTube API 58

NPCA部誌2018

NPCA部誌2018 NPCA 2018 NPCA 2018-05-02 (NPCA) 73 sheyasutaka 2018 niimi Re:VIEW 2 1 2 1 CombNada 2018 5 72 : 2 73 : 1 74 : 3 i i..................................................... i 1 ARKit 1 1.1........................................................

More information

デュアルウェア講習会課題 5 会津大学講習会 簡単な IoT を作成 2018 The University of Aizu

デュアルウェア講習会課題 5 会津大学講習会 簡単な IoT を作成 2018 The University of Aizu 会津大学講習会 簡単な IoT を作成 2018 The University of Aizu 目次 1 課題... 1 1.1 課題説明... 1 課題 5-1... 1 課題 5-2... 1 2 Google API... 2 2.1 Gmail API とは... 2 2.2 Gmail API 設定... 2 Google アカウント作成... 2 Google Developers Console

More information

161 Debian.Deb 銀河系唯一の Debian 専門誌 GO

161 Debian.Deb 銀河系唯一の Debian 専門誌 GO 161 Debian.Deb 銀河系唯一の Debian 専門誌 GO 2018 3 24 1 Debian 2 1.1 159 Debian............ 2 1.2 OSC 2018 Tokyo/Spring.. 2 2 3 2.1 hiromiso.......... 3 2.2 yy y ja jp......... 3 2.3 ysaito............ 3 2.4 henrich...........

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

2

2 2 485 1300 1 6 17 18 3 18 18 3 17 () 6 1 2 3 4 1 18 11 27 10001200 705 2 18 12 27 10001230 705 3 19 2 5 10001140 302 5 () 6 280 2 7 ACCESS WEB 8 9 10 11 12 13 14 3 A B C D E 1 Data 13 12 Data 15 9 18 2

More information

1 1 2 2 3 3 3.1 RSS Dripper [1]............................................ 3 3.2 Whazzup [2].............................................. 3 3.3 Summ

1 1 2 2 3 3 3.1 RSS Dripper [1]............................................ 3 3.2 Whazzup [2].............................................. 3 3.3 Summ 2011 08H046 1 1 2 2 3 3 3.1 RSS Dripper [1]............................................ 3 3.2 Whazzup [2].............................................. 3 3.3 Summify [3]..............................................

More information

1 6 1.1........................................... 6 1.1.1 Wiki.............................. 6 1.1.2............................. 7 1.2..............

1 6 1.1........................................... 6 1.1.1 Wiki.............................. 6 1.1.2............................. 7 1.2.............. Wiki 1 6 1.1........................................... 6 1.1.1 Wiki.............................. 6 1.1.2............................. 7 1.2.......................................... 7 1.2.1................

More information

manual.dvi

manual.dvi oscommerce 2002 9 6 oscommerce oscommerce 2.2 1 1 1.1................................................. 1 1.1.1......................................... 1 1.2.................................................

More information

ご利用のコンピュータを設定する方法 このラボの作業を行うには 事前設定された dcloud ラボを使用するか 自身のコンピュータをセットアップします 詳細については イベントの事前準備 [ 英語 ] とラボの設定 [ 英語 ] の両方のモジュールを参照してください Python を使用した Spar

ご利用のコンピュータを設定する方法 このラボの作業を行うには 事前設定された dcloud ラボを使用するか 自身のコンピュータをセットアップします 詳細については イベントの事前準備 [ 英語 ] とラボの設定 [ 英語 ] の両方のモジュールを参照してください Python を使用した Spar ご利用のコンピュータを設定する方法 このラボの作業を行うには 事前設定された dcloud ラボを使用するか 自身のコンピュータをセットアップします 詳細については イベントの事前準備 [ 英語 ] とラボの設定 [ 英語 ] の両方のモジュールを参照してください Python を使用した Spark API との通信 このラーニングモジュールでは Python を使用した Spark API とのインターフェイスを扱います

More information

1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari student

1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari student LAN 0000000000 6/6, 6/13, 6/20 1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari studentd even kumabari 1: LAN

More information

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa

2.2 Sage I 11 factor Sage Sage exit quit 1 sage : exit 2 Exiting Sage ( CPU time 0m0.06s, Wall time 2m8.71 s). 2.2 Sage Python Sage 1. Sage.sage 2. sa I 2017 11 1 SageMath SageMath( Sage ) Sage Python Sage Python Sage Maxima Maxima Sage Sage Sage Linux, Mac, Windows *1 2 Sage Sage 4 1. ( sage CUI) 2. Sage ( sage.sage ) 3. Sage ( notebook() ) 4. Sage

More information

常時接続可能な APIC-EM ラボの DevNet Sandbox は次の URL から利用できます : SSL 証明書を必ず受け入れるようにしてください Git Repo を複製する o コーディングスキルのサンプルコードを複製します

常時接続可能な APIC-EM ラボの DevNet Sandbox は次の URL から利用できます :   SSL 証明書を必ず受け入れるようにしてください Git Repo を複製する o コーディングスキルのサンプルコードを複製します 自分のコンピュータを設定する方法自分のコンピュータでこのラボの作業を行うには Python および Requests ライブラリをインストールする必要があります Python のインストール 使用しているオペレーティングシステム用の Python 3.4.2 以降をインストールします https://www.python.org/downloads/ からインストーラをダウンロードします Requests

More information

PYTHON 資料 電脳梁山泊烏賊塾 PYTHON 入門 ゲームプログラミング スプライトの衝突判定 スプライトの衝突判定 スプライトの衝突判定の例として インベーダーゲームのコードを 下記に示す PYTHON3 #coding: utf-8 import pygame from pygame.lo

PYTHON 資料 電脳梁山泊烏賊塾 PYTHON 入門 ゲームプログラミング スプライトの衝突判定 スプライトの衝突判定 スプライトの衝突判定の例として インベーダーゲームのコードを 下記に示す PYTHON3 #coding: utf-8 import pygame from pygame.lo PYTHON 入門 ゲームプログラミング スプライトの衝突判定 スプライトの衝突判定 スプライトの衝突判定の例として インベーダーゲームのコードを 下記に示す #coding: utf-8 import pygame from pygame.locals import * import os import sys SCR_RECT = Rect(0, 0, 640, 480) def main():

More information

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法 Debian 2013 gdb+python nozzy@debian.or.jp 2013 6 29 Level Debian Up Debian Debian debian sid unstable Debian debian sid unstable *-dbg Debian debian sid unstable *-dbg gdb Debian debian sid unstable *-dbg

More information

Rによる計量分析:データ解析と可視化 - 第2回 セットアップ

Rによる計量分析:データ解析と可視化 - 第2回 セットアップ R 2 2017 Email: gito@eco.u-toyama.ac.jp October 16, 2017 Outline 1 ( ) 2 R RStudio 3 4 R (Toyama/NIHU) R October 16, 2017 1 / 34 R RStudio, R PC ( ) ( ) (Toyama/NIHU) R October 16, 2017 2 / 34 R ( ) R

More information

lifedesign_contest_No3

lifedesign_contest_No3 1 3 5 Apple Developer Program 5 AWS 8 Raspberry Pi 14 18 19 { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sns:createplatformendpoint" ], "Resource": [ ] ] #

More information

ウェブサービスとは WWWを介してデータの取得 解析などをサー バ側で行うサービス 人が直接使うことは意図されていない プログラム等を使って大量に処理できる(単純) 作業を意図している SOAP, REST

ウェブサービスとは WWWを介してデータの取得 解析などをサー バ側で行うサービス 人が直接使うことは意図されていない プログラム等を使って大量に処理できる(単純) 作業を意図している SOAP, REST PDBj のウェブサービス 金城 玲 大阪大学蛋白質研究所 日本蛋白質構造データバンク PDBj ウェブサービスとは WWWを介してデータの取得 解析などをサー バ側で行うサービス 人が直接使うことは意図されていない プログラム等を使って大量に処理できる(単純) 作業を意図している SOAP, REST PDBjの提供するウェブサービス 大きく分けて2種類 PDBデータの取得 検索用のRESTfulウェブサービ

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information

Google Apps for Business Google Gmail Google Apps Google Apps Google Apps 2

Google Apps for Business Google Gmail Google Apps Google Apps Google Apps 2 Google Apps Google Apps 1 Google Apps for Business Google Gmail Google Apps Google Apps Google Apps 2 Google Apps 6,000 / 600 / 1 30GB Google PC 99.9% 24 Google SSAE 16 Type II 1 FISMA 2 Google Apps 3

More information

Microsoft Word - SNSで繋がる人間関係.doc

Microsoft Word - SNSで繋がる人間関係.doc SNS SNS ID SNS ixi Twitter Facebook SNS SNS SNS SNS SNS SNS Mixi Mixi Mixi SNS SNS SNS Mixi 2009 9 30 1,792 SNS 52.2% 47.8% 20 24 33.8% 25 29 28.4% 30 34 17.6% Wikipedia SNS Mixi Mixi SNS Mixi SNS Twitter

More information

In [5]: soup.tbody Out[5]: <tbody> <tr> <th><label for=""> </label></th> <td> </td> <td><input checked="checked" class="input-label-horizontal" id="se

In [5]: soup.tbody Out[5]: <tbody> <tr> <th><label for=> </label></th> <td> </td> <td><input checked=checked class=input-label-horizontal id=se IPC JPlatpat Chrome cntl + Source Code cd ' 20170101.html' In [1]: from bs4 import BeautifulSoup 20170101 In [2]: html = open('shimazu_2017.html') soup = BeautifulSoup(html, "html.parser") In [3]: type(soup)

More information

Stapy_Tsuji_ key

Stapy_Tsuji_ key Python #23 2017.4.12 Python @tsjshg shingo.tsuji@gmail.com 1975 C++ IT Java Web 10 Python Python 3 Python Python Python Python SQL Excel PowerPoint PDF 2 http://pypl.github.io/pypl.html 1 http://blog.codeeval.com/codeevalblog/2016/2/2/most-popular-coding-languages-of-2016

More information

Twitter,.,,...,.,.,.,.,,.,.. SNS. SNS,,. SNS,.,,, WordNet,, i

Twitter,.,,...,.,.,.,.,,.,.. SNS. SNS,,. SNS,.,,, WordNet,, i 2017 29 Twitter 2017 1 2017 29 Twitter,.,,...,.,.,.,.,,.,.. SNS. SNS,,. SNS,.,,, WordNet,, i Abstract Of Master s Thesis Academic Year 2017 Construction of evaluation method by prefecture by Twitter Summary

More information

Lightweight LanguageのIPv6対応PHP5編

Lightweight LanguageのIPv6対応PHP5編 Lightweight Language IPv6 PHP5 2013-11-26 1. PHP 1.1. PHP 1.2. OS PHP OS PHP IPv6 PHP Linux CentOS 5.10 distribution, updates 5.3.3 6.4 distribution, updates 5.3.3 Fedora 18 distribution, updates 5.4.9

More information

1... 5 2... 6 3... 7 4... 8 4.1... 8 4.2... 9 4.3... 9 4.4 SMTP... 10 5 2... 11 5.1 FP Mail... 11 5.2 MX... 11 6 3 /... 12 6.1... 12 6.2... 12 6.3...

1... 5 2... 6 3... 7 4... 8 4.1... 8 4.2... 9 4.3... 9 4.4 SMTP... 10 5 2... 11 5.1 FP Mail... 11 5.2 MX... 11 6 3 /... 12 6.1... 12 6.2... 12 6.3... 1... 5 2... 6 3... 7 4... 8 4.1... 8 4.2... 9 4.3... 9 4.4 SMTP... 10 5 2... 11 5.1 FP Mail... 11 5.2 MX... 11 6 3 /... 12 6.1... 12 6.2... 12 6.3... 12 6.4... 12 6.5... 12 7 4... 13 7.1 URL... 13 8 5...

More information

20141013_KAIT.pptx

20141013_KAIT.pptx 2014 SNS 2014 10 13 @rhys_no1 yoshiaki@linkedopendata.jp NPO Liked Open Data Initiative (2012 -) World Wide Web Consortium (2011-2012 ) (1999-2005) () Open Data on the Web (World Wide Web Consortium, Open

More information

/var/lib/sharelatex/data/compiles/5a535643d11f6ba07fbbfa d68ddec3e /output.dvi

/var/lib/sharelatex/data/compiles/5a535643d11f6ba07fbbfa d68ddec3e /output.dvi DEIM Forum 2018 G2-1 WebIndex 223 8522 E-mail: arisa@dbicskeioacjp, toyama@icskeioacjp Web Index(WIX), Web Web,, SNS, EC ( ), Web Index 1 Web 2 WIX, EC, SNS Wordtank 3, 4 ( ) 5 6, Web, Web, 2 Wordtank

More information

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200,

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, WEB DB PRESS Vol.1 79 3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, http://www.postgresql.org/http://www.jp.postgresql.org/ 80 WEB DB PRESS

More information

(C) 2011 amenbo the 3rd MQL4 と外部アプリの連携 ;( その2) 本編 amenbo the 3rd アメンボです 前回 ( その1) に続いて 外部アプリとの連携を取り上げます 本稿では MQL4 から Twitter 情報の活用を可能にするための

(C) 2011 amenbo the 3rd MQL4 と外部アプリの連携 ;( その2) 本編 amenbo the 3rd アメンボです 前回 ( その1) に続いて 外部アプリとの連携を取り上げます 本稿では MQL4 から Twitter 情報の活用を可能にするための MQL4 と外部アプリの連携 ;( その2) 本編 amenbo the 3rd 2018.04.14 アメンボです 前回 ( その1) に続いて 外部アプリとの連携を取り上げます 本稿では MQL4 から Twitter 情報の活用を可能にするための Python プログラム例を取上げます ただし プログラム内容は Python コード部分のみとし MQL4 への情報を渡す方法は DLL 経由によるのですが

More information

IoT

IoT 2016 IoT 13H043 1 1 2 2 3 IoT 3 4 5 5 6 5.1............................................... 6 5.2............................................... 6 5.3............................................... 10 5.4...........................................

More information

NEEDS Yahoo! Finance Yahoo! NEEDS MT EDINET XBRL Magnetic Tape NEEDS MT Mac OS X Server, Linux, Windows Operating System: OS MySQL Web Apache MySQL PHP Web ODBC MT Web ODBC LAMP ODBC NEEDS MT PHP: Hypertext

More information

スライド 1

スライド 1 22 YES NO ( ) 15 4 3 15 5 : Wikipedia text mining : Wikipedia Data mining DM heuristic, 1: 2: 1: 2: 1: 2: 3: 4: 5: 6: 7: 8: 1: 2: 1: 2: 1: 2: 3: 4: 5: 1: 2: 1: 2: 3: 4: 5: 1: 2: 3: 1: 2: 1: 2: 3:

More information

Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python

Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python (Python ) C++ Python Python 1 Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python https://www.continuum.io/downloads 2 Python 3.6 version

More information

1 1 1.......................... 1 2........................ 2 2 3 1.................. 3 2.......................... 5 3........................... 6 4

1 1 1.......................... 1 2........................ 2 2 3 1.................. 3 2.......................... 5 3........................... 6 4 1 1 1.......................... 1 2........................ 2 2 3 1.................. 3 2.......................... 5 3........................... 6 4........................ 7 3 Ajax 8 1...........................

More information

Web±ÜÍ÷¤Î³Ú¤·¤µ¤ò¹â¤á¤ëWeb¥Ú¡¼¥¸²ÄÄ°²½¥·¥¹¥Æ¥à

Web±ÜÍ÷¤Î³Ú¤·¤µ¤ò¹â¤á¤ëWeb¥Ú¡¼¥¸²ÄÄ°²½¥·¥¹¥Æ¥à Web Web 2 3 1 PC, Web, Web. Web,., Web., Web HTML, HTML., Web, Web.,,., Web, Web., Web, Web., Web, Web. 2 1 6 1.1.................................................. 6 1.2.................................................

More information

25 About what prevent spoofing of misusing a session information

25 About what prevent spoofing of misusing a session information 25 About what prevent spoofing of misusing a session information 1140349 2014 2 28 Web Web [1]. [2] SAS-2(Simple And Secure password authentication protocol, ver.2)[3] SAS-2 i Abstract About what prevent

More information

untitled

untitled ...1...3 -... 3 -... 3...5 -... 5 -... 5 -... 6 -... 7 -... 7 -... 7 -... 10 -... 17 -... 17 -... 18 -... 20 -... 21 1 TEL 2 3 4 ) ) 5 6 7 8 9 10 11 () (4) () (4) () () 730-0042730-8586 730-0042 730-0042730-8586

More information

test

test PostgreSQL CTO 5 2011 5 2011 9 2012 5 2013 10 2013 11 1 5000 JOIN 4 1. 2. 5 6 http://www.slideshare.net/mistakah/gpsgnss Location Base ( ) PostgreSQL x PostgreSQL 2011/8 MySQL MongoDB PostgreSQL GIS 2011/9

More information

たのしいプログラミング Pythonではじめよう!

たのしいプログラミング Pythonではじめよう! Title of English-language original: Python for Kids A Playful Introduction to Programming ISBN 978-1-59327-407-8, published by No Starch Press, Inc. Copyright 2013 by Jason R. Briggs. Japanese-language

More information

WCAN

WCAN Web or App Web or App App 1.PC 2. 3. HTML Web design skill app design skill? ターゲットが必要 Web or App Web PC PC PC Web PC Web Web Media Queries CSS3 HTML responsible design PC Media

More information

lucene-gosen Solr1

lucene-gosen Solr1 ElasticSearch 2013/08/29 @johtani Twitter@johtani lucene-gosen Solr1 http://blog.johtani.info N-gram ElasticSearch ElasticSearch Full text search Wikipedia RDB RDB RDB Term/Token 1 2 1 2 1 2 1 2 1 2 1

More information

08+11Extra

08+11Extra A - - #8 bit, Byte, Yutaka Yasuda bit : データの最小単位 1bit = 最小状態の単位 = 二進一桁 コンピュータ内部は電気配線 配線に電気が通っている いな い だけで処理 状態は2種 二値 二進 動作にうまく対応 二進一桁を配線一本で実現 0と1 二進数 で動作 の実体 1bit = 二進一桁 = 配線一本 Byte : Byte bit 8 1 Byte

More information

XMLアクセス機能説明書

XMLアクセス機能説明書 SolarisTM Solaris Microsoft Windows NT Server network operating system Version 4.0 Windows NT Microsoft Windows 2000 Server operating systemmicrosoft Windows 2000 Advanced Server operating system Windows

More information

Lotus Domino XML活用の基礎!

Lotus Domino XML活用の基礎! IBM Software Group Lotus Domino XML 2 Agenda Domino XML Domino XML Lotus Domino Web XML Lotus Domino Web XML XML 3 Domino XML Language (DXL) XML Lotus Domino Lotus Notes/Domino R5 Lotus Notes/Domino 6.x

More information

名称未設定

名称未設定 9 toiee Lab 9 1. WPForms 2. WP Mail SMTP by WPForms SMTP 3. Shortcodes Ultimate 4. Redirection URL URL 5. Nested Pages 6. SHK Hide Title 7. Display Posts Shortcode ( ) 8. WP External Links 9. Jetpack by

More information

オンラインテスト

オンラインテスト 1. 2. JavaScript 3. Perl 4. CGI 1. WWW HTML WWW World Wide Web HTML Hyper Text Markup Language XML, XHTML Java (.java) JavaApplet (.class,.jar) JavaServlet (.jsp) JavaScript (.html) CGI (.cgi) SSI (.shtml)

More information

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi

bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows ˆ Windows10 64bit Wi Windows bash on Ubuntu on Windows [Windows Creators Update(1703) ] TAKE 2017-10-06 bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu on Windows bash on Ubuntu

More information

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name = "" => "" > item.valid? => true valid? true false

10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #<PlanItem id nil, name nil,...> > item.name =  =>  > item.valid? => true valid? true false 10 (1) 16 7 PicoPlanner validations 10.1 PicoPlanner Web Web invalid values validations Rails validates validate 107 10 (1) s 10.2 rails c Rails 7 > item = PlanItem.new => #

More information

version 1.0 November 2010 PyRAF Y. Nakajima Computer and Data Management Division Subaru Telescope NAOJ

version 1.0 November 2010 PyRAF Y. Nakajima Computer and Data Management Division Subaru Telescope NAOJ version 1.0 November 2010 PyRAF Y. Nakajima Computer and Data Management Division Subaru Telescope NAOJ Chapter 1 PyRAF 1.1 PyRAF PyRAF IRAF Python STScI 1998 (1) IRAF-CL (2) CL-? (3) IRAF Python wrapper

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 2 : TCP/IP : HTTP HTTP/2 1 / 22 httpget.txt: http.rb: ruby http get Java http ( ) HttpURLConnection 2 / 22 wireshark httpget.txt httpget cookie.txt ( ) telnet telnet localhost 80 GET /index.html HTTP/1.1

More information

Logitec NAS シリーズ ソフトウェアマニュアル

Logitec NAS シリーズ ソフトウェアマニュアル LAS-SFB V03A LAS-RAN LAS-MRN LAS-1UMR LAS-1U LHD-NAS ... 3... 3... 5... 6 1... 8... 9 1... 10 Windows... 10 Macintosh... 13 2IP... 14 IP Windows... 14 IP Macintosh... 17... 19... 24... 25 Windows Me2000

More information

Web XXX.XXX.XXX.XXX - - [02/May/2010:12:52: ] "GET /url/url2/page2.htm HTTP/1.1" "http://www.domain.co.jp/url/url2/page1.htm" "(compatibl

Web XXX.XXX.XXX.XXX - - [02/May/2010:12:52: ] GET /url/url2/page2.htm HTTP/1.1 http://www.domain.co.jp/url/url2/page1.htm (compatibl Web Web-Site Analytics Fukuoka Financial Group, Inc. Mahiru Sunaga SAS Institute Japan Ltd. Kiyoshi Murakami (Combind log format) Apache Web 2 1 Web XXX.XXX.XXX.XXX - - [02/May/2010:12:52:55 +0900] "GET

More information

5. sendmail.cf

5. sendmail.cf 5. sendmail.cf Contents sendmail.cf NULL Client PPP Client Firewall sendmail.cf sendmail ( ) ( ) SMTP UUCP sendmail.cf OS sendmail sendmail.cf MX Lower MX MX RR sendmail.cf V1: sendmail 5 ( V1) V2, V3:

More information

9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile

9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile 9 rbenv rbenv ruby 9.1 rbenv rbenv rbenv ruby ruby-build ruby 9.2 rbenv macos.bash_profile ~/.bash_profile ~/.bash_profile.bak $ touch ~/.bash_profile $ cp -f ~/.bash_profile ~/.bash_profile.bak ~/.bash_profile

More information

Microsoft Word - USB60F_Raspi_ doc

Microsoft Word - USB60F_Raspi_ doc REX-USB60F USB RS-232C 変換アダプタ REX-USB60F の Raspberry Pi での使用について 1. 概要 2 2. 設定手順 2 2-1. REX-USB60F の装着と確認 2 3. 通信の確認 4 3-1. cutecom による確認 4 4. Python での使用 8 4-1. データ送信のスクリプト 8 4-2. データ受信のスクリプト 9 2016 年

More information

RR-US470 (RQCA1588).indd

RR-US470 (RQCA1588).indd RR-US470 Panasonic Corporation 2006 2 3 4 http://www.sense.panasonic.co.jp/ 1 2 3 ( ) ZOOM 5 6 7 8 9 10 4 2 1 3 4 2 3 1 3 11 12 1 4 2 5 3 1 2 13 14 q φ φ 1 2 3 4 3 1 2 3 4 2 3 15 16 1 2 3 [/]p/o 17 1 2

More information

IT講習会

IT講習会 2002 CAVIN SR 2002/10/12-14 2 2002/10/12-14 3 http://www.npa npa.go..go.jp/police_j.htm 2002/10/12-14 4 1 2 3 4 5 6 7 2002/10/12-14 5 2002/10/12-14 6 2002/10/12-14 7 1 2 3 4 5 6 7 2002/10/12-14 8 IT IT

More information

Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6

Python (Anaconda ) Anaconda 2 3 Python Python IDLE Python NumPy 6 Python (Anaconda ) 2017. 05. 30. 1 1 2 Anaconda 2 3 Python 3 3.1 Python.......................... 3 3.2 IDLE Python....................... 5 4 NumPy 6 5 matplotlib 7 5.1..................................

More information

JTS Google App Engine S119325

JTS Google App Engine S119325 JTS Google App Engine S119325 1 3 1.1.............................. 3 1.2.............................. 3 1.3.............................. 4 2 Google App Engine 5 2.1 Google App Engine.....................

More information

1,.,,,., RDBM, SQL. OSS,, SQL,,.

1,.,,,., RDBM, SQL. OSS,, SQL,,. 1,.,,,., RDBM, SQL. OSS,, SQL,,. 3 10 10 OSS RDBMS SQL 11 10.1 OSS RDBMS............................ 11 10.1.1 PostgreSQL................................. 11 10.1.2 MySQL...................................

More information

A : kerl kerl Erlang/OTP Erlang/OTP 2 2 Elixir/Phoenix URL 2 PDF A.2 Bash macos.bash_profile exp

A : kerl kerl Erlang/OTP Erlang/OTP 2 2 Elixir/Phoenix URL 2 PDF   A.2 Bash macos.bash_profile exp A Erlang/OTP Elixir Phoenix nvm Node.js A.1 Erlang/OTP 21.1 $ kerl update releases $ kerl build 21.1 21.1 $ kerl install 21.1 ~/erlang/21.1 $ source ~/erlang/21.1/activate Erlang/OTP 1 203 A : kerl kerl

More information

untitled

untitled 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 cc 1.1 3 10 10 21 OS 10201 10 2 Windows/Linux 89 + 5 10202 10 2 Windows/Linux 104 + 5 10203 10 2 Windows/Linux 47 + 2 10204 10 2 Windows/Linux 47 +

More information

Mail_Spam_Manual_120815b

Mail_Spam_Manual_120815b server~>su - server:~#mount /mnt/cdrom server:~#umount /mnt/cdrom # cd /mnt/cdrom #./ginstall -F -M [MTA ] -P AV # wget http://download.gideon.co.jp/ginstall.tgz #./ginstall -F -M P -P AV #./ginstall -M

More information

s

s s073083 23 3 17 1 2 1.1.............................. 2 1.2.............................. 2 1.3.............................. 3 2 4 2.1........................... 4 2.2 Google App Engine........................

More information

JavaScript の使い方

JavaScript の使い方 JavaScript Release10.5 JavaScript NXJ JavaScript JavaScript JavaScript 2 JavaScript JavaScript JavaScript NXJ JavaScript 1: JavaScript 2: JavaScript 3: JavaScript 4: 1 1: JavaScript JavaScript NXJ Static

More information

Microsoft Word - 09ビジアプ_2_11_0617.docx

Microsoft Word - 09ビジアプ_2_11_0617.docx LANLocal Area Network LAN WANWide Area Network WAN LAN LAN LAN WAN LAN LAN PC USB LAN LAN LAN HUB LAN HUB LAN LAN LAN 1 HUB 1 LAN LAN LAN IEEE() IEEE802.3 LAN 10BASE5 10Mbps 500m 10BASE2 10Mbps 185m 10BASE-T

More information

八戸工業大学紀要 第 37 巻 (2018) pp. 1-5 八戸工業大学紀要第 37 巻 (2018) pp. 159-166 SNS とストリーミングサーバを利用した気温 湿度やカメラ画像を投稿する Bot 装置の開発 新谷聖 若沢卓道 中山滉平 佐藤孝哉 柴田幸司 花田一磨 Development of a Bot device for sending a temperature, humidity

More information

付加情報をもったファイル共有システム

付加情報をもったファイル共有システム 1 2 1 6 1.1....................................... 6 1.2...................................... 6 1.3..................................... 6 1.4................................... 7 2 8 2.1 Annphony....................................

More information

…l…b…g…‘†[…N…v…“…O…›…~…fi…OfiÁŸ_

…l…b…g…‘†[…N…v…“…O…›…~…fi…OfiÁŸ_ 13 : Web : RDB (MySQL ) DB (memcached ) 1: MySQL ( ) 2: : /, 3: : Google, 1 / 23 testmysql.rb: mysql ruby testmem.rb: memcached ruby 2 / 23 ? Web / 3 ( ) Web s ( ) MySQL PostgreSQL SQLite MariaDB (MySQL

More information

( ) Shift JIS ( ) ASCII ASCII ( ) 8bit = 1 Byte JIS(Japan Industrial Standard) X 0201 (X ) 2 Byte JIS ISO-2022-JP, Shift JIS, EUC 1 Byte 2 By

( ) Shift JIS ( ) ASCII ASCII ( ) 8bit = 1 Byte JIS(Japan Industrial Standard) X 0201 (X ) 2 Byte JIS ISO-2022-JP, Shift JIS, EUC 1 Byte 2 By 23 3 ( ( (binary file) UNIX CUI 3.1 = + 2 bit ) ( 3.1) bit bit 1 Byte=8 bit 1 Byte ASCII, JIS X 0201 ASCII(American Standard Code for Information Interchange) 7bit (;) (:) ( ) (") ) 7bit ( ) 24 3 3.1 (

More information

FileMaker Server 16 インストールおよび構成ガイド

FileMaker Server 16 インストールおよび構成ガイド FileMaker Server 16 2007-2017 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker

More information

Logitec NAS シリーズ ソフトウェアマニュアル

Logitec NAS シリーズ ソフトウェアマニュアル LAS-SFB V05 LAS-RAN LAS-MRN LHD-NAS ... 4... 4... 7... 8 1... 10... 11 1... 12 Windows... 12 Macintosh... 15 2IP... 16 IP Windows... 16 IP Macintosh... 19... 23... 29... 30 Windows Me2000 SMB... 30 Windows

More information

FrontSystem FrontSystem

FrontSystem FrontSystem My PAGE View http://www.page-view.jp/ FrontSystem FrontSystem FrontSystemMy PAGE View or FrontSystem Web FrontSystem JPG FrontSystem My PAGE View FrontSystem FrontSystem Web FrontSystem Web 3. 1050 Pro

More information

-1-

-1- -1- -2- -3- 1 Jpg gif 1 Jpg gif 2 Jpg gif 2 Jpg gif -4- -5- -6- -7- Jpg gif 1 2 3 Jpg gif 1 2 3 Jpg gif -8- -9- -10- Jpg gif Jpg gif -11- -12- Clipconf Rebuild Replace Delete Free Clear Export Import HTML

More information

Ansible

Ansible Ansible 2014 8 2014 8 1 1 3 1.1 Ansible..................................... 4 1.2 Ansible................................... 7 1.3 Chef Puppet... 7 1.4 Ansible Better Shell Script.............................

More information

インストール取扱説明書

インストール取扱説明書 Kabayaki for Linux version 1.3.0 2 Kabayaki for Linux : 2004-03-09 3 4 5 6 2004-03-10: Kabayaki for Linux Version 1.3.0 released. Red Hat Enterprise Linux 2.1 Adobe AcrobatMicrosoft Word/Excel/PowerPoint

More information

OSSTechドキュメント

OSSTechドキュメント OpenAM OAuth 認証モジュール 設定手順書 オープンソース ソリューション テクノロジ ( 株 ) 作成者 : 辻口鷹耶 作成日 : 2012 年 4 月 24 日 リビジョン : 1.0 目次 1. はじめに 1 1.1 OpenAM の対象バージョン...1 1.2 対象 OAuth プロバイダ...1 2. 要旨 2 2.1 OAuth 認証モジュールの概要...2 2.2 設定手順...2

More information

情報システム設計論II ユーザインタフェース(1)

情報システム設計論II ユーザインタフェース(1) CMP 実習 2 DB+PHP+XML/JSON+JavaScript 中村, 宮下, 斉藤, 菊池 1 PHP と JavaScript 連携 サーバとクライアントをどうやって繋げるか? PHP と JavaScript 間の情報のやりとりを行う JavaScript JSON/XML PHP DB 簡易的な Web API を作ろう! PHP に GET で情報を送り込むことで XML または

More information

エラー処理・分割コンパイル・コマンドライン引数

エラー処理・分割コンパイル・コマンドライン引数 L10(2017-12-05 Tue) : Time-stamp: 2017-12-17 Sun 11:59 JST hig. recv/send http://hig3.net ( ) L10 (2017) 1 / 21 IP I swallow.math.ryukoku.ac.jp:13 = 133.83.83.6:13 = : IP ( = ) (well-known ports), :. :,.

More information

2008

2008 2008 1 1 2 2 2.1 NIST Fingerprint Image Software 2.............. 2 2.2 Reference Vector........................ 2 2.2.1.................. 2 2.2.2.................. 4 3 5 3.1............................

More information

Python @HACHINONE 10 1 V Python 2014 2 : L[i] # -*- coding: utf-8 -*- def search(l, e): """L をリスト e をオブジェクトとする L に e が含まれていれば True そうでなければ False を返す """ for i in range(len(l)): if L[i] == e: return True

More information

勉強会の流れ Google API の概要 デモ curl で実際に体験 Copyright 2010 SRA OSS, Inc. Japan All rights reserved. 2

勉強会の流れ Google API の概要 デモ curl で実際に体験 Copyright 2010 SRA OSS, Inc. Japan All rights reserved. 2 Google API 勉強会 SRA OSS, Inc. 日本支社山本博之 2010 年 12 月 13 日 勉強会の流れ Google API の概要 デモ curl で実際に体験 Copyright 2010 SRA OSS, Inc. Japan All rights reserved. 2 Sylpheed Pro 2.0 Sylpheed + Sylpheed Pro アドオンメール全文検索スケジューラ

More information

FileMaker Server 8 Advanced Web Publishing Installation Guide

FileMaker Server 8 Advanced Web Publishing Installation Guide FileMaker Server 8 Advanced! 13 2004-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc.

More information

̤Äê

̤Äê SNS 1, IT.,.,.,., SNS,,,..,,.,,,.,.,,. 2 1 6 1.1................................................ 6 1.2................................................ 6 1.3...............................................

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 12 11 p.1/33 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

retool_001-013_intro.indd

retool_001-013_intro.indd Part 1 CHAPTER 1 Part 1 Section 1 1.1. Excel Excel New Application Employee Module Template Responsive CREATE Data Entities Import Entities form Excel... Excel 6 7 Section 1 1-Click Publish Interface Screen

More information

guide.PDF

guide.PDF ExpressMail Ver2.0 Copyright ( ) 1998/12/25 REV.1 1 ExpressMail Ver2.0 ExpressMail Ver2.0 ExpressMail Ver2.0 WindowsNT SMTP/POP3/IMAP4 (1) SMTP sendmail 8.8.5 DLL (2) POP3 RFC1939 APOP (3) IMAP4 RFC2060

More information

2 1947 8212 my life design 3 15875 2013710 4 portrait file Good Time portrait file

2 1947 8212 my life design 3 15875 2013710 4 portrait file Good Time portrait file 2001 05 03 25 07 08 322013101 1056135 241 0354392200 VOL.32 2013 Autumn Issue OLG-M-32 512 3 516 9 1410 10 12 14 16 18 4 2 1947 8212 my life design 3 15875 2013710 4 portrait file Good Time portrait file

More information

"CAS を利用した Single Sign On 環境の構築"

CAS を利用した Single Sign On 環境の構築 CAS Single Sign On (Hisashi NAITO) naito@math.nagoya-u.ac.jp Graduate School of Mathematics, Nagoya University naito@math.nagoya-u.ac.jp, Oct. 19, 2005 Tohoku Univ. p. 1/40 Plan of Talk CAS CAS 2 CAS Single

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 13 2007-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

Add-onアプリケーション開発 - 環境構築マニュアル -

Add-onアプリケーション開発 - 環境構築マニュアル - - - 1.0 M2M 2018 11 20 i 1 1 1.1............................................... 1 1.2................................................. 1 1.3................................................ 2 2 3 2.1 OFF.......................................

More information

1.1 EPS... 3 1.2 EPS... 3 1.2.1... 3 1.2.2... 4 1.3... 5 2.1 BMP... 6 2.2 BMP... 6 2.2.1... 6 2.2.2... 6 2.2.3 (Appendix )... 7 3.1 TIFF... 8 3.2 TIFF... 8 3.2.1... 8 3.2.2... 9 3.2.3 (Appendix )... 9

More information

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 2 Excel 1 SQL 1 SQL Server sp_executesql Oracle SQL

More information

MUA (Mail User Agent) MTA (Mail Transfer Agent) DNS (Domain Name System) DNS MUA MTA MTA MUA MB mailbox MB

MUA (Mail User Agent) MTA (Mail Transfer Agent) DNS (Domain Name System) DNS MUA MTA MTA MUA MB mailbox MB MUA (Mail User Agent) MTA (Mail Transfer Agent) DNS (Domain Name System) DNS MUA MTA MTA MUA MB mailbox MB »» SMTP MAIL FROM: 250 sender ok RCPT TO: 250 recipient

More information

愛知工業大学表1-4.indd

愛知工業大学表1-4.indd 23 3 11 25 10 10 15883 2652 150 30 32 3000 Web Web 24 2012 1 8 3 13 FM84.5 8 4CG 91 vol. 10 25 25 2013 1 13 CG 1 8 3 CG 1 Web 2 16 30 50 B3 2 2011 12 ver. 1 ver. 1 Ver. 2 3 Web DY 1 3 50.6 PC 72.8 PC Web

More information

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A Central Authentication System naito@math.nagoya-u.ac.jp to@math.nagoya-u.ac.jp, Powered by Adobe Reader & ipod Photo March 10, 2005 RIMS p. 1/55 CAS Yale Open Source software Authentication Authorization

More information

untitled

untitled Track Stick...1...2...7...8...9...10...10...14...14...17...19...23 1. CD CD 2. INSTALL TRACK SITCK MANAGER 3. OK 2 4. NEXT 5. license agreement I agree 6. Next 3 7. 8. Next 9. Next 4 10. Close 9 OK PDF

More information

Microsoft Word - DoSPOT_UserTool利用マニュアル.doc

Microsoft Word - DoSPOT_UserTool利用マニュアル.doc DoSPOT UserTool 1/32 ...3...4...6...7 UserTool ID...8...10...10 /...11...12...14...16...23...29...29 /...30...31 2/32 Wi-Fi Do-SPOT ISP UserTool UserTool Internet Explorer 6 Firefox3.6 Google Chrome 2012

More information

Cisco® ASA シリーズルーター向けDigiCert® 統合ガイド

Cisco® ASA シリーズルーター向けDigiCert® 統合ガイド Cisco ASA DigiCert 2013 7 8 Cisco ASA VPN DigiCert : 2013 7 8 Copyright 2018 DigiCert, Inc. All rights reserved. DigiCert DigiCert DigiCert, Inc. Symantec Norton Symantec Corporation DigiCert, Inc. DigiCert,

More information