- Ubuntu 20.04
- CUDA 10.2
- Docker Latest
- Image: makesense.ai
- Text: doccano, prodigy, dataturks
VirtualBox command-line interface (VBoxManage) provides an easy way to convert raw disk image to the VDI/VMDK format and otherwise.
Let's assume that we have raw image of the sdb device:
$ sudo dd if=/dev/sdb of=./sdb.raw
To use it with VirtualBox we need to convert it to the VDI format:
$ VBoxManage convertdd sdb.raw sdb.vdi --format VDI
This file contains 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
// This class provides logic for inbound just-in-time provisioning of single | |
// sign-on users in your Salesforce organization. | |
// Here's all the info we're going to have. | |
// | |
// Employee Id | |
// First Name | |
// Last Name | |
// Active Flag |
This file contains 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
index | name | ctID | lastUpdate | |
---|---|---|---|---|
0 | DV281 | NCT03326752 | November 1, 2017 | |
1 | SD101 | NCT02521870 | December 7, 2017 | |
2 | AZD1419 | NCT02898662 | December 21, 2017 | |
3 | SD101+MK1966 | NCT02731742 | December 11, 2017 |
This file contains 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
34T62-N84MB-7DQGY-G7XGT-YTQ63 |
This file contains 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
; AMI | |
[GUID_FILE] | |
; ACPI tables | |
16D0A23E-C09C-407d-A14A-AD058FDD0CA1=ACPI | |
11D8AC35-FB8A-44d1-8D09-0B5606D321B9=DSDT | |
95DFCAE5-BB28-4d6b-B1E2-3AF3A6BF434F=PTID | |
FB045DB2-598E-485A-BA30-5D7B1B1BD54D=AOAC | |
60AC3A8F-4D66-4CD4-895A-C3F06E6665EE=iFfsAcpiTables | |
5B232086-350A-42c7-A70E-3497B5765D85=OEMSSDT | |
299141BB-211A-48a5-92C0-6F9A0A3A006E=PPMACPI |
This file contains 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
Import-Module -Name D:\Temp\ACME-posh\ACMEPowerShell.psd1 | |
$domain = "mydomain.com" | |
$certificiatePassword = "abcd1234" | |
$email = "[email protected]" | |
$vault = "D:\Vault\{0}\{1}" -f $domain, [guid]::NewGuid() | |
mkdir $vault | |
cd $vault | |
Initialize-ACMEVault -BaseURI https://acme-v01.api.letsencrypt.org/ | |
New-ACMERegistration -Contacts mailto:$email |
NewerOlder