Skip to content

Instantly share code, notes, and snippets.

View BoQsc's full-sized avatar
💭
I may be slow to respond.

Feldwor BoQsc

💭
I may be slow to respond.
  • Public Domain
  • Baltic States
  • 09:15 (UTC +03:00)
View GitHub Profile
@LateralLines
LateralLines / Top 10,000 Words in English Language
Last active June 7, 2022 23:20
10,000 most commonly used words in the english language. Note that this list is not censored, so if you are to use this as a reference for a profanity-sensitive environment, you may want to filter through it first.
the of and to a in for is on that by this with i you it not or be are from at as your all have new more an was we will home can us about if page my has search free but our one other do no information time they site he up may what which their news out use any there see only so his when contact here business who web also now help get pm view online c e first am been would how were me s services some these click its like service x than find price date back top people had list name just over state year day into email two health n world re next used go b work last most products music buy data make them should product system post her city t add policy number such please available copyright support message after best software then jan good video well d where info rights public books high school through m each links she review years order very privacy book items company r read group sex need many user said de does set under general research university january mail full map reviews program life know games way days man
Windows Registry Editor Version 5.00
; Created by: Shawn Brink
; http://www.sevenforums.com
; Tutorial: http://www.sevenforums.com/tutorials/47415-open-command-window-here-administrator.html
[-HKEY_CLASSES_ROOT\Directory\shell\runas]
@glem0
glem0 / analyse_mbr.c
Last active April 28, 2023 14:39
A little program to analyse the mbr of any drive on your system, and provide information about the partitions
/* analyse_mbr.c by glem */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#define MBR_SIZE 512
#define NUM_PARTITIONS 4
/* offsets within the MBR */
@weihanchen
weihanchen / ip_address.sh
Created November 28, 2017 00:58
Ubuntu
# Find ip exclude non usage
$ ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | grep 'Bcast' | grep -v '0.0.0.0' | cut -d: -f2 | awk '{ print $1}'
@BrendonKoz
BrendonKoz / auto-caption-tools.md
Last active March 10, 2025 15:43
Automatic Captioning Tools
@hoehrmann
hoehrmann / c11-lexer-grammar
Created June 22, 2018 22:10
C11 Lexer grammar
token = _
/ keyword
/ identifier
/ constant
/ string-literal
/ punctuator
preprocessing-token = _
/ header-name
/ identifier
@p3x-robot
p3x-robot / linux-get-ipv6-address.sh
Created January 19, 2020 07:24
Linux IPv6 addresses
sudo ip addr show dev enp1s0f2 | sed -e's/^.*inet6 \([^ ]*\)\/.*$/\1/;t;d'
@eddiez9
eddiez9 / win_defend.bat
Created March 11, 2020 04:33
Delete definitions for Windows Defender with admin so you can do things.
cd "C:\Program Files\Windows Defender\" && MpCMDRun.exe -removedefinitions -all
@WiVi71
WiVi71 / BITS_DN.CMD
Last active December 28, 2023 01:13
Simple batch file script to download file with progress bar using BITSAdmin
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
FOR /F %%A IN ('COPY /Z "%~DPF0" NUL') DO SET "CR=%%A"
FOR /F %%B IN ('ECHO PROMPT $H ^| CMD') DO SET "BS=%%B"
(SET \N=^
%=_Empty_Line_=%
)
:BITS_DN
IF NOT [%2] == [] IF [%3] == [] GOTO BITS_SET
@tcoppex
tcoppex / c_nostd.txt
Last active July 26, 2025 17:10
Writing C software without the standard library [Linux Edition] - Franc[e]sco's Gopherspace
###################################################################
Writing C software without the standard library
Linux Edition
###################################################################
There are many tutorials on the web that explain how to build a
simple hello world in C without the libc on AMD64, but most of them
stop there.
I will provide a more complete explanation that will allow you to
build yourself a little framework to write more complex programs.