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
package main | |
// #include "CL/opencl.h" | |
// #cgo LDFLAGS: -lOpenCL | |
import "C" | |
import ( | |
"log" | |
"unsafe" | |
) |
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
<Target Name="CreateZip" AfterTargets="Build" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
<PropertyGroup> | |
<StringDate>$([System.DateTime]::Now.ToString('yyyyMMdd-HH-mm-ss'))</StringDate> | |
</PropertyGroup> | |
<ItemGroup> | |
<ReleaseFiles Include="Release\*exe*"> | |
<StripPath>true</StripPath> | |
</ReleaseFiles> | |
<ReleaseFiles Include="README.txt;data\**\*" Exclude="**\.svn\**\*"/> | |
<ReleaseFiles Include="*.vcxproj;*.sln;*.cpp;*.h;include\**\*" Exclude="**\.svn\**\*"> |
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
#define LUA_LIB | |
#define ltable_c | |
#include "lobject.c" | |
#include "lapi.c" | |
#include "lcode.c" | |
#include "lctype.c" | |
#include "ldebug.c" | |
#include "ldo.c" | |
#include "ldump.c" | |
#include "lfunc.c" |
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
--- /usr/share/logwatch/scripts/services/http 2012-12-19 17:22:31.000000000 +0900 | |
+++ /usr/share/logwatch/scripts/services/http.orig 2011-03-31 06:57:37.000000000 +0900 | |
@@ -136,6 +136,7 @@ | |
my %hack_success =(); | |
my %needs_exam =(); | |
my %ban_ip =(); | |
+my %ip_per_url =(); | |
my %robots =(); | |
my $pattern = ""; | |
my $flag = 0; |
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
;; ahk settings for laptop with jp keyboard | |
;muhenkan | |
sc07b::Home | |
;henkan | |
sc079::End | |
;the key at the left of the lshift key | |
sc073::_ |
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
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using Microsoft.CSharp; | |
using System.CodeDom.Compiler; | |
using System.Reflection; | |
using System.IO; | |
namespace ics | |
{ |
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
# frozen_string_literal: true | |
require 'optparse' | |
require 'set' | |
class Dep | |
def self.main(argv=ARGV) | |
dep = new | |
froms = [] | |
tos = [] |
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
ruby -rubygems -e "require 'rake'; loop { STDIN.gets or break; Rake.application.run }" |
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
require 'tilt' | |
require 'slim' | |
require 'sass' | |
require 'rake/clean' | |
@tilts = {} | |
def tilt_rule(to, from, options={}) | |
@tilts[from] = to |