Rebuild INVALID Oracle Objects

1234567891011SELECT ( case when object_type = ‘VIEW’ THEN ‘ALTER VIEW ‘ || object_name || ‘ COMPILE;’ when object_type = ‘PROCEDURE’ THEN ‘ALTER PROCEDURE ‘ || object_name || ‘ COMPILE;’ when …

Bind to LDAP using System.DirectoryServices

Main: 123456789101112131415161718192021222324252627282930313233343536373839404142try {     // TODO: Add code here to start your service.     WriteToFile("Auth Test started at " + System.DateTime.Now.ToString("yyyy-MM-dd hh:MM:ss"));     WriteToFile("====================================");     #region …

Install Windows Service Manually Command Line

Create your windows service EXE: Install the service into the control panel of Windows: 1C:\> sc create [service name] binpath= "c:\program files(x86)\path\to\exe\file.exe" To remove the service from the control panel …

2010 Subaru Outback Oil Change

http://frozenrobot.com/2010/05/24/2010-subaru-outback-first-oil-change/ 14mm Socket 4.5 qts 5w30 oil Torque wrench Torque drain plug to 32.5 ft-lb

Best xkcds

Exploits of a Mom Password Strength Wisdom of the Ancients Standards Permanence Extended Mind Ineffective Sorts Perl Problems

2008 VW GTI Oil Change

http://www.mkv-gti.net/wiki/index.php?title=Changing_oil http://www.golfmkv.com/forums/showthread.php?t=9103 http://forums.vwvortex.com/showthread.php?2918689-GTI-5K-Oil-Change-Extraction-DIY 19mm socket 36mm socket T25 Torx Torque Wrench 4.5 qts 5w40 Castrol Torque the filter housing to 19 ft-lbs (25.5 Nm) Torque the drain plug to 22 ft-lbs …

PHP JSON Tester

Call a json web service from PHP and read back the results. 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051<?php // build the json request $userid = ‘jonest’; //strip invalid characters that would not encode to json …