Skip to content

Instantly share code, notes, and snippets.

Avatar
👻
dead

cenan ozen cenan

👻
dead
View GitHub Profile
View Link.tsx
View index.ts
import * as fs from "fs";
import * as path from "path";
import * as express from 'express';
import * as bodyParser from "body-parser";
import { Server, ServerConfig } from "./Server";
import { deserialize } from "serializr";
let serverConfig: ServerConfig = {
httpPort: 4444,
redisHost: "127.0.0.1",
View find_by_ordered_ids.rb
module Extensions::ActiveRecord::FindByOrderedIds
extend ActiveSupport::Concern
module ClassMethods
def find_ordered(ids)
order_clause = "CASE id "
ids.each_with_index do |id, index|
order_clause << sanitize_sql_array(["WHEN ? THEN ? ", id, index])
end
order_clause << sanitize_sql_array(["ELSE ? END", ids.length])
where(id: ids).order(order_clause)
@cenan
cenan / geocode.js
Created July 12, 2017 12:33
geocode
View geocode.js
var geocoder;
var map;
var marker;
function initialize() {
console.log("MAPS INITIALIZED");
var myLatlng = new google.maps.LatLng($("#event_latitude").val(), $("#event_longitude").val())
var mapOptions = {
zoom: 15,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
View main.js
import {add, sub} from "./ops.js";
add(1,2);
import ops from "./ops.js"
ops.add(1,2);
View turkce_isimler.sql
-- Turkce isimler sozlugu twitter : http://twitter.com/tserpico
CREATE TABLE `isimler` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`isimler` varchar(255) DEFAULT NULL,
`cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U',
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
-- ----------------------------
@cenan
cenan / line.rb
Last active August 29, 2015 14:11 — forked from actsasgeek/line.rb
View line.rb
require 'generator'
samples = [
{ :xs => [ 1.0, 0.25], :y => 0.98},
{ :xs => [ 1.0, 0.49], :y => 0.82},
{ :xs => [ 1.0, 0.60], :y => 0.41},
{ :xs => [ 1.0, 0.89], :y => 0.31}
]
# line is the sum of the dot product of the weight (thetas)
View gradient_descent.rb
def params
[0,0]
end
def examples
[
{
:x => 1,
:y => 3
},
@cenan
cenan / Gemfile
Created July 30, 2014 11:57 — forked from tgezginis/Gemfile
View Gemfile
gem 'google-api-client'