Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

141 total results found

Building Projects

C++

If you use vim, you can bind CTRL-B to build a cmake project nnoremap <C-b> :!cmake -S . -B ./build/ && cmake --build ./build Building from Bash Within bash, you can easily build a single C++ source file into an executable with g++ -g -Wall source.cpp, this w...

Disk Management

Linux Interfaces

Show all disks, usage, and format type sudo df -T -h Filesystem Type Size Used Avail Use% Mounted on udev devtmpfs 930M 4.0K 930M 1% /dev tmpfs tmpfs ...

Exploring the Database

BookStack Development

I'm running my Bookstack in a docker container, so for me if I want to explore my database the first step is to get a bash terminal within the container. Lets say you've named your bookstack database container db_bookstack - the command to enter a bash termina...

Arch

Linux Distributions

Package Management Pacman First, you should check to verify your pacman-mirrors are configured to the nearest location. Do this manually by editing /etc/pacman.d/mirrorlist, or run sudo pacman-mirrors -g - [kapper@kanjaro ~ ]$ sudo pacman-mirrors -g INFO D...

Systemd Services

Linux System Admin

To define our own service with systemd, we need to create a daemon.service file. This is easily done within a few quick lines using vim, and should only take a few minutes. First, we need to locate the binary for the command we want to be executed as a servic...

Shlink

Docker Docker Compose Services

Shlink allows for passing of parameters to URLs using # for anchored links Shlink does not allow you to rename a shortlink. :( Overview Shlink is a URL shortner that can be hosted locally or in a docker container. It feels very segmented in the sense that ...

Dockerfile

Docker

Official Dockerfile Documentation Docker Images Docs is also a good place to get information on using various basic images which can be built off of. Below, we define a Dockerfile within some exclusive directory on our system where we want to work on our do...

Read The Docs

Self-Hosted Applications Documentation Generators

Features Static Generators Read The Docs (RTD) is a documentation generator that utilizes either Sphinx or MkDocs to generate the documentation site and theme, depending on your choice. The RTD GitHub houses the configurations and files that generates the ...

Project Settings

Game Development Unity

At first when opening the Unity editor I was a bit overwhelmed by the many options available, and it can be hard to get going without at least knowing how to configure the most basic of settings for a Unity project. In the sections below, I'll cover some simpl...

Scripting

Game Development Unity

Scripting in Unity uses C# and is very well documented. In the sections below, I'll Provide examples and edge cases where possible, and link to the relative documentation for quick reference. For a collection of classes and structs that are required for Unity...

Shortcuts

Game Development Unity

Since Unity has many features and shortcuts available that will widen the gap between an experienced developer and a beginner, I'll list some of my most frequently used shortcuts and tricks here. Though these can all be viewed and modified by opening the panel...

Prefabs

Game Development Unity

Since the Unity workflow is built around prefabs, I figured I'd document some specific use cases for the many features introduced in the Unity LTS 2019 release which added support for prefab variants and nested prefabs. On this page, I'll cover some good pract...

Post Processing

Game Development Unity

Good graphics are good. That's why I was excited to find adding Post Processing to my Unity 3D project was not only easy to do, but a huge improvement to the visuals within my scene. This enables common modern graphics features like Motion Blur, Ambient Occlus...

GitLab

Docker Docker Compose Services

Following the link below, GitLab provides a good refence for the many ways to deploy and configure various portions of a self hosted GitLab instance. fo Official Ubuntu Installation Instructions Versions GitLab offers two types of instances, SaaS and self-...

Authentication

Git

Authenticating with Git There are many ways to authenticate with Git when pushing to remote repositories. See some of the below for examples. SSH Keys You can use ssh-keygen to generate a key and the manually add the key to your GitHub profile. To do this, run...

Pushing / Merging Branches

Git Usage

Pushing If we run ... git push <remote> serverfix Git automatically expands the serverfix branchname out to refs/heads/serverfix:refs/heads/serverfix, where the sytax is local:remote.. You can use this same syntax when pusshing a local branch into a remote bra...

MAME Web Application

Self-Hosted Applications

MAME Documentation GitHub Repository Emscripten Javascript and HTML will help to run this emulator within a web application Overview To run mame as a web application, we need a few things.. ROMs to run MAME Source Code Clone &amp; Install Emscripten ...

Basics

C++

Maybe worth looking through these - Wikipedia: Index of C++ Idioms See Bjarne Strostrup's C++11 FAQ for several examples ACCU Recommended Reading C++ Core Guidelines GitHub repository You can get offline versions of cppreference, for me the most notable option...