javac <PATHS_TO_SRC>
https://winaero.com/blog/change-color-of-inactive-title-bars-in-windows-10/
- Open Registry Editor
- Navigate to
HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM
- Create a new
DWORD (32-bit) value
with nameAccentColorInactive
- Edit the value data to your preferred color in format (BBGGRR) (e.g.
ff0000
is blue)
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <math.h> | |
#define MAXNUM 100 | |
typedef struct Person | |
{ | |
double height; | |
double weight; | |
} Person; |
This guide provides instructions on how to recreate my workflow (December 2019). The instructions are specific to my system and the current date. I would generally recommend installing the latest version of any software.
....:::: Eric Nguyen@DESKTOP-NCV8RUN
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
// Learn more about F# at http://fsharp.org | |
open System | |
module BasicFunctions = | |
// Use 'let' to define a function | |
// Parenthesis are optional except for typed arguments | |
let sampleFunction1 x = x * x + 3 |
- Install MIT Scheme
- Install Guile
- Add
scheme
todotspacemacs-configuration-layers
- Add the following to your
dotspacemacs/user-config
(org-babel-do-load-languages
'org-babel-load-languages
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
Xft.dpi: 192 | |
Emacs.Background: black |