Skip to content

Instantly share code, notes, and snippets.

View avary's full-sized avatar

Abdulhafiz KAŞGARLI avary

View GitHub Profile
@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"
)

Archive.org Scanned Book Downloader Bookmarklet

A simple "1-click" javascript approach to downloading a scanned book from archive.org to read at your leisure on the device of your choosing w/out having to manually screenshot every pages of the book by hand. In short it's a glorified "Save Image As..." approach but consolidated down to "1 click". BTW there may be a much better option than this out there - I just built this as an autistic project to see if it would work.

Demo Video

Archive.org SBDL Demo

Obligatory Legal/Disclaimer:

By using this script you agree to delete all book files/images after your 1 hour or 14 days is up! I don't support using this script for any other use cases. After all, none of us have ever kept a library book past it's return date, right?