My thoughts and tips from my work life.
Sunday, March 28, 2021
Tuesday, July 31, 2018
Fun with Lipsum and Google Translate
Original Text:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis egestas mattis massa ut tristique. Nunc euismod malesuada blandit. Praesent lacinia consequat gravida. Praesent rhoncus nunc ut odio pulvinar in suscipit enim vestibulum. Vivamus non justo pellentesque risus elementum interdum. Vestibulum ornare sapien in nisl feugiat pellentesque. Phasellus ut mi urna. Ut sit amet metus augue. In posuere pellentesque mattis. Curabitur ullamcorper placerat lectus sagittis aliquet. Morbi faucibus sem id diam mattis non auctor tortor adipiscing. Proin a massa congue lectus elementum accumsan ac ut sem. Curabitur blandit augue eu turpis tempus eu lobortis eros consequat. Donec sed tempus est.
Nulla interdum, lectus quis posuere ultrices, metus erat fringilla elit, vitae sollicitudin dolor ante vel risus. Donec tempus pulvinar venenatis. Nam ac eleifend erat. Praesent bibendum purus vel neque tempor quis tincidunt elit cursus. Etiam id eros urna, sit amet volutpat elit. Nullam non metus orci, eu adipiscing turpis. Nunc gravida lobortis quam ut adipiscing. Aliquam ultrices, purus sed sollicitudin malesuada, nibh lacus lacinia elit, eu euismod nisi felis at ligula. Integer eu lectus sed nisl tristique cursus. Mauris lectus massa, rhoncus et dignissim a, tempor vel quam. In tortor nisl, dictum id consequat at, cursus sit amet dolor. Vivamus ac massa at odio aliquam venenatis ac vel leo.
Google Translate Automatically "Translated" from Latin in Chrome 67 on Windows 10 with the Google Translate Extension installed. I'm still trying to figure out what exactly is the Latin word for CNN:
And now I'm curious if someone out there runs this same test if they get a different result set.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mass poverty lot of homework to be sad. Performance now malesuada afternoon. Present skirt photography pregnant. CNN now present in order to receive the hated volleyball court. Live element, not just kids smile sometimes. Sapien eu football players betting on nutrition. Boat as my pot. To carrots fear propaganda. Put kids in real estate. Chat ullamcorper real estate arrows and bananas. Soccer team salad diam real estate is the author of macro customer. Planning graduated from the microwave mass element layer and the salad. Chat sit propaganda football high school football season carton peanut products. But until it is too late.
No protein, graduated one basketball set, fears of ecological cleaning, care of the pain and laughter. Until the time of volleyball blockage. In fact, it was ac Vestibulum. Chili drink or not present at any game and running. It also is reality urn, carrots methods. Does not meet the Nullam orci, eu adipiscing turpis. How to get pregnant now carton customer. The latest basketball, chili and care expected, nibh skirt competition, but football Performance at gas networks. An entire football players graduated, but the sad cycle. Graduated largest mass, grilled and soccer from, or how long. The temperature of Medicine, said that development at the cycle of products. And a poisonous hatred and mass live at or refrigerator.
Tuesday, June 2, 2015
I'm Still Around
Here's a few of the things I've been working on for the last two years:
- SCCM 2012
- MDT 2013
- Windows Image Creation and Deployment using MDT and SCCM and without those two using DISM/ImageX/GImageX
- Mac OS X image creation and deployment using DeployStudio
- Active Directory and Exchange Administration
- Exchange 2010 -> 2013 on-premises upgrade
- Sharepoint 2013 farm installation
- Database migration to SQL Server 2012
- XMPP-based IM server installation and maintenance
- Virtualization with Hyper-V
- High performance storage design, installation, configuration and operation (Dell|Equallogic, Lenovo, EMC)
- iPad deployment using Apple's DEP
- Enterprise Chromebook/Chrome OS Deployment
- Scripts and Tools to manage Chromebook deployments
- Network Management (Cisco, Ruckus, Meraki)
Sunday, January 27, 2013
Setting up WordPress 3.5.1 on 1and1 Windows/MSSQL Hosting Plan
You're likely to run into an error similar to the following.
Call to undefined function mysql_free_result() in E:\kunden\homepages\19\<your user id>\www\mysite\wp-includes\wp-db.php on line 1126Edit the file wordpress-root-dir\wp-includes\wp-db.php look for the following code block:
if ( is_resource( $this->result ) )
mysql_free_result( $this->result );
Comment both lines out otherwise mysql_free_result will always return an error:
//if ( is_resource( $this->result ) )
//mysql_free_result( $this->result );
Leave everything else in the function as is, including the closing curly brace "}" on the line below.If you encountered this error while running install.php you will need to login to the MSSQL admin panel, delete the tables that were created by the WordPress install.php script and re-run install.php.
Wednesday, March 14, 2012
Configuring Google NoSSLSearch for Windows DNS Servers
Add a single CNAME record with a blank alias name and “nosslsearch.google.com.” for the FQDN for target host. The trailing dot after “com” is important.

Clear your DNS server cache by right-clicking on your server in DNS manager and selecting Clear Cache.
When your clients request www.google.com, your DNS server will direct the client to nosslsearch.google.com instead of www.l.google.com.
Sample output from NSLOOKUP after configuring this DNS zone:
Hope this helps.
C:\Windows\system32>nslookup www.google.com
Server: dc02.domain.local
Address: 10.254.1.2
Name: nosslsearch.google.com
Address: 216.239.32.20
Aliases: www.google.com
Monday, December 19, 2011
Fun with AirPrint, Bonjour and DNS Service Discovery (dns-sd) for iOS
High-Level Outline:
- Create new DNS zone (ex: bonjour.yourdomain, this domain does not have to have a public TLD. For instance, I used print.test, and will refer to the zone as print.test in this document)
- Add new DNS zone as published search suffix in DHCP
- Install CUPS server (I used Ubuntu Linux Server v11.10)
- Configure a shared printer queue in CUPS for printer1 named printer1_q
- Add an A record for CUPS server to print.test dns zone (assumes CUPS server is at 10.0.0.10
- cups1 IN A 10.0.0.10
- Add b._dns-sd._udp and lb._dns-sd._udp PTR record
- b._dns-sd._udp IN PTR print.test.
- lb._dns-sd._udp IN PTR print.test.
- Add PTR records for printer
- _universal._sub._ipp._tcp IN PTR printer1._printer._tcp.print.test.
- _cups._sub._ipp._tcp IN PTR printer1._printer._tcp.print.test.
- Add SRV records for CUPS printer queue named printer1_q on the print server
- printer1._printer._tcp IN SRV 0 0 631
- Add TXT record for CUPS printer queue named printer1_q on the print server
- printer1._printer._tcp IN TXT (
"txtvers=1"
"qtotl=1"
"rp=printers/printer1_q"
"adminurl=http://cups1.print.test:631/printers/printer1_q"
"ty=HP Laserjet Color 4650 DN"
"product=(GPL Ghostscript)"
"transparent=t"
"copies=t"
"duplex=t"
"color=t"
"pdl=application/octet-stream,application/pdf, application/postscript,image/jpeg ,image/png,image/urf"
"URF=none" )
- Always set URF=none, it must be present for the record to work
- The value from the "ty" key is displayed in the iOS printer search results as the printer name
- The value from the "note" key is displayed under the printer name in the iOS printer search results
- Feature descriptors are added in a key=
where is T (for true) or F (for false). If a key is not specified or is blank, the value is assumed to be false. Optional keys include: - Duplex: enable duplex (two-sided) printing
- Staple: can staple
- Copies: supports printing more than one copy of a document
- Collate: can collate (group) pages
- Punch: can punch
- Bind: can bind (assume this is saddle stitch or other binding method)
- Sort: printer includes a sorter
- The printer-type key appears to reference bit mask data type. I have not found a description for this enumeration.
- I have not found documentation printer-state enumeration. Most examples set this to 3
- If your print server requires authentication, add the following literal string to the TXT record : "air=username,password"
IETF Draft: DNS-Based Service Discovery
http://files.dns-sd.org/draft-cheshire-dnsext-dns-sd.txtManually Adding DNS-SD Service Discovery Records to an Existing Name Server
http://www.dns-sd.org/ServerStaticSetup.html
Apple Developer Documentation: Bonjour Operations
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/NetServices/Articles/NetServicesArchitecture.html#//apple_ref/doc/uid/20001074-SW1
Apple Support Discussion: Airprint Information and FAQ
https://discussions.apple.com/thread/2658560?start=15&tstart=0
Apple Support Discussion: Airprint in the Enterprise across subnets
https://discussions.apple.com/thread/2751128?start=0&tstart=0
Bonjour Printing Specification
http://devimages.apple.com/opensource/BonjourPrinting.pdf
Printing from the iPad without buying a new printer
http://jcostom.wordpress.com/2011/03/16/printing-from-the-ipad-without-buying-a-new-printer/
AirPrint and Linux
http://www.finnie.org/2010/11/13/airprint-and-linux/
Airprint across subnets
https://sites.google.com/site/iwastepaper/
CUPS & AirPrint from iPhone or iPad
http://element.edoceo.com/howto/cups-airprint
Automatically generate AirPrint Avahi service files for CUPS printers
http://atxconsulting.com/blog/tjfontaine/2010/11/21/automatically-generate-airprint-avahi-service-files-cups-printers
AirPrint with Ubuntu 10.10
http://hartlessbydesign.com/blog/view/197-airprint-with-ubuntu-1010
Monday, November 8, 2010
Exchange 2010 Development
Exchange 2010 Developer webcasts
http://msexchangeteam.com/archive/2009/10/12/452842.aspx
Exchange 2010 SP1 SDK packages
http://msexchangeteam.com/archive/2010/10/29/456775.aspx
More Developer webcasts
http://msexchangeteam.com/archive/2009/11/05/453052.aspx
MSDN Guide to Exchange 2010 SP1 Development Technologies
http://msdn.microsoft.com/en-us/library/dd877025(EXCHG.140).aspx
Friday, September 17, 2010
JavaScript Speed Comparison IE9 Beta vs. Firefox 4.0b6
Firefox 4.0 beta 6: http://bit.ly/9AgL8b
Internet Explorer 9 Beta: http://bit.ly/dvlVWv
Friday, August 27, 2010
Load-Balancing Exchange 2010
http://www.msexchange.org/articles_tutorials/exchange-server-2010/high-availability-recovery/load-balancing-exchange-2010-client-access-servers-using-hardware-load-balancer-solution-part1.html
http://ingazat.wordpress.com/2010/03/27/load-balancing-exchange-2010-using-cisco-ace-part-1/
https://supportforums.cisco.com/thread/2029148
DAG Info
http://technet.microsoft.com/en-us/office/ocs/cc843611.aspx
http://technet.microsoft.com/en-us/exchange/ee886396.aspx
http://www.msexchange.org/articles_tutorials/exchange-server-2010/high-availability-recovery/uncovering-exchange-2010-database-availability-groups-dags-part1.html
http://www.msexchange.org/articles_tutorials/exchange-server-2010/high-availability-recovery/uncovering-exchange-2010-database-availability-groups-dags-part2.html
http://technet.microsoft.com/en-us/library/dd351172.aspx
http://technet.microsoft.com/en-us/library/dd979802.aspx
Friday, July 30, 2010
Generate all possible values for the Defcon 18 Badge Ninja Unlock in C#
Once you figure out the pin encoding (I can’t make this too easy), this code will let you validate the integer result.
<>
Keywords: DEFCON DC8 Ninja Badge NinjaNetworks