sudo pacman -Syu zsh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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) |
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Skype | |
| Min: 6 | |
| Max: 32 | |
| Can contain: a-z A-Z 0-9 . , _ - | |
| Other: Must start with a letter | |
| Min: 1 | |
| Max: 15 | |
| Can contain: a-z A-Z 0-9 _ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # ~/.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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window: | |
| dynamic_padding: true | |
| decorations: none | |
| startup_mode: Fullscreen | |
| font: | |
| normal: | |
| family: Source Code Pro | |
| style: SemiBold | |
| bold: | |
| family: Source Code Pro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| let batch; | |
| let SKU; | |
| function setBatch() { | |
| batch = document.getElementsByName("batchNo")[0].value.trim(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; -*- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ohmyzsh | |
| ZSH_THEME="agnoster" | |
| # zsh-autosuggestions | |
| plugins=(git zsh-autosuggestions) | |
| export DRI_PRIME=1 | |
| export EDITOR=/usr/bin/nano | |
| # export NVM_DIR="$HOME/.nvm" |