I hereby claim:
- I am poyea on github.
- I am poyea (https://keybase.io/poyea) on keybase.
- I have a public key whose fingerprint is C059 C6FC CF55 BEF4 DC94 EFC6 534F F4D1 3CAD 8820
To claim this, I am signing this object:
{ | |
"0": { | |
"flight": "AI314", | |
"departure": [ | |
"New", | |
"Delhi" | |
], | |
"seats": [ | |
"Unknown" | |
], |
{ | |
"0": { | |
"flight": "CX838", | |
"path": "Hong Kong → Vancouver", | |
"seats": [ | |
"15D", | |
"15G" | |
], | |
"date": "06/03/2020" | |
}, |
#include <cmath> | |
#include <iostream> | |
#include <unordered_set> | |
#include <vector> | |
using namespace std; | |
vector<int> plusTo(vector<int> original, int position) | |
{ |
I hereby claim:
To claim this, I am signing this object:
# @poyea - https://github.com/poyea | |
# 𝕴𝕰𝕽𝕲𝟒𝟏𝟔𝟎 - 𝕳𝖂𝟐𝕼𝟒𝕭𝟏&𝟐 Ŧคɭɭ 2019 | |
import numpy as np | |
from scipy.signal import correlate, convolve2d | |
np.seterr(divide='ignore', invalid='ignore') # ignore error messages for now | |
np.set_printoptions(precision=4) # 4 decimal places | |
PADDING = 'valid' # or 'full', I use 'valid' here | |
I = np.array([[1, 1, 0, 0, 0, 0], # the image | |
[1, 1, 0, 0, 0, 0], |
# kubectl apply -f apache.yaml | |
# https://github.com/poyea | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: apache-deployment | |
spec: | |
selector: | |
matchLabels: | |
app: apache |
#include<iostream> | |
using namespace std; | |
int gcd(int x, int y){ return x%y==0?y:gcd(y,x%y); } | |
int main(){ cout << gcd(27258068,43175188) << endl; return 0; } // print a special number |