Skip to content

Instantly share code, notes, and snippets.

@zobayer1
zobayer1 / gist_blur.md
Last active November 2, 2022 06:08 — forked from AbuAbir/Good practice.md
Good practice to showcase achievement

GIST and BLUR

*collected from "Zobayer Hasan", Solution Architect, TigerIT Bangladesh

Works that you can show are always lot more impressive than works that you can only talk about. So yes, your projects on GitHub should carry a good amount of weight, or consideration in a recruitment phase, granted that they are relevant to the position or field you are trying to get in, and you are able to explain / answer relevant questions. When it comes to group projects, it is a bit sketchy. But these are great for showing how honest you are. Because, trust me, interviewers are usually good enough to catch you if you try to fool them (if they can't, they're probably from a bad company, and you don't want to get in there anyway).

@AaronC81
AaronC81 / tp-link-router-ip.rb
Created April 25, 2021 14:49
Get public IP address of TP-Link router, for dynamic DNS

Essential Apps

  • Blink: Install Blink on your iPad
  • Tailscale: Install Tailscale on all your devices.
  • mosh: Install mosh on all your devices. It comes with Blink by default.

Nice to have apps

Amphetamine for Mac

@mfornet
mfornet / launch.json
Last active March 7, 2021 10:02
Debug configuration files for https://github.com/mfornet/acmx
{
"version": "0.2.0",
"configurations": [{
"name": "Launch with lldb",
"type": "lldb",
"request": "launch",
"program": "${fileDirname}/attic/sol",
"args": ["${fileDirname}"],
"cwd": "${workspaceFolder}",
"stdio": ["${fileDirname}/testcases/0.in"],
@kvnxiao
kvnxiao / awesome-selfhosted-sorted-by-stars.md
Last active May 8, 2024 19:00
awesome-selfhosted-sorted-by-stars.md

Awesome-Selfhosted

Awesome

Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers.

This is a list of Free Software network services and web applications which can be hosted locally. Non-Free software is listed on the Non-Free page.

See Contributing.

@Chillee
Chillee / hash table.cpp
Last active January 15, 2022 00:53
Policy based data structures
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
struct chash {
const int RANDOM = (long long)(make_unique<char>().get()) ^ chrono::high_resolution_clock::now().time_since_epoch().count();
static unsigned long long hash_f(unsigned long long x) {
x += 0x9e3779b97f4a7c15;
x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;
x = (x ^ (x >> 27)) * 0x94d049bb133111eb;
return x ^ (x >> 31);
@siddMahen
siddMahen / example.js
Created December 16, 2011 13:33
Renders htmlparser2 data into HTML
var render = require("./renderer");
// The output of parser.js
var t = [
{
data: 'Xyz ', type: 'text'
},
{
type: 'script',