Skip to content

Instantly share code, notes, and snippets.

View i-am-wiz's full-sized avatar

Ved Timbadiya i-am-wiz

View GitHub Profile
@i-am-wiz
i-am-wiz / test.js
Last active October 26, 2025 13:42
Redis sorted set prefix search using zrange
const Redis = require("ioredis");
const redis = new Redis();
const ZSET_KEY = 'flows';
async function seedFlows() {
const flows = [
'payment-initiation',
'payment-status',
@i-am-wiz
i-am-wiz / benchmark.cpp
Last active August 3, 2023 13:17
Matrix traversals
#include<bits/stdc++.h>
int mat[10000][10000];
const int n = 10000;
void rowByRow() {
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) {
mat[i][j] = 1;
}