Install TigerVNC -
$ sudo apt install tigervnc-standalone-server
Configure VNC Server by running
| #!/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 [email protected]: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" | |
| ) |
| import java.io.FileDescriptor; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.OutputStream; | |
| import java.io.PrintStream; | |
| public class HelloWorld{ | |
| private static HelloWorld instance; | |
| public static void main(String[] args){ | |
| instantiateHelloWorldMainClassAndRun(); |