Skip to content

Instantly share code, notes, and snippets.

View ozw-sei's full-sized avatar

Seijiro Ozawa ozw-sei

View GitHub Profile
sudo yum update
sudo rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
# install package
sudo yum remove mysql*
sudo yum install mysql mysql-server php55 php-mysql httpd --enablerepo=remi --enablerepo=remi-php55 --enablerepo=epel
# configure
sudo service mysqld start
sudo chkconfig mysqld on
platform :ios, '5.0'
target :PROJECT_NAME_Tests, :exclusive => true do
pod 'Kiwi/XCTest'
end
#import <XCTest/XCTest.h>
#import "Kiwi.h"
#import "Calc.h"
SPEC_BEGIN(SampleKiwiTests)
describe(@"Calc action", ^{
const __block Calc *calc;
beforeAll(^{
calc = [Calc new];
@ozw-sei
ozw-sei / vhost.conf
Created June 17, 2014 07:33
/etc/httpd/conf.d/
<VirtualHost *:80>
ServerAdmin localhost
DocumentRoot /vagrant/project/curely/docroot
ServerName localhost
ErrorLog /var/log/application.error.log
TransferLog /var/log/application.access_log
</VirtualHost>
#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
#
# Do NOT simply read the instructions in here without understanding
お互いにとって最高の幸せを生み出そうとする魂
お互い→利己+利他
幸せ→大局
生み出す→ベンチャー
熱:夢があり、自分で楽しみながら課題に対して取り組む事が原動力になる
じねんがた自ら課題を見つけ、その課題の重要性を理解し、自ら解決に向けて行動を起こしている、課題を周りにも伝え、危機感を与え、協力を求め、周りを巻き込んで行動で行動できる。
利己的な要素・わくわくと自分のやりたいことなどをする事がベンチャーであるために必要な要素でないかと
共:利他の要素、共にバランスを取る。利己(じねん)(生成)的な要素を持ちつつ、利他的(他人の最高の幸せ)なバランス、一流(仕組み化)と変化のバランスを取る
CREATE TABLE `google_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` varchar(30) NOT NULL,
`email` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`picture` varchar(255) NOT NULL,
`access_token` varchar(255) NOT NULL,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
-- MySQL dump 10.13 Distrib 5.5.38, for Linux (x86_64)
--
-- Host: localhost Database: library_manager
-- ------------------------------------------------------
-- Server version 5.5.38
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
<html lang="ja">
<?php write_html($this->parseTemplate('includes/import/head.php', array('page_title' => 'Title | Entry'))); ?>
<body class="BODY">
<?php write_html($this->parseTemplate('includes/header.php')); ?>
<div class="container">
<div class="row">
<div class="col-md-4 text-left">
<h1>プロフィール画面</h1>
<p>ユーザ名</p>
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Listing 2-2, Load Shaders From DOM</title>
<meta charset="utf-8">
<script id="shader-vs" type="x-shader/x-vertex">
attribute vec3 aVertexPosition;
void main() {
gl_Position = vec4(aVertexPosition, 1.0);