Skip to content

Instantly share code, notes, and snippets.

View angelskieglazki's full-sized avatar
🖤
:)

angel eyes angelskieglazki

🖤
:)
  • Moscow
View GitHub Profile
@Ladicle
Ladicle / README.org
Last active June 19, 2024 19:40
Emacs Configuration ver. 2022

Ladicle’s Emacs Configuration ver.2022

https://user-images.githubusercontent.com/1159133/156761456-4be104ae-4cb3-420e-81c7-8abd00497d51.png

Outline

Package Management (link)

  • leaf-keywords
    • el-get
    • hydra
  • package-utils
@simonrenger
simonrenger / memoy_managment_cpp_resource_list.md
Last active May 9, 2024 08:27
C++ Memory Management Resource List
@john-preston
john-preston / test.cpp
Last active August 4, 2021 16:24
Generic weak_ptr implementation.
#include "weak_ptr.h"
#include <cassert>
class T : public base::has_weak_ptr {
};
class NonEmpty {
int a = 0;
};
@mishurov
mishurov / syntax.s
Last active June 26, 2024 16:26
AT&T assembly syntax and IA-32 instructions
# --------
# Hardware
# --------
# Opcode - operational code
# Assebly mnemonic - abbreviation for an operation
# Instruction Code Format (IA-32)
# - Optional instruction prefix
# - Operational code
@nikAizuddin
nikAizuddin / NASMx86: Allocate heap memory
Created October 12, 2014 22:58
Example using brk() system call for dynamic memory allocations
; 1 2 3 4 5 6 7
;01234567890123456789012345678901234567890123456789012345678901234567890
;=======================================================================
;+---------------------------------------------------------------------+
;| |
;| Example using brk() system call for dynamic memory allocations. |
;| |
;| DON'T CONFUSE that brk() used in C Function is different with brk() |
;| systemcall (systemcall 45 for x86 ASM). |
;| |