Sunday, April 11, 2021

View all packages installed from overlay in Gentoo Linux

To easily view which packages were installed from which overlay, using app-portage/eix:

eix --installed-in-overlay <optional overlay name>

If you do not specify an overlay name, it will show all packages from all overlays.

Thursday, October 8, 2020

SQL Server Management Studio (SSMS) 18.x won't save server passwords

Starting around SSMS 18.x, Microsoft changed the way credentials were stored. This caused any saved passwords from previous versions to stop working in the server connection dialog popup.

To fix this, just delete the servers from the drop-down list. Alternatively, exit SSMS, clear out the saved servers in C:\Users\%username%\AppData\Roaming\Microsoft\SQL Server Management Studio\18.x\UserSettings.xml and then restart.

If you use registered servers, the saved passwords will still work and will automatically be saved into the popup. If not, you'll have to type them in again.

Friday, October 2, 2020

Force Windows to use all available cores to process NGen queue

If it seems like mscorsvw.exe is running forever, you can use this script from the official .NET github repo to force ngen to process the queue using all available CPU power.

Monday, September 21, 2020

Copy & Paste does not work in Firefox on Google Docs

Firefox blocks certain clipboard events by default. This breaks some Google Docs functionality. To reenable it, go to about:config and set dom.event.clipboardevents.enabled to true

Please be aware that this is a global setting and allows all websites access to your clipboard, which is a potential privacy/security risk.

Prevent Gentoo Portage from unmerging kernel sources during a world upgrade

Portage typically unmerges all but the newest kernel sources, while I'd prefer to leave the sources to the running kernel and backup kernel installed. I don't reboot very often and I don't bother to build an updated kernel until I'm ready to reboot, just in case there are any issues. I also like to keep the sources to the previous kernel around just in case I need to revert.

A tip posted on the Gentoo user mailing list in 2009 by Mike Kazantzev shows how to accomplish this:

First, define a kernel set in /etc/portage/sets.conf:

[kernels]
class = portage.sets.dbapi.OwnerSet
world-candidate = False
files = /usr/src

Tthen add the @kernel set to your /var/lib/portage/world_sets file.

By doing this, you will need to manually unmerge the specific kernel source packages you want to remove, but none of them will ever be removed otherwise.

Determining the manufacturer and recording medium of a blank CD or DVD

Every recordable CD and DVD actually has a little bit of data on the blank disc. On CDs this is called the ATIP (Absolute Time in Pregroove) and contains things like the manufacturer, length, dye type, and rated speed. This information is used by the disc drive to choose the optimal burning strategy. 

Keep in mind this info can be faked (Hong Kong manufacturers putting fake TY01 codes on their discs was a thing when Taiyo Yuden discs were in high demand). And the dye type is not necessarily the actual dye type used, but the hint to the drive about which burning mode to use (I've read that azo discs are burned using the cyanine strategy).

To view the atip of a CD-R/CD-RW on Linux using the cdrecord package:

# cdrecord -atip

Recordable DVDs have a similar area called the Media Identification Code. To read this information on Linux using the dvd+rw-tools package:

# dvd+rw-mediainfo /dev/sr0

SQL: Get just the date part of a DATETIME on SQL Server 2005

In Microsoft SQL Server 2008+ there is a DATE type, and getting just the date portion of a DATETIME is as easy as a cast or convert to DATE. But, at my job, we're still using SQL Server 2005. What then?

A common technique is to cast to a float, which gives you a number where the part to the left of the decimal point is the date and the part to the right of the decimal point is the time. Wrap that in a FLOOR function to round down to the nearest whole number and you have effectively truncated the time portion. You can then cast that back to a DATETIME.

I have, however, read that doing it that way can be inefficient as it won't use DATETIME indexes. Another approach that it supposed to be more efficient is to use DATEADD and DATEDIFF like so:

1
SELECT DATEADD([dd], 0, DATEDIFF([dd], 0, GETDATE()));

Again, there is no reason to do that unless you are on a Microsoft SQL Server version prior to 2008.

Easily straighten a crooked scan or photo in GIMP

To easily straighten a crooked scan or photo in GIMP, don't bother with manual rotation and rulers. Just use the Measure tool (Shift-M) and draw a line along a straight edge or horizon line of your image. Then click the "straighten" button and it will rotate the image to match the line you just drew.

Determining where a CD or DVD was manufactured

On factory-pressed CDs (and some DVDs), on the shiny side of the disc near the center spindle ring there is usually text, known as the matrix string. Old vinyl records usually had writings in the same area. You can sometimes determine where a disc was mastered or pressed by the text contained in this area. For example a music CD with the text "EMI JAX" was manufactured at EMI's manufacturing plant, located in Jacksonville, Illinois, just west of Springfield. Additionally there are sometimes text stamped or etched into the plastic mould such as "MADE IN USA BY PMDC" (indicating the disc was made by PolyGram Manufacturing And Distribution Centers in Grover, North Carolina). A search for the text on Discogs will usually yield useful information.

There was no standard to how any of that text was formatted and often it was not obvious where the disc was made. Beginning in 1994, Philips and the International Federation of the Phonographic Industry created a system of markings called a SID code (Source Identification). The goal of this was to be able to trace a disc back to its origins to fight piracy/counterfeiting. The SID code always begins with the letters "IFPI" followed by a 4- or 5-digit code. There are two types of SID codes. The matrix SID code (present in the matrix area of the disc) identifies where the glass master of the disc was cut. The Mould SID code (in the plastic area) identifies where the disc was pressed/stamped.

The most thorough list of SID codes I have found is on the Musik-Sammler wiki though again a search of Discogs often also provides clues.

Because of consolidation, a decline in CD sales and an increase in DVD sales, the disc pressing plants changed ownership quite often during the 90s and early 2000s. By identifying the codes or matrix text on your disc, it can help you narrow down when it was actually manufactured and whether it is an original release or a repress/reissue from later years. Sometimes the artwork and copyright dates are identical and the only difference the original pressing and a later reissue is on the matrix/SID codes.

There are pressing plants in Russia and China and other places that do not conform to this standard, so the lack of SID code does not automatically mean the disc is from before 1994. But the presence of one means it is surely no older than 1994.

SQL: TRY_CAST alternative for old versions of SQL Server

In modern versions of Microsoft SQL Server there is a TRY_CAST function which returns NULL if the type cast fails, and returns the converted value if it succeeds. This is helpful if you're trying to format numbers from non-sanitized input and somebody put malformed data into a field.

At my job, I'm still dealing with SQL Server 2005 which does not provide this function. An alternative that I found online was to use XML to accomplish the same result:


1
CAST('' AS XML).value('sql:column("ItemHeight") cast as xs:decimal ?', 'decimal(28,10)')

SQL: Replace repeated spaces with a single space

In SQL dialects that provide a REPLACE function you can replace instances of repeated spaces with a single space (you may replace CHAR(7) with another character that you know won't appear in your dataset):
1
SELECT REPLACE(REPLACE(REPLACE('some   string    with         many     spaces', '  ', ' ' + CHAR(7)), CHAR(7) + ' ', ''), ' ' + CHAR(7), ' ');