Skip to content

Instantly share code, notes, and snippets.

View mortymacs's full-sized avatar

Morteza (Mort) NourelahiAlamdari mortymacs

View GitHub Profile
@mortymacs
mortymacs / main.c
Created August 22, 2024 21:19
C - How to check nonnull parameter during compile time
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void action(char *a, char *b) __attribute__((nonnull(2)));
void action(char *a, char *b) {
if (a != NULL) {
printf("%s\n", a);
}
@mortymacs
mortymacs / sample.go
Created August 18, 2024 09:09
Go decorator pattern
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
type IFeature interface {
GetPrice() int
}
@mortymacs
mortymacs / sample.go
Created August 13, 2024 14:21
BBolt sample in Go
package main
import (
"fmt"
"log"
"go.etcd.io/bbolt"
)
func main() {
add_newline = false
format = "$sudo$username[](bg:#D81E5B fg:#82264f)$directory[](bg:#E23E58 fg:#D81E5B)$git_branch$git_commit$git_state$git_metrics[](fg:#E23E58 bg:#0E131F)$fill[](bg:#0E131F fg:#18212b)$nix_shell[](bg:#18212b fg:#2e294e)$status[](bg:#2e294e fg:#633359)$cmd_duration[](bg:#633359 fg:#973c64)$jobs[](bg:#973c64 fg:#E23E58)$git_status$line_break$character"
[character]
error_symbol = "[ ](red)"
format = "$symbol"
success_symbol = "[ ](purple)"
vimcmd_symbol = "[ ](green)"
[cmd_duration]
@mortymacs
mortymacs / a.c
Created April 11, 2024 16:45
Release heap memory when it goes out of scope in C
// gcc a.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void clean_name(char **name) {
printf("clean clean!");
free(*name);
}
@mortymacs
mortymacs / aggregation.sh
Last active February 5, 2024 22:26
Sample AWK
#!/bin/sh
# Iterate over a csv file and aggregate items.
# in BEGIN we define global variables.
# in the middle block we define the logic.
# in the END we define the conclusion logic like prints etc.
# NR>1 means ignore the first line.
awk -F "," 'BEGIN {
delete visited_items;
}
NR>1 {
@mortymacs
mortymacs / shell.nix
Created January 19, 2024 15:09
Shell nix empty structure
{ pkgs ? import <nixpkgs> {} }:
# { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-23.11.tar.gz") {} }:
with pkgs;
mkShell {
nativeBuildInputs = [
];
@mortymacs
mortymacs / initdb.json
Last active January 16, 2024 14:55
DynamoDB aws-cli sample
{
"TableName": "Users",
"KeySchema": [{
"AttributeName": "ID",
"KeyType": "HASH"
}],
"AttributeDefinitions": [{
"AttributeName": "ID",
"AttributeType": "S"
}],
@mortymacs
mortymacs / readme.md
Created December 22, 2023 20:32
localstack and aws-cli local config

Run localstack docker:

docker run -d --rm \
                -p 4566:4566 -p 4510-4559:4510-4559 \
                --name localstack \
                localstack/localstack

Add aws cli config:

@mortymacs
mortymacs / CMakeLists.txt
Last active November 30, 2024 20:08
Sample cmake thirdparty + ide for a C++ project
cmake_minimum_required(VERSION 3.25.0)
project(HelloWorld)
# Enable for IDE
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Download thirdparty
include(FetchContent)
FetchContent_Declare(
tomlplusplus