Skip to content

Instantly share code, notes, and snippets.

View iamdejan's full-sized avatar
🎯
Focusing

Giovanni Dejan iamdejan

🎯
Focusing
  • 16:58 (UTC +07:00)
View GitHub Profile
@iamdejan
iamdejan / Robotic and Embedded Resources.md
Last active August 12, 2020 11:33
Robotic and Embedded Resources
@iamdejan
iamdejan / PULL_REQUEST.md
Last active March 22, 2020 05:06
Pull Request Template

[Pull Request Title Here]

Description

Motivation and Context

@iamdejan
iamdejan / About Data.md
Last active December 7, 2021 08:00
About Data

About Data and Database

OLTP database

  • needs ACID
    • TiDB
  • others
    • Meilisearch
    • Elasticsearch?
    • Riak KV
@iamdejan
iamdejan / Solution.java
Last active February 26, 2020 10:27
Quick Sort
import java.util.Arrays;
import java.util.Random;
import java.util.Scanner;
class Solution {
private void swap(int[] numbers, int i, int j) {
int temp = numbers[i];
numbers[i] = numbers[j];
numbers[j] = temp;
}
@iamdejan
iamdejan / Order Statistic Tree.md
Created March 2, 2020 04:10
Order Statistic Tree