Skip to content

Instantly share code, notes, and snippets.

View avary's full-sized avatar

Abdulhafiz KAŞGARLI avary

View GitHub Profile
@avary
avary / 1-hadithgraph.md
Created December 11, 2025 11:12 — 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
@avary
avary / .gitignore
Created December 1, 2025 11:47 — forked from jeroen-meijer/.gitignore
General Flutter .gitignore (including VS Code, IntelliJ & Firebase files).
### https://raw.github.com/github/gitignore/80a8803b004013d17291196825a327b9e871f009/Android.gitignore
# Built application files
*.apk
*.ap_
# Files for the ART/Dalvik VM
*.dex
# Java class files
@avary
avary / dataset.py
Created November 27, 2025 15:17 — forked from ksdkamesh99/dataset.py
%%time
rows=1000000
columns=400
dataset=pd.DataFrame(np.random.randint(0,10,(rows,columns)),columns=['col'+str(i) for i in range(1,columns+1)])
@avary
avary / Learning Resources.txt
Created November 27, 2025 05:00 — forked from lifeeric/Learning Resources.txt
want to learn something, here is free resources
www.FreeCoursesOnline.Me
https://www.ustreamy.co/
http://freecoursesite.com/
https://freecourselab.com/
https://courseclub.me/
http://smartybro.com/
https://viralcourse.online/
http://seekerschoice.net/
https://udemycoupon.learnviral.com/
https://www.learningcrux.com/
@avary
avary / AlmaLinux_8_installation.md
Created November 25, 2025 07:51 — forked from Chester-Gillon/AlmaLinux_8_installation.md
Notes about installing AlmaLinux 8 and making customisation's

0. Introduction

Describes notes made about installing AlmaLinux 8, and making customisations as required. The installation was performed on a HP Z640 workstation, and to avoid changing the Windows and Ubuntu installations on the existing RAID arrays used a USB external disk as the target for the AlmaLinux installation.

1. Creation of install media and initial installation.

The full DVD ISO image was downloaded from AlmaLinux-8.4-x86_64-dvd.iso

Followed the instructions at Installation instructions to verify the checksum of the downloaded ISO which was succesful in that the SHA256 of the ISO file matched the expected value:

@avary
avary / export_note.py
Created June 30, 2025 12:18 — forked from vivekthedev/export_note.py
Download NotebookLM notes as PDF
# pip install beautifulsoup4==4.13.4 markdown_pdf==1.7
from bs4 import BeautifulSoup
from bs4.element import Tag
import re
from markdown_pdf import MarkdownPdf, Section
note_data = open("notes.txt", "r", encoding="utf-8").read()
soup = BeautifulSoup(note_data, "html.parser")
def drill_into_tag(tag, ):
@avary
avary / MacPort PostgreSQL setup.md
Created May 8, 2025 09:30 — forked from DrTom/MacPort PostgreSQL setup.md
MacPort PostgreSQL setup

PostgreSQL Server Setup on Mac OS with MacPorts

This is in particular aimed at using multiple versions of PostgreSQL at different ports.

export VERSION=15

Install

port info postgresql${VERSION}-server
@avary
avary / HidingRoot.md
Created April 17, 2025 19:06 — forked from TheUnrealZaka/HidingRoot.md
This guide is for all Android devices to hide properly all root detections and successfully run banking apps as expected :)

✨ Welcome to TheUnrealZaka's Guide for Hiding Root Detections!

Using KernelSU-Next + SuSFS

⚠️ Disclaimer: This guide is provided solely for educational purposes. The creator assumes no responsibility for any damage, data loss, or other adverse effects that may occur as a result of following these instructions. Proceed entirely at your own risk!


📖 Introduction

Many users who have rooted their devices finds issues where system or third-party applications detect the root status and refuse to operate. This guide outlines a procedure to hide root detection on the majority of Android devices, specifically the ones running Noble ROM for Samsung S9/S9+/N9. The approach detailed here leverages KernelSU-Next in conjunction with SuSFS.

@avary
avary / ollachat_ar.py
Created April 4, 2025 14:09 — forked from iamaziz/ollachat_ar.py
Ollama UI for Arabic (right-to-left) based on: https://github.com/iamaziz/ollachat (example in the comments)
import os
import json
import datetime
import streamlit as st
from llama_index.llms import Ollama
from llama_index.llms import ChatMessage
# https://docs.llamaindex.ai/en/stable/examples/llm/ollama.html
@avary
avary / blueprint.go
Created January 9, 2025 11:15 — forked from sadysnaat/blueprint.go
Blue Print generating Go Program
package main
import (
"fmt"
"image"
"image/color"
"image/png"
"os"
)