Skip to content

Instantly share code, notes, and snippets.

View egeucak's full-sized avatar
👨‍💻
Coding

ege uçak egeucak

👨‍💻
Coding
View GitHub Profile
@egeucak
egeucak / rarreg.key
Created November 21, 2023 15:39 — forked from MuhammadSaim/rarreg.key
Step 1: Create a file called rarreg.key Step 2: Paste into the file the raw content of this gist Step 3: Go to Winrar install directory (by default => c:\ProgramFiles\WinRAR\ ) Step 4: Paste the rarreg.key into WinRAR directory Step 5: Enjoy
RAR registration data
WinRAR
Unlimited Company License
UID=4b914fb772c8376bf571
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9
@egeucak
egeucak / ntv.js
Last active April 16, 2017 16:18
sd
/*! jQuery v2.1.3 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ ! function(a, b) {
"object" == typeof module && "object" == typeof module.exports ? module.exports = a.document ? b(a, !0) : function(a) {
if (!a.document) throw new Error("jQuery requires a window with a document");
return b(a)
} : b(a)
}("undefined" != typeof window ? window : this, function(a, b) {
var c = [],
d = c.slice,
e = c.concat,
f = c.push,
/*! jQuery v2.1.3 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ ! function(a, b) {
"object" == typeof module && "object" == typeof module.exports ? module.exports = a.document ? b(a, !0) : function(a) {
if (!a.document) throw new Error("jQuery requires a window with a document");
return b(a)
} : b(a)
}("undefined" != typeof window ? window : this, function(a, b) {
var c = [],
d = c.slice,
e = c.concat,
f = c.push,
/*! jQuery v2.1.3 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ ! function(a, b) {
"object" == typeof module && "object" == typeof module.exports ? module.exports = a.document ? b(a, !0) : function(a) {
if (!a.document) throw new Error("jQuery requires a window with a document");
return b(a)
} : b(a)
}("undefined" != typeof window ? window : this, function(a, b) {
var c = [],
d = c.slice,
e = c.concat,
f = c.push,
@egeucak
egeucak / graphDraw
Created March 22, 2017 11:26
This snippet draws graphs of value-N pairs
import numpy as np
import matplotlib.pyplot as plt
secLrg = [0.025, 0.028, 0.037, 0.025, 0.015, 0.015, 0.017, 0.019, 0.018, 0.02, 0.022, 0.024]
stoogeSort = [1.209, 6.693, 61.367, 60.985, 572.152, 561.977, 561.418, 1758.238, 1714.37, 1679.472, 1706.354, 4863.038]
radixSort = [0.084, 0.118, 0.093, 0.139, 0.216, 0.265, 0.354, 0.313, 0.165, 0.182, 0.189, 0.211]
shakerSort = [0.019, 0.127, 0.147, 0.187, 0.447, 0.539, 0.285, 0.384, 0.357, 0.391, 0.501, 0.587]
maximumSub = [0.016, 0.123, 0.135, 0.106, 0.242, 0.305, 0.209, 0.257, 0.25, 0.312, 0.363, 0.441]
sizes = [100,300,500,700,1100,1300,1500,1700,1900,2100,2300,2500]
@egeucak
egeucak / Time Calculator
Created March 21, 2017 20:55
The code snippet I used for calculating the execution time
import math
def islem(N):
return (N*math.log(N,2) + 9*N + 55)
print(islem(220) / 1000000)