Skip to content

Instantly share code, notes, and snippets.

View DoCTheBest01's full-sized avatar
πŸ‘¨β€πŸ’»
I code the fuck out of you

DoCTheBest DoCTheBest01

πŸ‘¨β€πŸ’»
I code the fuck out of you
View GitHub Profile
@polarspetroll
polarspetroll / README.md
Last active November 1, 2025 02:24
ای پی ؒی ΨΉΩ…ΩˆΩ…ΫŒ برای Ω‚ΫŒΩ…Ψͺ Ψ―Ω„Ψ§Ψ±
πŸš¨Ψ§ΫŒΩ† ای پی ؒی فعلا Ψ―Ψ± Ψ―Ψ³ΨͺΨ±Ψ³ Ω†ΫŒΨ³Ψͺ🚨

ای پی ؒی ΨΉΩ…ΩˆΩ…ΫŒ Ω‚ΫŒΩ…Ψͺ Ψ―Ω„Ψ§Ψ±


Ω†Ψ­ΩˆΩ‡ Ψ§Ψ³Ψͺفاده

@lmcarreiro
lmcarreiro / Program.cs
Created February 21, 2019 16:41
Get list of Access Point (BSSID and Signal) using C#
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
@WangYihang
WangYihang / port-forwarding.py
Last active December 19, 2024 02:20
port forwarding via python socket
#!/usr/bin/env python3
# Tcp Port Forwarding (Reverse Proxy)
# Author : WangYihang <wangyihanger@gmail.com>
'''
+-----------------------------+ +---------------------------------------------+ +--------------------------------+
| My Laptop (Alice) | | Intermediary Server (Bob) | | Internal Server (Carol) |
+-----------------------------+ +----------------------+----------------------+ +--------------------------------+
| $ ssh -p 1022 carol@1.2.3.4 |<------->| IF 1: 1.2.3.4 | IF 2: 192.168.1.1 |<------->| IF 1: 192.168.1.2 |
| carol@1.2.3.4's password: | +----------------------+----------------------+ +--------------------------------+
@samsheffield
samsheffield / UnityCodingCheatSheet.txt
Last active October 27, 2025 21:28
Unity C# Cheat Sheet
// Unity C# Cheat Sheet
// I made these examples for students with prior exerience working with C# and Unity.
// Too much? Try Unity's very good tutorials to get up to speed: https://unity3d.com/learn/tutorials/topics/scripting
@engelmarkus
engelmarkus / arp.asm
Created March 15, 2016 00:04
Sending an ARP packet using x86 assembly
; Just for fun.
; Compile with
; nasm -f elf32 -o arp.o arp.asm
; gcc -m32 -o arp arp.o
; Run it
; sudo ./arp
BITS 32
SEGMENT .data
@oleavr
oleavr / frida-core-1.0.vapi
Last active February 16, 2025 01:28
The frida-core API consumed by bindings like frida-python, frida-qml, etc.
[CCode (cheader_filename = "frida-core.h", cprefix = "Frida", lower_case_cprefix = "frida_")]
namespace Frida {
public static void init ();
public static void shutdown ();
public static void deinit ();
public static unowned GLib.MainContext get_main_context ();
public class DeviceManager : GLib.Object {
public DeviceManager ();
@CiprianSpiridon
CiprianSpiridon / Laravel-Blade-Template-Cheatsheet
Last active January 30, 2025 09:11
Laravel Blade Template Cheatsheet
{{ $var }} - Echo content
{{ $var or 'default' }} - Echo content with a default value
{{{ $var }}} - Echo escaped content
{{-- Comment --}} - A Blade comment
@extends('layout') - Extends a template with a layout
@if(condition) - Starts an if block
@else - Starts an else block
@elseif(condition) - Start a elseif block
@endif - Ends a if block
@vratiu
vratiu / .bash_aliases
Last active October 20, 2025 00:46
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset
@blachniet
blachniet / AttackOfTheTray.cs
Last active April 18, 2023 13:58
Open and close cd tray from C#
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace AttackoftheTray
{
class Program
{
static void Main(string[] args)
{