Skip to content

Instantly share code, notes, and snippets.

View rajabilal555's full-sized avatar

Bilal Pervez rajabilal555

View GitHub Profile
@rajabilal555
rajabilal555 / 1-hadithgraph.md
Created January 25, 2025 07:43 — forked from rvanbruggen/1-hadithgraph.md
Hadith Narrator Graph

Graphs are everywhere - also in Religious Texts

This is going to be an interesting and in some ways even fascinating blogpost. I have thoroughly enjoyed researching it and playing around with the latest and greates Neo4j tools while doing so, but I must say that it's also one of the first blogposts that I can remember where I am a bit uneasy about the content. Why? Because it's about, or at least in some ways touches, religion.

First let's start with some background here. Some things that you should know about me:

  • I was born and raised in Belgium, which is - or at least was - a predominantly Catholic Christian country. There's churches and chapels on every corner of the street here.
  • My parents were/are far from religious, never took me to church, but did give me many of the Catholic Christian values - and these were engrained in me even more clearly because of my 13 ears in Jesuit schools in Antwerp and Turnhout.
  • as an adult, I became increasingly distantiated from all rel
@rajabilal555
rajabilal555 / .ideavimrc
Created September 10, 2023 12:12
My vimrc/ideavimrc
" .ideavimrc is a configuration file for IdeaVim plugin. It uses the same commands as the original .vimrc configuration.
" You can find a list of commands here: https://jb.gg/h38q75
" Find more examples here: https://jb.gg/share-ideavimrc
""" Map leader to space ---------------------
let mapleader=" "
" Show a few lines of context around the cursor. Note that this makes the
" text scroll if you mouse-click near the start or end of the window.
set showmode
set so=5
@rajabilal555
rajabilal555 / theme.omp.json
Created August 21, 2023 17:30
Theme configuration file for OhmyPosh (https://ohmyposh.dev/)
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"foreground": "#FFFB38",
"leading_diamond": "\u256d\u2500",
"style": "diamond",
@rajabilal555
rajabilal555 / index.js
Last active April 3, 2022 04:56
Web Scrapping with Nodejs (Step 1)
const pup = require("puppeteer");
async function main() {
const browser = await pup.launch(); // Like launching a browser
const page = await browser.newPage(); //Like Creating a Tab in the Browser
await page.goto("https://www.google.com/");
console.log("Page loaded");
await browser.close();
// If you dont close the script will keep running
@rajabilal555
rajabilal555 / autoexec.cfg
Last active September 17, 2017 11:26
CSGO Auto Exec Config File
// Misc.
gameinstructor_enable "0"
sv_damage_print_enable 1
hud_scaling 0.7
// lowers delay between sounds.
snd_mixahead "0.05"
snd_musicvolume "0"
snd_headphone_pan_exponent "2"
snd_headphone_pan_radial_weight "2"
@rajabilal555
rajabilal555 / Discord in RC Barnstorm (SAMP)
Created February 4, 2017 11:37
Discord in RC Barnstorm (SAMP)
//
// RC BARNSTORM - A demonstration vehicle vs vehicle script for SA-MP 0.2
// -- by kyeman (SA-MP team) 2007
//
// This script demonstrates the following :-
// - An automatic vehicle observer mode switchable via a key press.
// - Text drawing and the use of GTA ~k~ key constants.
// - Use of RC vehicles
// - Dynamic creation and destruction of vehicles
// - The OnPlayerKeyStateChange event/callback and determining