- はじめに【5分】
- 情技について
- 今日の日程
- サーバ構築に必要なネットワーク入門【25分】
- ネットワークはどうやって繋がっているの?(コンピュータ to コンピュータ)
- IPアドレス,セグメント(サブネットマスク),ルータ
- そもそもサーバって何?
- ネットワークはどうやって繋がっているの?(コンピュータ to コンピュータ)
- サーバの定義
#!/bin/bash | |
#---------------------------------------# | |
# 設定開始 # | |
#---------------------------------------# | |
# WANインタフェース名定義 | |
WAN=eth0 | |
# VPNネットワークの範囲 |
#include <LiquidCrystal.h> | |
#define RS 12 | |
#define ENABLE 11 | |
#define DB4 10 | |
#define DB5 7 | |
#define DB6 9 | |
#define DB7 8 | |
#define SW_ESC 19 |
<div align="center"> | |
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel" style="width: 500px;"> | |
<!-- Indicators --> | |
<ol class="carousel-indicators"> | |
<% @ideas.count.times do |i| %> | |
<li data-target="#carousel-example-generic" data-slide-to="<%= i %>" class="<%= i == 0 ? 'active' : '' %>"></li> | |
<% end %> | |
</ol> |
require 'nokogiri' | |
require 'open-uri' | |
require 'json' | |
id = ARGV.first | |
url = 'https://www.instagram.com/p/' + id | |
f = open(url) | |
doc = Nokogiri::HTML.parse(f.read) |
--============================== | |
-- Extract Keynote Presenter Notes to TextEdit | |
-- Refered to https://gist.github.com/benwaldie/9955151 | |
--============================== | |
tell application "Keynote" | |
if (front document exists) = false then | |
display alert "Unable to proceed." message "Please open a presentation in Keynote." | |
return | |
end if |