These can be so true… though it’s what makes our world turn. Infographic from Ciplex.

These can be so true… though it’s what makes our world turn. Infographic from Ciplex.


source unknown
I ran across a post on Facebook that peaked my interest. It lists how many terms came about. I’m going to post it here to reference.
They used to use urine to tan animal skins, so families used to all pee in a pot & then once a day it was taken & Sold to the tannery…….if you had to do this to survive you were “Piss Poor”
But worse than that were the really poor folk who couldn’t even afford to buy a pot……they “didn’t have a pot to piss in” & were the lowest of the low. The next time you are washing your hands and complain because the water temperature isn’t just how you like it, think about how things used to be.
I became brave and updated both my work, personal and family computers to Windows 10. So far I’ve had limited issues:
But here’s what I’m really blogging about… “God Mode”.
This tweak is the same as previous versions of Windows and gets you to 260+ functions and tools. You can drag-and-drop any of the commands to your desktop to create shortcuts for the command as well. To enable it:
Credit: SuperSite for Windows: Enabling GodMode for Windows 10
Another favorite feature is the “Snipping Tool”. This tool allows you to take custom screen shots and mark them up. It even has a delay feature so you can setup drop down menus before it shoots the screen. Just search for it in your start menu.
I had a unique request to copy a list of folders out of a greater collection of folders. Seeking the best way to do this I found this solution thanks to sidesofmarch:
Step 1:
Create a text (ex: migrate.txt) file containing a list of folders to be copied or moved, each folder name on a new line.
Step 2:
Run a for/in loop while inside the Windows Command Prompt. Add the /move attribute to robocopy to move instead of copy. Google “robocopy” for more options. In this example %i is the folder name which copies it to the root of E: drive.
for /f "delims=" %i in (migrate.txt) do robocopy "%i" "E:\%i" /e /z /MT /log+:log.txt
Note: if you put this command in a batch file use %%i instead of %i
Tested 7/29/2015 on Windows 10
If you didn’t get ColdFusion 11’s (and probably 10’s) ODBC Server and Client services installed but end up needing them you can create a simple ColdFusion script to get it installed.
adminObj = createObject("component","cfide.adminapi.administrator");
adminObj.login("{CF Admin Password}","{CF Admin User}" );
adminObj.installODBCservice();
July 2nd 2015 marked Adobe ColdFusion’s (then Allaire’s ColdFusion) 20th birthday. Starting back in 1997, I have made a living programming in ColdFusion for about 17 of those years (I took off a year while fixing computers instead).
End of Junior year in high school I decided to look for a job. I’ve worked here and there for my grandfather in the music sales industry and my father in the HVAC industry.
I was intrigued by what was BBS systems and the Internet and made some super simple web pages with what would be now considered super annoying JavaScript. I believe it was my friend Gabe Spargen who turned me on to JavaScript because I couldn’t let his website be “cooler” than mine. This turned into the counseling department to have me set up their department website which consisted of a bunch of links and information for applying to colleges. I remember the cool factor being a select box that would take you to a link upon selection. In the end though it was “too advanced” and was converted to standard links.
Even before all that back in grade school days I’d find my way onto any BBS system that I could and even learned some PC Q-Basic and Apple IIe BASIC.
Taking my tinkering I started looking through the yellow pages for potential employers. At this time I was just looking for something in the computer industry. As happen I dialed the wrong number and reached David Shaul with “Practical Computer Concepts” known as “PCC”. He had me come on in for an interview.
Microsoft has included the fix for AnyConnect and Windows 8.1 in the 3/10/2015 Windows Update. See KB #3040335
Per Cisco: Microsoft has released a fix-it patch providing a workaround for this issue. See KB# 3023607
When you visit the KB page, it appears you have to scroll down to the “Microsoft Fix It” button and install the AppCompat shim which is Microsoft Fix it 51033. This is a bit confusing, so be sure to click that button.
Microsoft is planning to include the fix with the Microsoft March Patch Tuesday release (subject to change)
I run Windows 8.1 and run Cisco AnyConnect Secure Mobility Client version 3.1.03103 to access a VPN.
Today, after I hit connect, it stopped working out of the blue with the error:
Failed to initialize connection subsystem
Thanks to ‘I Think – Therefore “IBM I”‘ blog I was able to quickly resolve the issue. I’m assuming this had to do with a recent Windows Update. Here’s the final solution:
If you use group policies, Kim commented using the following for Windows 7 mode:
Make a GPO that added this key:
HKEY_LOCAL_MACHINE SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers Valuename : C:\Program Files (x86)\Cisco\Cisco AnyConnect Secure Mobility Client\vpnui.exe Valuedata : ~ WIN7RTM
Cisco has notified me that they have escalated this issue to Microsoft for investigation.
This issue was introduced by KB# 3023607: Secure Channel cumulative update changes TLS protocol renegotiation and fallback behavior (https://support.microsoft.com/kb/3023607)
Included with Microsoft Security Bulletin MS15-009 – Critical Security Update for Internet Explorer (3034682)
This issue should also affect Windows 7 user with IE 11, but no reports of failure have been seen yet.
Cisco recommends that all customers open their own cases with Microsoft since the ultimate fix will need to come from them. You can feel free to reference Cisco’s case #115021112390273 in order to expedite having your ticket properly triaged by their support team. source
When tuning the IIS connector for Tomcat in ColdFusion 11, one of the resources said to look at is your “metrics.log” file.
This log is enabled in the ColdFusion Administrator and you can set the number of seconds for each entry.
What you want to see is something like this:
Max threads: 3000 Current thread count: 10 Current thread busy: 5 Max processing time: 420478 Request count: 1882 Error count: 0 Bytes received: 322099 Bytes sent: 55099992 Free memory: 18155664480 Total memory: 21045379072 Active Sessions: 1057
But what if you get this?
Max threads: null Current thread count: null Current thread busy: null Max processing time: null Request count: null Error count: null Bytes received: null Bytes sent: null Free memory: 19788897312 Total memory: 21045379072 Active Sessions: 142
A user notes this as a bug at https://bugbase.adobe.com/index.cfm?event=bug&id=3324126
“Asha K S” notes a fix and closed the bug as “Withdrawn – User Error”:
If you are using an external webserver like IIS or Apache – to enable metrics logging, you need to change the value of the “Connector Port” to AJP port. To know your AJP port, go to server.xml located at ColdFusion10\cfusion\runtime\conf and look for Connector element where protocol is “AJP/1.3” in the Debugging & Logging > Debug Output Settings page of ColdFusion Administrator
I worked this out with Wil Genovese to determine what this meant.
What we want to look for is the connector port for the “AJP/1.3” protocol in the file: {coldfusion install dir}/{instance dir}/runtime/conf/server.xml. For example “C:\ColdFusion11\cfusion\runtime\conf”.
The entry will look like this:
<Connector port="8012" protocol="AJP/1.3" redirectPort="8445" tomcatAuthentication="false" maxThreads="3000" connectionTimeout ="60000"/>
We want to take the connector port (8012 in this example) and put the value into the “Connector Port” input located under ColdFusion Administrator > Debugging & Logging > Debug Output Settings.
Note: You will see about the same issue when running CFSTAT. Most of the values will be at 0 until you update this connector port.
3/3/2016: See Charlie Arehart’s ColdFusion Troubleshooting Blog at http://www.carehart.org/blog/client/index.cfm/2016/3/2/cf_metrics_log_part1?utm_content=buffer2345d&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer for additional explanation.