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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<a:fontScheme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Rodin"> | |
<a:majorFont> | |
<a:latin typeface="FOT-Rodin ProN EB" /> | |
<a:ea typeface="FOT-Rodin ProN EB" /> | |
<a:cs typeface="" /> | |
</a:majorFont> | |
<a:minorFont> | |
<a:latin typeface="FOT-Rodin ProN B" /> | |
<a:ea typeface="FOT-Rodin ProN B" /> |
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
const webpack = require('webpack'); | |
const path = require('path'); | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); | |
const isDevelopment = process.env.NODE_ENV !== 'production'; | |
let config = { | |
entry: { | |
app: [ |
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
FROM alpine:3.7 | |
RUN apk update | |
RUN apk add \ | |
autoconf \ | |
automake \ | |
boost-dev \ | |
curl \ | |
gcc \ | |
g++ \ |
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
show interfaces | |
ethernet eth0 { | |
description "Internet (ONU)" | |
dhcpv6-pd { | |
no-dns | |
pd 0 { | |
interface switch0 { | |
host-address ::1 | |
prefix-id 2 | |
service slaac |
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
{ | |
"channels": [ | |
{ "type": "GR", "channel": "18" }, // 1 NHK東京総合 | |
{ "type": "GR", "channel": "19" }, // 2 NHK東京Eテレ | |
{ "type": "GR", "channel": "25" }, // 4 日本テレビ | |
{ "type": "GR", "channel": "24" }, // 5 テレビ朝日 | |
{ "type": "GR", "channel": "22" }, // 6 TBSテレビ | |
{ "type": "GR", "channel": "23" }, // 7 テレビ東京 | |
{ "type": "GR", "channel": "21" }, // 8 フジテレビ | |
{ "type": "GR", "channel": "15" }, // 9 TOKYO MX |
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
#!/bin/bash | |
fswatch -0 -e '\.git' . | while read -d "" event | |
do | |
git add ${event} && git commit -m `date +%s` | |
done |
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
login user osyoyu * | |
console character ascii | |
login timer 1800 | |
ip route default gateway tunnel 1 | |
ipv6 route default gateway dhcp lan2 | |
ipv6 prefix 1 dhcp-prefix@lan2::/64 | |
ip lan1 address 192.168.0.1/24 | |
ipv6 lan1 address dhcp-prefix@lan2::1/64 | |
ipv6 lan1 rtadv send 1 o_flag=on | |
ipv6 lan1 dhcp service server |
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
#container { | |
background-attachment: initial !important; | |
} | |
.m_bg-star01 { | |
animation: none !important; | |
} | |
#container, #container:before, .l_background-hack { | |
background-attachment: initial; | |
animation: none !important; |
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
#!/bin/bash | |
set -ue | |
#------------------------------------------------------------------------------- | |
SOURCE_DIR="." | |
DESTINATION_DIR="public/assets" | |
JAVASCRIPTS_DIR="javascripts" | |
STYLESHEETS_DIR="stylesheets" |
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
use strict; | |
use warnings; | |
require LWP; | |
require HTTP::Request; | |
package SaikohTk; | |
sub new { | |
my $class = shift; |