Skip to content

Instantly share code, notes, and snippets.

@pmutua
pmutua / Commit Formatting.md
Created July 29, 2020 19:07 — forked from clemtibs/Commit Formatting.md
Angular Commit Format Reference Sheet

Commit Message Guidelines

We have very precise rules over how our git commit messages can be formatted. This leads to more readable messages that are easy to follow when looking through the project history. But also, we use the git commit messages to generate the Angular change log.

Commit Message Format

Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:

@iam-veeramalla
iam-veeramalla / upload_jenkins_build_logs.sh
Created January 7, 2025 15:11
upload_jenkins_build_logs.sh
#!/bin/bash
# Variables
JENKINS_HOME="/var/lib/jenkins" # Replace with your Jenkins home directory
S3_BUCKET="s3://your-s3-bucket-name" # Replace with your S3 bucket name
DATE=$(date +%Y-%m-%d) # Today's date
# Check if AWS CLI is installed
if ! command -v aws &> /dev/null; then
echo "AWS CLI is not installed. Please install it to proceed."
@DartPower
DartPower / Astra.md
Last active December 14, 2025 18:57
Astra Linux ISO / Коллекция ссылок на Astra Linux
@cobaohieu
cobaohieu / Install FacetimeHD Camera Driver on Macbook Pro 2015 for Ubuntu 22.04 or later.md
Last active December 14, 2025 18:54
Installing the FaceTime HD Camera Driver for Macbook Pro 2015 on Ubuntu 22.04 or later

Guide how to install FaceTimeHD Driver for Macbook Pro 2015 on Ubuntu 22.04 or later

This guide provides step-by-step instructions to install the FaceTimeHD driver for MacBook webcams on Linux (Debian/Ubuntu).
The process includes installing prerequisites, extracting firmware, and building/installing the driver using two methods.

To get full source code without use many times git clone as below

Please clone this repo here and don't forget skip some step, then move to Copy Firmware

cd ~; git clone https://github.com/cobaohieu/facetimehd.git

@jdu2600
jdu2600 / WindowsKernelTrace.mof
Last active December 14, 2025 18:46
Windows Kernel Trace MOF - Windows 11 23H2 (Build 22631.3447)
[dynamic: ToInstance, Guid("{9e814aad-3204-11d2-9a82-006008a86939}")]
class MSNT_SystemTrace : EventTrace
{
[DefineValues{"EVENT_TRACE_FLAG_PROCESS", "EVENT_TRACE_FLAG_THREAD", "EVENT_TRACE_FLAG_IMAGE_LOAD", "EVENT_TRACE_FLAG_PROCESS_COUNTERS", "EVENT_TRACE_FLAG_CSWITCH", "EVENT_TRACE_FLAG_DPC", "EVENT_TRACE_FLAG_INTERRUPT", "EVENT_TRACE_FLAG_SYSTEMCALL", "EVENT_TRACE_FLAG_DISK_IO", "EVENT_TRACE_FLAG_DISK_FILE_IO", "EVENT_TRACE_FLAG_DISK_IO_INIT", "EVENT_TRACE_FLAG_DISPATCHER", "EVENT_TRACE_FLAG_MEMORY_PAGE_FAULTS", "EVENT_TRACE_FLAG_MEMORY_HARD_FAULTS", "EVENT_TRACE_FLAG_VIRTUAL_ALLOC", "EVENT_TRACE_FLAG_NETWORK_TCPIP", "EVENT_TRACE_FLAG_REGISTRY", "EVENT_TRACE_FLAG_ALPC", "EVENT_TRACE_FLAG_SPLIT_IO", "EVENT_TRACE_FLAG_DRIVER", "EVENT_TRACE_FLAG_PROFILE", "EVENT_TRACE_FLAG_FILE_IO", "EVENT_TRACE_FLAG_FILE_IO_INIT"},
Values{"process", "thread", "img", "proccntr", "cswitch", "dpc", "isr", "syscall", "disk", "file", "diskinit", "dispatcher", "pf", "hf", "virtalloc", "net", "registry", "alpc", "splitio", "dri
@bsergean
bsergean / Dockerfile
Created November 20, 2019 19:16
simple websocket proxy written in python
FROM python:3.8.0-alpine3.10
RUN pip install websockets
COPY ws_proxy.py /usr/bin
RUN chmod +x /usr/bin/ws_proxy.py
EXPOSE 8765
CMD ["python", "/usr/bin/ws_proxy.py"]
🎬 Video Script: Draupadī’s Svayaṁvara – Sound-Guided Archery
Scene 1: Wide Establishing Shot – The Royal Grounds
Camera: Drone-like aerial sweep, panning over a large, open ceremonial ground.
Visuals: Thousands of spectators; raised platforms for nobles and kings; ceremonial banners fluttering.
Audio: Ambient crowd murmur, birds, distant temple bells.
Narration (VO):
"In the kingdom of Panchala, King Drupada arranged the most extraordinary svayaṁvara the world had ever seen. A challenge designed to reveal the greatest archer among all warriors."
Scene 2: The Fish & Water Setup
@phiberoptick
phiberoptick / pritunl-server-custom-ssl_manually
Last active December 14, 2025 18:43
Use custom SSL cert in Pritunl Server Community
Ignore all that craziness below. These can be set from the cli with the "pritunl" command.
The commands below can be used to get/set the values of the cert, key, port and if the :80 -> "app.server_port" redirect is active.
# Get current SSL server cert:
pritunl get app.server_cert
# Get current SSL server key:
pritunl get app.server_key
@arnav-kr
arnav-kr / Disabling Calling Name Presentation (CNAP).md
Last active December 14, 2025 18:49
Disabling Calling Name Presentation (CNAP)

Calling Name Presentation (CNAP)

[Skip to main content]

Short URL: go.arnv.dev/cnap

Recently the Calling Name Presentation (CNAP) Service has been introduced in India, which is gradually rolling out around the telecom circles.

CNAP as the name suggests is a suplimentary service enabled by default for all the users, it shows your name as per the KYC documents which you used for SIM card registration

Big O complexities for common methods of Java Collections and common sorting algorithms.
Complexity (Best to Worst)
===================================================================================================
O(1) < O(log n) < O(n) < O(n log n) < O(n^2) < O(2^n) < O(n!)
Collections
===================================================================================================