Skip to content

Instantly share code, notes, and snippets.

View audacioustux's full-sized avatar
🐧

Tanjim Hossain audacioustux

🐧
View GitHub Profile
@audacioustux
audacioustux / ohmyzsh.md
Last active January 6, 2021 07:52 — forked from yovko/ohmyzsh.md
ZSH (using Oh My ZSH) on Manjaro Linux

ZSH (using Oh My ZSH) on Manjaro Linux

0. If ZSH is not already installed on your Manjaro system you can do it with the command:

sudo pacman -Syu zsh

1. Install Oh My ZSH

@audacioustux
audacioustux / rayon-bench
Last active July 27, 2022 13:11
rayon-rs/rayon benchmark result
// cpu: Intel i5-3337U (4) @ 2.700GHz
// ram: 12G
// https://github.com/rayon-rs/rayon
running 120 tests
test life::test_life ... ignored
test matmul::test_matmul ... ignored
test matmul::test_splayed_counter ... ignored
test mergesort::test_merge_sort ... ignored
test factorial::factorial_iterator ... bench: 26,679,189 ns/iter (+/- 4,935,271)
@audacioustux
audacioustux / carl_hewitt_actor_model.md
Created December 28, 2020 01:02 — forked from rbishop/carl_hewitt_actor_model.md
Notes from Carl Hewitt on the Actor Model

Carl Hewitt on Actors

Actor - Fundamental unit of computation, a computation model - not just a form of concurrency

An Actor has three essential elements:

  • 1 - Processing - you have to get something done
  • 2 - Storage - you have to be able to remember things
  • 3 - Communication
@audacioustux
audacioustux / CoLeap-20.md
Last active June 22, 2024 05:15
Project Alo - 2020 Cohort

Advanced Software Engineering and Modern Architecture
2020 Cohort - Project Alo

Goal: Gain the necessary knowledge and skills to become a world-class software engineer and solution architect capable of architecting and developing robust, scalable, highly-available, flexible, extensible and maintainable frameworks, platforms and custom solutions.

LEVEL 1: FOUNDATIONS OF MODERN SOFTWARE ENGINEERING

  • Software Engineering - Basics (Evolution, Concepts and Principles)
Skype
Min: 6
Max: 32
Can contain: a-z A-Z 0-9 . , _ -
Other: Must start with a letter
Twitter
Min: 1
Max: 15
Can contain: a-z A-Z 0-9 _
#
# ~/.bashrc
#
[[ $- != *i* ]] && return
colors() {
local fgc bgc vals seq0
printf "Color escapes are %s\n" '\e[${value};...;${value}m'
printf "Values 30..37 are \e[33mforeground colors\e[m\n"
window:
dynamic_padding: true
decorations: none
startup_mode: Fullscreen
font:
normal:
family: Source Code Pro
style: SemiBold
bold:
family: Source Code Pro
<!DOCTYPE html>
<html>
<head>
<script>
let batch;
let SKU;
function setBatch() {
batch = document.getElementsByName("batchNo")[0].value.trim();
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
# ohmyzsh
ZSH_THEME="agnoster"
# zsh-autosuggestions
plugins=(git zsh-autosuggestions)
export DRI_PRIME=1
export EDITOR=/usr/bin/nano
# export NVM_DIR="$HOME/.nvm"