- Scott Chacon on the Interwebs(リンク切れ)
- Scott Chacon on the Interwebs
- GitHub Flow - The best way to use Git and GitHub
31 Aug 2011
/* | |
* From css-tricks.com | |
* http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ | |
*/ | |
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 480px) { | |
/* Styles */ |
// | |
// gcc -lmicrohttpd mhd.c | |
// | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/select.h> | |
#include <sys/socket.h> | |
#include <microhttpd.h> |
# coding: utf-8 | |
# IC balance checker / 2013-2015 @Akkiesoft | |
# Licence: | |
# MIT License | |
# references: | |
# http://homepage3.nifty.com/slokar/pasori/libpafe-ruby.html | |
# http://iccard.jennychan.at-ninja.jp/format | |
require 'wiringpi' |
import std.stdio; | |
class Test { | |
private string _value; | |
this(string value) { | |
this._value = value; | |
} | |
Test opOpAssign(string op)(Test delegate(string) test) if(op == ">>") { |
/* | |
Copyright © 2014 Hidekazu Kobayashi | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
import derelict.opengl3.gl, | |
derelict.opengl3.gl3, | |
derelict.glfw3.glfw3; | |
class TestGlfw{ | |
static int width = 800; | |
static int height = 600; | |
static GLFWwindow* window; | |
this(){ |
#!ruby | |
if false | |
class C | |
def m | |
xxxx | |
end | |
end | |
def mm | |
yyyy |