Install TigerVNC -
$ sudo apt install tigervnc-standalone-server
Configure VNC Server by running
| Hey, all -- | |
| I wanted to let you know that I'm planning on retiring from work in the public hacking scene. | |
| Atmosphere (and my work on the Switch) have been an enormous labor of love for me for the past eight and a half years, and it's been an honor for me to dedicate so much of my life towards this kind of work. | |
| That said, I am getting older. I find myself with less time to dedicate towards it, more responsibilities, and a changing personal life. | |
| Particularly with my hoping to have kids in a foreseeable time horizon, I'm thinking I have to re-evaluate how much time I can spend on hobby projects. |
| #!/usr/bin/env osascript -l JavaScript | |
| const App = Application.currentApplication(); | |
| App.includeStandardAdditions = true; | |
| const kCFPrefsFeatureFlagsDir = '/Library/Preferences/FeatureFlags/Domain'; | |
| const kCFPrefsFeatureEnabledKey = 'Enabled'; | |
| const kUIKitDomainPrefsTemporaryPath = '/tmp/UIKit.plist'; | |
| const kUIKitRedesignedTextCursorKey = 'redesigned_text_cursor'; |
All license keys and activation files have been removed in accordance with GitHub's Terms of Service.
Only official trial installers are available. Bring your own license (BYOL).
You should see a NEW serial port (like /dev/ttyUSB0) been added to /dev. Remember that for the later steps.
If not, please refer to this GitHub repo for building and installing the driver for CH341 USB to Serial Converter chips.
| #!/bin/bash | |
| # SQL Server Driver Installer for Laravel Homestead | |
| # | |
| # This script downloads, compiles, and installs the PHP 7 extension | |
| # files for both the native sqlsrv and the PDO pdo_sqlsrv drivers. | |
| # Get the Microsoft Driver Source Code from Github | |
| cd ~ | |
| git clone https://github.com/Microsoft/msphpsql.git | |
| cd msphpsql |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare git@github.com:usi-systems/easytrace.git
| // Untar takes a destination path and a reader; a tar reader loops over the tarfile | |
| // creating the file structure at 'dst' along the way, and writing any files | |
| func Untar(dst string, r io.Reader) error { | |
| gzr, err := gzip.NewReader(r) | |
| if err != nil { | |
| return err | |
| } | |
| defer gzr.Close() |
| package main | |
| import ( | |
| "crypto/sha1" | |
| "fmt" | |
| "io" | |
| "math" | |
| "os" | |
| ) |