Skip to content

Instantly share code, notes, and snippets.

I believe I've resolved the issue we're having generating PDFs from Labelview, it requires a small tweak to the Adobe PPD.
The file is located at C:\Windows\System32\spool\drivers\x64\3\ADPDF9.PPD
We would need to add another resolution to the list. If you could duplicate line 77, and change the resolutions on the new line to 203 as I've got in the attached image.
https://www.tenforums.com/installation-upgrade/102206-media-creation-tool-error-2.html?s=b591e53e2c9a2417769776943fcd28b0
I got it to work! It hanged for me at 50% as well, with the same error code. This is what I did:
Run cmd as admin and enter the following:
diskpart
list disk
select disk x (where x is the disk number of your usb)
clean
convert mbr
find . -name '*<what to search for>*' | while read f; do mv "$f" "${f//<what to replace with>/}"; done
Grilled Watermelon Burgers with Goat Cheese and Charred Orange-Fennel Gremolata
Makes 4 burgers
1 small orange
1 cup roughly chopped fennel fronds
1-2 fat cloves of garlic
2 Tbsp. white wine vinegar
1/4 tsp. kosher salt
Freshly cracked black pepper
Create a new layer with the green channel of the original image.
Reverse this layer and set to overlay
Do curves adjustment (steepen in darkest quarter) and apply a mask that is the inverse of the "green" layer.
Maybe about an hour? Letting the dough rise was probably the longest part.
Here’s the recipe:
BUTTERY SOFT PRETZEL BITES ★★★★★ 5 from 6 reviews
author: ALI prep time: 45 MINS cook time: 15 MINS total time: 1 HOUR yield: 12 SERVINGS 1X
DESCRIPTION This delicious homemade soft pretzel bites recipe is easy to make in about 1 hour with ingredients you likely already have on hand. See notes above for possible variations you can make too.
https://stackoverflow.com/questions/8957862/how-to-upgrade-git-to-latest-version-on-macos#8963503
It's simple if you already have Homebrew: Assuming you have homebrew installed, type the following:
brew install git
Once it is installed, then type the following two lines, which will set our path to the local git distro instead of the Apple one.
export PATH=/usr/local/bin:$PATH
git --version
@robsnider
robsnider / dsdt
Last active January 16, 2020 03:12
https://www.tonymacx86.com/threads/pressing-f4-when-booting-clover.140954/
RehabMan said:
F4 at the Clover bootloader screen dumps native ACPI files to EFI/Clover/ACPI/origin. In the guide you mention, these files are used by the ProBook Installer in later stages for automatic DSDT/SSDT patching.
You're right. They are native ACPI files. I exported my DSDT using linux "sudo cat /sys/firmware/acpi/tables/DSDT > DSDT.aml" and it matches /EFI/Clover/ACPI/origin/DSDT.aml. The two files are exactly the same.
I used to export the native DSDT in Mavericks using:
$ sudo perl -e 'open(CMD, "ioreg -lw0 \| grep DSDT|") or die; while(<CMD>) { chomp; if($_ =~ /\"DSDT\.?\d?\"=<([^>]*)>/) { $buff = $1; open(PIP, "|xxd -r -p > ~/Desktop/dsdt.aml") or die; print PIP "$1"; } }'
https://www.tenforums.com/installation-upgrade/52837-moving-recreating-efi-partition.html
- Boot the computer using the Windows 7/8/8.1/10 installation media.
- On the first screen, press SHIFT+F10 to bring up the command prompt.
- Run the following commands at the command prompt.
diskpart
list disk
select disk # Note: Select the disk where you want to add the EFI System partition.
list partition
apachectl -t -D DUMP_VHOSTS