Skip to content

Instantly share code, notes, and snippets.

View qti3e's full-sized avatar
πŸ³οΈβ€πŸŒˆ

Parsa qti3e

πŸ³οΈβ€πŸŒˆ
View GitHub Profile
@qti3e
qti3e / imshow_rgba.patch
Last active March 6, 2018 19:43
Support RGBA in imshow
commit f37df59507f77cd9e7cad33c27b6c63dd7aae0e5
Author: Parsa Ghadimi <[email protected]>
Date: Tue Mar 6 22:15:36 2018 +0330
[Fix #196] Support RGB in imshow
diff --git a/src/im.ts b/src/im.ts
index adbd34e..26f0c55 100644
--- a/src/im.ts
+++ b/src/im.ts
@qti3e
qti3e / lcs.ts
Created March 24, 2018 23:58
Longest common substring
function Int2DArray(a: number, b: number) {
const data = new Int32Array(a * b);
return {
set(i: number, j: number, v: number) {
const index = j * a + i;
data[index] = v;
},
get(i: number, j: number) {
const index = j * a + i;
return data[index];
@qti3e
qti3e / break.js
Created March 27, 2018 10:34
Why break in a switch statement is important?
const o = {
i: 0,
get x() {
return this.i++;
}
};
switch (o.x) {
case 0:
console.log("a");
case 1:
#sudo sysctl -w net.inet.ip.portrange.first=32768
sudo sysctl -w net.inet.ip.portrange.first=12000
sudo sysctl -w net.inet.tcp.msl=1000
sudo sysctl -w kern.maxfiles=1000000 kern.maxfilesperproc=1000000
@qti3e
qti3e / gist:939157626614b0a1cfe453a4985262cf
Created May 31, 2018 19:40 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
async function bottom(props, resolve, parentDom) {
const btn = document.createElement("bottom");
parentDom.appendChild(btn);
btn.onclick = (e) => {
props.onClick(e, resolve);
}
return btn;
}
function html(elementName) {
/**
* ____ _ _ _____
* /___ \ |_(_)___ / ___
* // / / __| | |_ \ / _ \
* / \_/ /| |_| |___) | __/
* \___,_\ \__|_|____/ \___|
*/
import { Request, Response } from "express";
This file has been truncated, but you can view the full file.
[
{
"names": [
"ΨͺΩˆΨ±Ω‡Ψ§Ω„"
],
"country": "TR",
"lng": 36.09,
"lat": 40.39
},
{
@qti3e
qti3e / main.c
Last active June 12, 2020 11:07
#include <stdlib.h> // for NULL
#include <sys/mman.h> // for mmap
#include <stdio.h>
#include <string.h>
#include <stdint.h>
unsigned char data[] = {
// "Hello\n"
0x48, 0x65, 0x6c, 0x6c, 0x6f, 0xA
};
|/|
0> vim
2> cd client && yarn start
3> cd server && yarn start
0