This file contains 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
Circle Hover rotation Demo | |
Author : ne_Sachirou <[email protected]> | |
Date : 2014-2014 | |
License : GPLv3 www.gnu.org/licenses/gpl.html |
This file contains 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
Gassen Animation Demo | |
https://gist.github.com/ne-sachirou/48f02783837cf712286a | |
Author : ne_Sachirou <[email protected]> | |
Date : 2014-2014 | |
License : GPLv3 or later http://www.gnu.org/licenses/gpl.html | |
Music: | |
1. hainezu (FuniSaya,Crain) "gad1" CC by-sa 2014 | |
2. hainezu (FuniSaya,Crain) "gad2" CC by-sa 2014 |
This file contains 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
defmodule Http2StudyClient do | |
@moduledoc """ | |
http2study | |
""" | |
@doc "GET HTTP/2.0" | |
def get domain, port do | |
{:ok, sock} = :gen_tcp.connect domain, port, [:binary, {:packet, 0}] | |
try do | |
{:ok, data} = send_connection_preface sock |
This file contains 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
set serveroutput on; | |
drop table w_tmp; | |
create table w_tmp ( | |
department_id number(4), | |
employee_id number(6), | |
department_name varchar2(30), | |
salary number(8, 2), | |
bonus number(8, 2), | |
employee_name varchar2(46), |
This file contains 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
<!DOCTYPE html> | |
<!-- lisence: Public Domain --> | |
<meta charset="UTF-8"> | |
<title>ASync Life game</title> | |
<style> | |
.container_20130928_1 { | |
display: -ms-flexbox; | |
display: flex; | |
-ms-flex-direction: row; | |
flex-direction: row; |
This file contains 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
.bundle/ | |
vendor/ |
This file contains 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
java -jar _resources/compiler.jar --compilation_level SIMPLE_OPTIMIZATIONS --language_in ECMASCRIPT5 --js public/javascripts/Flow.js --js_output_file public/javascripts/Flow.min.js | |
<script src="Flow.js"></script> | |
<script> | |
/** | |
* @param {boolean=} is_missable =false | |
* @return {Flow} | |
*/ | |
function genFlow(is_missable) { | |
return new Flow(2, | |
function(err, passes) { |
This file contains 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
@echo off | |
rem setlocal | |
rem for %%t in (%1) do echo,%%~$path:t | |
rem for %%e in (%pathext%) do ( | |
rem for %%t in (%1%%e) do echo,%%~$path:t | |
rem ) | |
rem endlocal | |
ruby -x %~f0 %* | |
@goto end |
This file contains 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
"""Trim Photoshop files and save them into PNG files, on GIMP Python-Fu. | |
author: ne_Sachirou <[email protected]> | |
date: 2013/02/12 | |
license: Public Domain | |
GIMP 2.8.0, Python 2.7.2 | |
For syntax check, ``python -m py_compile trim_psd.py``. | |
""" | |
import platform |
This file contains 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
using System; | |
using MySql.Data.MySqlClient; | |
namespace insert | |
{ | |
public class User | |
{ | |
public string ID; | |
public string Name; | |
public string Pass; |