뭔가 좀 자기소개가 길다. 6분지났는데 아직 본론도 안들어감
자기 경력 소개 컨퍼런스 다닌거 등등..
이 세션은 기술적인 이야기는 없을거다
- 왜 루비 코드를 읽어야 하는가?
# If you meet install errors, see abid-hussain's comment | |
sudo apt-get --force-yes install build-essential openssl libreadline6 libreadline6-dev curl git-core \ | |
zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev \ | |
libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison | |
&& | |
\curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>서울시 날씨정보-wunderground API이용</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1" charset="utf-8"> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> | |
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> | |
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> | |
<script> |
<?php | |
class DBStorageStream | |
{ | |
const DDL = <<<EOF | |
CREATE TABLE IF NOT EXISTS `table_dbfs` ( | |
`path` VARCHAR(255) NOT NULL PRIMARY KEY, | |
`data` LONGTEXT, | |
`is_dir` CHAR(1) NOT NULL DEFAULT 'N', | |
`created_at` DATETIME, |
#!/bin/bash | |
date=`date "+%Y-%m-%dT%H_%M_%S"` | |
HOME=/YOUR/LOCALHOME | |
SERVER=ID@HOST | |
DIR=backup | |
rsync -azP \ | |
--bwlimit=500 \ | |
--delete \ | |
--delete-excluded \ |
# Guide | |
# Configure the essential configurations below and do the following: | |
# | |
# Repository Creation: | |
# cap deploy:repository:create | |
# git add . | |
# git commit -am "initial commit" | |
# git push origin master | |
# | |
# Initial Deployment: |