View SqlWorkbenchExplain.pas
program SQLWorkbenchExplain; | |
{$APPTYPE CONSOLE} | |
uses | |
SysUtils, Classes, JclSysUtils, IniFiles; | |
type | |
TConfig = record | |
LogFile: string; |
View gist:fd39c5cbea4141698837b8f78d5be1bb
### Keybase proof | |
I hereby claim: | |
* I am nurettin on github. | |
* I am nurettin (https://keybase.io/nurettin) on keybase. | |
* I have a public key whose fingerprint is 7687 787E A662 029F 2DD6 94CF 9B86 DFB2 25ED E4CB | |
To claim this, I am signing this object: |
View gist:0421fc97c62480cdac998f0577fa0968
buildscript { | |
... | |
} | |
... | |
android { | |
... | |
} | |
dependencies { |
View fann.cpp
#include <fann.h> | |
#include <fann_cpp.h> | |
void prepare_data(std::string const &name){ | |
std::ofstream file(name+ ".data", std::ios::trunc); | |
file<< "4 2 1\n" | |
<< "0 0\n0\n" | |
<< "0 1\n1\n" | |
<< "1 0\n1\n" | |
<< "1 1\n0\n"; |
View hst.rb
class Hst | |
attr_reader :version | |
attr_reader :copyright | |
attr_reader :symbol | |
attr_reader :period | |
attr_reader :digits | |
attr_reader :timesign | |
attr_reader :lastsync | |
def initialize(file) |
View main.cpp
#include <iostream> | |
#include <ode/ode.h> | |
#include <SDL.h> | |
#include <SDL2_gfxPrimitives.h> | |
dWorldID earth; | |
dJointGroupID contact_joint_group; | |
std::size_t const max_contacts = 10; | |
dContact contact[max_contacts]; |
View fann_cpp_train.cpp
#include <ios> | |
#include <fstream> | |
#include <vector> | |
#include <fann.h> | |
#include <fann_cpp.h> | |
void prepare_data(std::string const &name){ | |
std::ofstream file(name+ ".data", std::ios::trunc); | |
file<< "4 2 1\n" | |
<< "0 0\n0\n" |
View 12rules.htm
I thought about posting this in the "mathematics of sudoku" forum, but really what it is is | |
a statement of the common (and maybe not so common) rules for solving Sudoku, both in plain | |
English and in logical notation. If you are just interested in solving Sudoku, ignore the | |
funny notation; if you are interested in the mathematics, enjoy the symmetry. | |
I suggest that the following set of rules may constitute the entire set of | |
"standard" methods (not including simple chain-based logic) used to solve Sudoku puzzles. | |
Included here are: |
View mechanize_history.rb
browser= Mechanize.new do |m| | |
m.history.max_size= 1 | |
end | |
@mech.get "https://www.google.com" | |
@mech.history.clear | |
GC.start |
View xkb.sh
#!/bin/bash | |
setxkbmap -query | grep "\Wtr" 1>/dev/null && setxkbmap us || setxkbmap tr | |
xmodmap /home/nurettin/.Xmodmap |