This guide will demonstrate how to mirror an SVN into a Git repo. You're the target audience if you're an SVN user, just getting started with Git and need to coax your project team over to Git.
The branching scenario has been simplified for clarity.
| /Library/Application\ Support/VMware\ Fusion/vmrun | |
| vmrun version 3.1.1 build-282344 | |
| Usage: vmrun [AUTHENTICATION-FLAGS] COMMAND [PARAMETERS] | |
| AUTHENTICATION-FLAGS | |
| -------------------- |
| function IsPermanentConnection(const ALocalName: string): Boolean; | |
| type | |
| PNetResourceArray = ^TNetResourceArray; | |
| TNetResourceArray = array [0 .. MaxInt div SizeOf(TNetResource) - 1] of TNetResource; | |
| var | |
| I, BufSize, NetResult: Integer; | |
| Count, Size: LongWord; | |
| NetHandle: THandle; | |
| NetResources: PNetResourceArray; | |
| RemoteNameInfo: array [0 .. 1023] of Byte; |
| program Project1; | |
| {$APPTYPE CONSOLE} | |
| uses | |
| System.SysUtils, System.Classes, System.Types, Vcl.Dialogs; | |
| type | |
| TStringListEx = class(TStringList) | |
| public |
| type | |
| TObjectHelper = class helper for TObject | |
| public | |
| class function &&op_LogicalOr<T: class>(A, B: T): T; static; | |
| end; | |
| class function TObjectHelper.&&op_LogicalOr<T>(A, B: T): T; | |
| begin | |
| if A <> nil then | |
| Result := A |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide] | |
| "PreferExternalManifest"=dword:00000001 |
| #!/bin/sh | |
| # This script will prompt for sender domain and then purge the mail queue | |
| # Requires qtool.pl | |
| echo "Type the sender domain you would like to purge, followed by [ENTER]:" | |
| read domain | |
| echo "Got it. I'll purge all messages from $domain" |
This explains the set up of our very basic status screen to displays Google calendars here at booncon.
Download and put the most current https://www.raspberrypi.org/downloads/raspbian/ image to an SD Card. On OSX that works great with http://www.tweaking4all.com/hardware/raspberry-pi/macosx-apple-pi-baker/, just use the restore option and select the unzipped image file.
After the first boot, the raspi-config utility should load up.
| unit uDesignNote; | |
| interface | |
| uses | |
| System.SysUtils, System.Classes, Vcl.Forms, Vcl.StdCtrls; | |
| type | |
| TDesignNote = class(TComponent) | |
| private |
There aren't many tutorials about this, the only tutorials I've found were about passing through entire PCIe cards to VMs, or refered to old ESXI versions (below 6.5) that used a more comprehensive desktop client instead of the web app. In v6.5, the web app was introduced and the desktop client was deprecated. This tutorial shows you how to pass SATA HDDs to the virtual machine on VMWare ESXI 6.5. This tutorial is partially based on VMWare's own KB and the now deprecated Forza IT blog post.
We attach the SATA HDDs as an RDM (Raw Device Mapper) into an existing virtual disk on command line, then on the web app, we attach a new SCSI controller to the VM, and attach the newly created RDM as an "existing HDD" to the newly created SCSI controlle