User Bratch - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T12:21:15Zhttp://stackoverflow.com/feeds/user/14326http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1733401/android-learning-the-platform-have-any-app-suggestions/1733490#17334901Answer by Bratch for Android: Learning the platform, have any app suggestions?Bratch2009-11-14T06:27:25Z2009-11-14T06:27:25Z<p>It's harder to think of a good, useful app that hasn't been written already than to actually write the app. I'm about to start doing the same thing you are. After getting to play with a Droid phone last night I have a couple of ideas. One has to do with aggregating information from various places on the internet so I can see is quickly in one place.</p>
http://stackoverflow.com/questions/671577/how-to-queue-users-in-a-web-application1How to Queue Users in a Web Application?Bratch2009-03-22T20:33:25Z2009-10-16T17:00:02Z
<p>I have a robot that is contolled with a local UI via a 9 pin serial connection and I would like to make it controllable via a web page, but only one user should be able to interact with it at any time. I'm still thinking about how to use WCF communications between the web server and the local PC, and might ask about that at a later time. For now I'm tying to get the web server and front end to queue users who want to control the robot, first come, first serve. </p>
<p>The only thing I have thought about so far is to store user sessions in the order they request to control the robot, and then use AJAX to let each one know when it's their turn. I want to show the user where their place is in the queue and move users forward in the queue when others are done, abandon their sessions, or timeout during their turns.</p>
<p>Does this seem like the right idea? Have you already done this and have a good method that works? I'm open to hearing about how it was done on any platform as long as the concepts also apply to doing it with ASP.NET.</p>
http://stackoverflow.com/questions/1489733/how-to-know-if-a-pdf-contains-only-images-or-has-been-ocr-scanned-for-searching0How to know if a PDF contains only images or has been OCR scanned for searching?Bratch2009-09-28T22:45:42Z2009-09-28T23:00:39Z
<p>I have a bunch of PDF files that came from scanned documents. The files contain a mix of images and text. Some were scanned as images with no OCR, so each PDF page is one large image, even where the whole page is entirely text. Others were scanned with OCR and contain images and searchable text where text is present. In many cases even words in the images were made searchable.</p>
<p>I want to make an automated process to recognize the text in all of the scanned documents using OCR, with Acrobat 8 Pro, but I don't want to re-OCR the files that have already been through the OCR process in the past. Does anyone know if there is a way to tell which ones contain only images, and which ones already contain searchable text?</p>
<p>I'm planning on doing this in C# or VB.NET but I don't think being able to tell the two kinds of files apart is language dependent.</p>
http://stackoverflow.com/questions/533437/google-search-of-pdf-documents/1489728#14897280Answer by Bratch for Google Search of PDF DocumentsBratch2009-09-28T22:43:58Z2009-09-28T22:43:58Z<p>Are your PDF files OCR scanned so the text is selectable and searchable? Or are the PDF files being scanned with no OCR, in which case the text will get stored as a large image? If the PDF is all images I don't think Google can index it (yet). Or has Google found your pages by now?</p>
http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1188708#118870819Answer by Bratch for Surprising software vulnerabilities or exploits?Bratch2009-07-27T15:04:58Z2009-09-16T04:43:46Z<p>Everyone does know about SQL injections, but one of the most surprising exploits I recently heard about was putting SQL injections into bar codes. Testers should be checking ALL inputs for malicious SQL. An attacker could show up at an event and crash their registration system, change prices at stores, etc. I think just bar code hacking in general was surprising to me. No wow factor here, just something else to be aware of.</p>
<p>EDIT: Just had a discussion where the idea of putting the SQL injection on a magnetic card strip was brought up. I guess you can put one anywhere, so test any and all input, especially from users and these kinds of data storage devices.</p>
http://stackoverflow.com/questions/1215260/how-to-redirect-the-output-of-a-powershell-to-a-file-during-its-execution/1215395#12153950Answer by Bratch for How to redirect the output of a PowerShell to a file during its executionBratch2009-07-31T23:51:17Z2009-07-31T23:51:17Z<p>Maybe Start-Transcript would work for you. First stop it if it's already running, then start it, and stop it when done.</p>
<pre>
Stop-Transcript | out-null
Start-Transcript -path C:\output.txt -append
# do some stuff
Stop-Transcript
</pre>
<p>You can also have this running while working on stuff and have it saving your command line sessions for later reference.</p>
http://stackoverflow.com/questions/270434/custom-code-in-reporting-services-report/1213354#12133540Answer by Bratch for Custom code in Reporting Services reportBratch2009-07-31T15:53:19Z2009-07-31T16:11:36Z<p>I've been trying to do this same thing, set a simple list of parameter values from report code. None of the links in any of these answers shows how to do this and after quite a bit of digging around I don't think it's even possible. Yes it is possible to get the values from a database query, from a web service, or from a custom assembly, but each of these creates a lot of overhead compared to getting the list from a simple function call like =Code.GetValues(), where the function uses a For loop to create the values.</p>
<p>msvcyc is correct in pointing out that the parameter is expecting a string value, but the function is returning an array. I changed the return type to Array as suggested by prashant sable, but the select list is still grayed out, it does not work. And coldice is correct in saying that the access modifier should be Public.</p>
<p>In my digging around I found <a href="http://www.jameskovacs.com/blog/CommentView.aspx?guid=31eeaafd-a118-4e76-917d-78d54441aee9" rel="nofollow">an article by James Kovac</a> from 2005 that pointed out why this is not possible. The Parameters class has a get method, but no set method. In the VS 2008 object browser for SSRS 2008 the object name has changed, but it still does not contain a set method (see Microsoft.ReportingServices.Interfaces.IParameter.Name or .Value).</p>
<p>My current workaround is to just hard code the list of values, but if your value list needs to be dynamic then your only choices are database queries, web services, or custom assemblies. I think the easiest workaround of these three is to get the values from the database engine, as suggested by oleksiy.t, as long as you can write a query to return the value list you want. Your list of integers, or my list of time intervals, would both be easy queries to write. Otherwise you will need to use one of the other two workarounds.</p>
http://stackoverflow.com/questions/1191962/microsoft-communication-control-6-0/1192061#11920610Answer by Bratch for Microsoft Communication control 6.0Bratch2009-07-28T05:23:04Z2009-07-30T03:00:17Z<p>EDIT: I did this with VC# and am not sure if the steps are the same with VC++. I need to install it and try it before providing a better response.</p>
<p>Since serial port support wasn't added to .Net until version 2.0 I had to do the same thing for .Net 1.1 apps. In my project I added a reference to MSCommLib and added the MS Communications Control, version 6.0, to my toolbox. After dragging one onto the form I was able to program against it. You should also have a reference to AxMSCommLib, AxInterop.MSCommLib.dll (COM interop not port). </p>
<p>Sorry, I opened the project and can't find a way to add it to the Class View, but once you have a reference and create a variable like "private AxMSCommLib.AxMSComm com;" you can use the intellisense to see the methods and members of the object. </p>
<p>You can also see these with the Object Browser. If you have the reference set, open the object browser and then click on AxMSComm. All of the members should be listed in the pane to the right side. There isn't much help for how to use each of the members here.</p>
http://stackoverflow.com/questions/821720/increasing-windows-mobile-5-emulator-storage/1156530#11565300Answer by Bratch for Increasing Windows Mobile 5 Emulator StorageBratch2009-07-20T23:30:40Z2009-07-20T23:47:11Z<p>In the Microsoft Device Emulator V3 (note that this installs in and over-writes the previous "\Microsoft Device Emulator\1.0" folder), using Windows Mobile 5, the help you get when typing "deviceemulator" with no parameters is pasted below. The first thing it states is that message about memsize. I tried it with values > 256 MB and just throws up the help dialog box. I was messing with this when trying to get it to recognize my /sharedfolder as a storage card. Maybe this will be possible in newer device emulators. If I can get it to work I can test placing an SDF file on the card.</p>
<pre>
Device Emulator
Memory size must be a value between 64 and 256.
Command Line Option Help
binfile - Filename of the binfile to be loaded by the emulator.
@responsefile - Filename to XML response file.
/a - Keeps emulator window always on top.
/battery - Emulates running from a battery instead of AC
/batterycharge percentage - Emulated battery charge percentage
/c - Creates and displays a console window to show output from Serial Port 1.
/cpucore - ARMv4 or ARMv5. Default is ARMv4.
/cpuoptions - A combination of (T)humb,D(ebug),I(nternetworking),M (Long Multiply),E (DSP). Of these, T,D,I will always be set.
/defaultsave - Use the VMID as the saved state name and place the saved state file in the per user directory.
/flash filename - Enables flash-memory emulation and specifies flash-memory storage filename.
/h - Sets host-only routing for network packets.
/hostkey keyname - Specifies host key, where keyname can be 'None', 'Left-Alt', or 'Right-Alt'.
/language LangID - Specifies the UI language, where LangID is a decimal.
/memsize size - Sets emulated RAM size, where size is in megabytes.
/nosecurityprompt - Do not prompt when enabling potentially unsafe peripherals when restoring from saved state.
/n [macaddress] - Enables CS8900 network adapter where optional macaddress specifies which host adapter the card will bind to.
/p [macaddress] - Enables NE2000 PCMCIA network adapter, where optional macaddress specifies which host adapter the card will bind to.
/r address - Specifies ROM file base address(in hexadecimal).
/rotate angle - Rotates the display by degrees, where angle can be 0, 90, 180, or 270.
/s filename - Specifies the save-state filename.
/sharedfolder directoryname - Mounts directoryname as a storage card.
/skin filename - Loads the specified skin file.
/tooltips state - Enables or disables tooltips, where state is 'ON' or 'OFF'.
/u0 serialport /u1 serialport /u2 serialport - Maps guest serial ports 0-2 to Windows serial ports.
/vfp - Vector Floating Point coprocessor: true or false. Default is false.
/video xx - Specifies screen size and bit-depth.
/vmid {GUID} - Specifies the VMID GUID.
/vmname name - Specifies the window title.
/z - Zooms the display to 2x normal size.
/speakerphone - {[SpeakerPhone][Headset][Carkit]} - Bitmapped number between 0-7 specifying Speakerphone, Headset, Carkit mode.
OK
</pre>
http://stackoverflow.com/questions/1145029/report-builder-2-0-data-source-credentials-prompt/1146052#11460520Answer by Bratch for Report Builder 2.0 Data Source Credentials PromptBratch2009-07-17T22:56:44Z2009-07-17T22:56:44Z<p>In Visual Studio, in the Report Data section, the data source properties has General and Credentials sections. In credentials there is an option to "Prompt for credential" and a place you can enter the prompt text. Make sure this option is not selected, then save and deploy it. </p>
<p>In the Report Manager also check the shared sata source properties. The credential setting for both should be the same, and the groups or users in security should be the same. Another place to check in the Report Manager is the properties of the actual report. Select the Data Sources section and see if the data source and credential settings match. The security properties should also match. </p>
<p>Take a look and verify these are all set correctly to match the other data source or report.</p>
http://stackoverflow.com/questions/1029489/how-do-i-check-if-a-file-is-under-a-given-directory-in-powershell/1029633#10296330Answer by Bratch for How do I check if a file is under a given directory, in PowerShell?Bratch2009-06-22T22:02:22Z2009-06-22T22:02:22Z<p>Something real quick:</p>
<pre><code>14:47:28 PS>pwd
</code></pre>
<p>C:\Documents and Settings\me\Desktop</p>
<p>14:47:30 PS>$path = pwd</p>
<p>14:48:03 PS>$path</p>
<p>C:\Documents and Settings\me\Desktop</p>
<p>14:48:16 PS>$files = Get-ChildItem $path -recurse | Where {$_.Name -match "thisfiledoesnt.exist"}</p>
<p>14:50:55 PS>if($files) {write-host "the file exists in this path somewhere"}else{write-host "no it doesn't"}
no it doesn't</p>
<p>(create new file on desktop or in a folder on the desktop and name it "thisfileexists.txt")</p>
<p>14:51:03 PS>$files = Get-ChildItem $path -recurse | Where {$_.Name -match "thisfileexists.txt"}</p>
<p>14:52:07 PS>if($files) {write-host "the file exists in this path somewhere"}else{write-host "no it doesn't"}
the file exists in this path somewhere</p>
<p>Of course iterating is still happening, but PS is doing it for you. You also might need -force if looking for system/hidden files.</p>
http://stackoverflow.com/questions/912955/how-can-i-prevent-needing-to-re-sign-my-code-every-1-or-2-years1How Can I Prevent Needing to Re-sign My Code Every 1 or 2 Years?Bratch2009-05-26T21:52:06Z2009-06-11T22:28:59Z
<p>I was reading <a href="http://stackoverflow.com/questions/329396/what-happens-when-a-code-signing-certificate-expires">What happens when a code signing certificate expires - Stack Overflow</a> and wondering about a more solid answer. The answer provided was more about setting up your own CA. Even with your own CA you will still need to deal with expiring code certificates.</p>
<p>If you signed the code without using a time stamping service, after the certificate expires your code will no longer be trusted, and depending on security settings it may not be allowed to run. You will need to re-sign all of your code with a new certificate, or with a renewed certificate, every 1 or 2 years.</p>
<p>Trusted (digital) timestamping allows the digital signature to be valid even after the certificate itself has expired. You would need to re-sign code with the new certificate only if you have made changes. </p>
<p>Does this all sound correct? If so, I need recommendations on what timestamping service to use, preferably from someone who has actually used one. I'd also like to know if there are any in-house solutions, similar to being your own CA.</p>
<p>Right now this applies to PowerShell scripts, but I will eventually have the same issue with other code.</p>
<p><strong>Update</strong>: Sample of how to sign a PS script with a timestamp (you can make a script for this):</p>
<pre><code>Set-AuthenticodeSignature -filepath "D:\Projects\A Sample\MyFile.ps1"
-cert gci cert:\CurrentUser\My -codesigning
| where -Filter {$_.FriendlyName -eq "Thawte Code Signing"}
-IncludeChain All
-TimeStampServer "http://timestamp.verisign.com/scripts/timstamp.dll"
</code></pre>
<p>Then, to see the Signer Certificate and TimeStamper Certificate, you can do this:</p>
<pre><code>Get-AuthenticodeSignature MyFile.ps1 | fl *
</code></pre>
<p>It gives you the Subject (CN, OU, etc.), Issuer, Before/After Dates, and Thumbprints for both your cert and the timestamper's cert. You also get a message indicating the status of the signature.</p>
http://stackoverflow.com/questions/972611/old-developers-any-future/977749#9777491Answer by Bratch for Old Developers - any future ?Bratch2009-06-10T19:41:57Z2009-06-11T14:37:50Z<p>I hope we have a future in it and I plan to make it mine. I typed in some BASIC on a TRS-80 about 26 years ago and have been around computers since then. I'm almost 40 and plan on doing it nearly 26 more years. Even if I manage to retire before that I think I'll still be working on something involving code. I don't see any reason why not.</p>
<p>Update - check out this recent article linked from reddit: <a href="http://improvingsoftware.com/2009/05/19/programmers-before-you-turn-40-get-a-plan-b/" rel="nofollow">programmers Before you turn 40, get a plan B</a> and the <a href="http://www.reddit.com/r/programming/comments/8rm4z/programmers%5Fbefore%5Fyou%5Fturn%5F40%5Fget%5Fa%5Fplan%5Fb/" rel="nofollow">reddit comments</a>: </p>
http://stackoverflow.com/questions/342665/what-is-needed-to-setup-a-personal-executable-code-timestamp-service/930482#9304821Answer by Bratch for What is needed to setup a (personal) executable/code timestamp service?Bratch2009-05-30T20:05:06Z2009-05-30T20:05:06Z<p>I've been looking for the same thing and so far we are using a Thawte code signing certificate with free VeriSign timestamping. The <a href="http://en.wikipedia.org/wiki/Trusted%5Ftimestamping" rel="nofollow">Trusted timestamping</a> article on Wikipedia has 2 good images of how it works and some external links at the bottom, including links to the RFC and ANSI ASC. One of the links goes to digistamp.com, where they offer a high-volume service and also sell a SecureTime server and license. The current list price for this is $30,000 plus $4,500 annual maintenance and audit, way more than we would pay.</p>
<p>One thing that I still am not clear about is how frequently the timestamping service needs to be contacted. If it only needs to contact the service once during signing time, then that's okay, but if the service needs to be contacted every time the certificate is accessed it would be better to have our own. I haven't seen anything like this in the open source community.</p>
http://stackoverflow.com/questions/919175/how-do-you-deal-with-developer-frustration/919197#9191971Answer by Bratch for How do you deal with developer frustration?Bratch2009-05-28T04:37:10Z2009-05-28T04:37:10Z<p>Start not caring about the job at all, then get someone to burn down the building, like in Office Space. Peter ended up as a construction laborer after that, if you like working outdoors.</p>
<p>I kept an empty box under my desk for a while, where people could see it. They wondered what it was for, until the day I used it.</p>
http://stackoverflow.com/questions/893295/what-are-some-of-the-most-useful-yet-little-known-features-in-the-powershell-lang/911081#9110813Answer by Bratch for What are some of the most useful yet little known features in the PowerShell languageBratch2009-05-26T14:44:26Z2009-05-26T14:44:26Z<p>I've been using this:</p>
<pre><code>if (!$?) { # if previous command was not successful
Do some stuff
}
</code></pre>
<p>and I also use $_ (current pipeline object) quite a bit, but these might be more known than other stuff.</p>
http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895928#895928105Answer by Bratch for How can you tell if a person is a programmer?Bratch2009-05-22T00:25:25Z2009-05-22T00:25:25Z<p>By their tan lines of course (from <a href="http://www.codinghorror.com/blog/archives/000970.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000970.html</a>).</p>
<p><img src="http://www.codinghorror.com/blog/images/tan-lines-from-typical-summer-activities.jpg" alt="alt text" /></p>
<p>It used to be pocket protectors, but I think that's more for engineers.</p>
http://stackoverflow.com/questions/885349/how-to-write-a-powershell-script-that-accepts-pipeline-input/885651#8856516Answer by Bratch for How to write a Powershell script that accepts pipeline input?Bratch2009-05-20T00:16:11Z2009-05-20T00:29:59Z<p>This works and there are probably other ways to do it:</p>
<pre><code>foreach ($i in $input) {
$i
}
</code></pre>
<p>17:12:42 PS>1..20 | .\cmd-input.ps1<br>
1<br>
2<br>
3<br>
-- snip --<br>
18<br>
19<br>
20<br></p>
<p>Search for "powershell $input variable" and you will find more information and examples.<br>
A couple are here:<br>
<a href="http://www.powershellpro.com/powershell-tutorial-introduction/powershell-functions-filters/" rel="nofollow">PowerShell Functions and Filters PowerShell Pro!</a><br>
(see the section on "Using the PowerShell Special Variable “$input”")<br>
"Scripts, functions, and script blocks all have access to the $input variable, which provides an enumerator over the elements in the incoming pipeline. "<br>
or<br>
<a href="http://dmitrysotnikov.wordpress.com/2008/11/26/input-gotchas/" rel="nofollow">$input gotchas « Dmitry’s PowerBlog PowerShell and beyond</a><br>
"... basically $input in an enumerator which provides access to the pipeline you have."</p>
<p>Note: I'm assuming you mean the PS command line and not the DOS command line.</p>
http://stackoverflow.com/questions/879913/will-installing-visual-studio-2010-beta-side-by-side-with-vs2008-cause-problems/880443#8804430Answer by Bratch for Will installing Visual Studio 2010 Beta side by side with VS2008 cause problems?Bratch2009-05-19T00:28:50Z2009-05-19T00:28:50Z<p>I'd do it in a VM just to be safe, and so that I wouldn't have to uninstall it when the final version comes out. Also in the VM I could roll back to a clean OS and install RC versions. It's safer and you have more options in the VM, and I don't even notice the minor performance penalty. Someone go try it on their system and let us know.</p>
http://stackoverflow.com/questions/871297/how-can-i-serve-vbs-and-other-file-types-as-plain-text-from-a-subversion-reposito1How can I serve VBS and other file types as plain text from a Subversion repository (Apache)?Bratch2009-05-15T23:48:23Z2009-05-17T15:56:57Z
<p>I just want to browse my Subversion code repositories and view files. Some of the file types, like .VBS, prompt me to open or save the file, but I just want to view it in the browser as plain text. Can Apache's httpd.conf file be modified to do this? I don't think it would be changed on the client (IE7) because then it would work the same on all sites.</p>
http://stackoverflow.com/questions/803521/powershell-pitfalls/803880#8038800Answer by Bratch for Powershell pitfallsBratch2009-04-29T19:26:23Z2009-04-29T21:52:17Z<p>This one has tripped me up before, using $o.SomeProperty where it should be $($o.SomeProperty).</p>
http://stackoverflow.com/questions/747691/what-does-wcf-mean/747732#7477321Answer by Bratch for What does 'WCF' mean?Bratch2009-04-14T14:06:41Z2009-04-14T14:06:41Z<p>Easy to find at Microsoft: <a href="http://msdn.microsoft.com/en-us/library/ms731082.aspx" rel="nofollow">What Is Windows Communication Foundation</a></p>
http://stackoverflow.com/questions/716013/top-encountered-css-bugs-issues/716166#7161661Answer by Bratch for Top Encountered CSS Bugs/IssuesBratch2009-04-04T00:21:10Z2009-04-04T00:21:10Z<p>Chalk another one up for IE6:
<a href="http://www.codeproject.com/KB/dotnet/Overlapping.aspx" rel="nofollow">DropDownList and DIV overlapping problem</a>, with screen shots. The iframe fix is mentioned in the article. I'm not sure if there are CSS bugs that have consistent buggy behavior across all browsers.</p>
http://stackoverflow.com/questions/701214/should-developers-have-administrator-permissions-on-their-pc/714338#7143380Answer by Bratch for Should developers have administrator permissions on their PCBratch2009-04-03T15:05:25Z2009-04-03T15:05:25Z<p>No one on Windows XP should be using an administrator account for day-to-day use, and in Vista if you must be an administrator at least have UAC enabled. Especially web developers and other developers who browse the web with Internet Explorer. </p>
<p>What you can do is have developers use their regular user account, but give them a second account that is an administrator on their PC so they can use it as needed (Run As). I know they said web development, but for Windows development your software should be tested using a regular user account, not as an administrator.</p>
http://stackoverflow.com/questions/704120/what-searching-algorithm-concept-is-used-in-google/704156#7041563Answer by Bratch for What searching algorithm/concept is used in Google?Bratch2009-04-01T05:21:21Z2009-04-01T05:21:21Z<p><a href="http://www.google.com/technology/pigeonrank.html" rel="nofollow">Google's patented PigeonRank™</a></p>
<p>Wow, they initially posted this 7 years ago from Wednesday ...</p>
http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/634950#6349503Answer by Bratch for What made programming easier in the last couple of years?Bratch2009-03-11T15:04:53Z2009-03-11T15:04:53Z<p>Many of these things have been around in one form or another for a while. For me, if it was just the last couple of years, I would say advances in OS virtualization. I have 7 different VMs on one machine and can take a snapshot of any of them multiple times. If gives me great flexibility on developing against different platforms without having a pile of old boxes under my desk. </p>
<p>I do not believe that anything had to be sacrificed for this, except a bunch of disk space and some RAM, which is much cheaper than several years ago. And you can take more advantage of that multi-core CPU.</p>
http://stackoverflow.com/questions/608571/what-is-the-best-way-to-embed-sql-in-vb-net/608614#6086140Answer by Bratch for What is the best way to embed SQL in VB.NET.Bratch2009-03-03T23:02:01Z2009-03-03T23:02:01Z<p>Would it be possible to convert it to using <a href="http://en.wikipedia.org/wiki/Language%5FIntegrated%5FQuery" rel="nofollow">LINQ</a>? It's safer than converting it to using regular old embedded SQL statements.</p>
http://stackoverflow.com/questions/563316/is-there-a-generic-way-to-see-what-is-a-website-running-on/563487#5634870Answer by Bratch for Is there a generic way to see what is a website running on ?Bratch2009-02-19T00:28:44Z2009-02-19T00:34:14Z<p>Of course it can be always be masked, but I have used this tool for years to check on web servers. Getting anything more specific than ASP, PHP, etc is not as easy.</p>
<p><a href="http://www.securityspace.com/sprobe/probe.html" rel="nofollow">Security Space Web Probe</a></p>
<p>Sample:</p>
<p>Site being probed: stackoverflow.com</p>
<p>Web Server: Microsoft-IIS/7.0 </p>
<p>Page Retrieval Time 0.86 seconds
Connect time: 0.19
Wait time: 0.09
Data Recv time: 0.58
Other: 0.00 </p>
<p>Size of page: 124630 bytes </p>
<p>This one shows when <a href="http://www.securityspace.com/sprobe/doprobe.html?URL=www.hotmail.com" rel="nofollow">Hotmail.com (Web Probe)</a> changed from Apache to IIS.</p>
http://stackoverflow.com/questions/535980/how-did-you-get-your-first-programming-job/540135#5401350Answer by Bratch for How did you get your first programming job?Bratch2009-02-12T05:14:57Z2009-02-12T05:14:57Z<p>In the early 90's I knew a guy who owned a computer store and also sold dial-up Internet access. I had programmed in BASIC and messed with Navy computers for years before and at the time was working on my ASCS. People would come into his store and ask him for software services, like to make changes to MS Access databases, or get some data they had onto a web site. He started asking me if I could do some of these things on a part time basis, and I did, and realized that I could make a bit of side money doing it. I did this off and on until I finished my BSCS and stopped reenlisting in the Navy in 98.</p>
<p>When I left the Navy I looked all over the place for full time software jobs. I responded to a newspaper ad for a position at a place that makes credit union software. They had 2 positions available, a report writer and a systems analyst, so I asked for the more difficult test. They had a bunch of us in one room, one guy flipped through the test, got up, and left. I did something that others here have done, finished rather quickly and spent a good deal of time reviewing my answers. I got hired, but then people I went to college with found me and lured me away to other jobs, usually with a pay raise and more interesting work.</p>
<p>I never did an internship, but all of that part time work, and some other work I did for other students at no cost, really helped. It was only possible because I had my full time job to pay the bills. I found that first job on my own, but every job after that was found through networking.</p>
http://stackoverflow.com/questions/334383/best-features-in-visual-studio-2008-and-vsts/358124#3581240Answer by Bratch for Best feature(s) in Visual Studio 2008 (and VSTS)? Bratch2008-12-11T00:40:37Z2008-12-11T00:40:37Z<p>Split view, in addition to design and source view. I think VS 2008 is the first version with this feature, which allows you to see design and source horizontally split. And if you have two monitors (don't we all) you can split it vertically and have one screen for source and one for design. Many other HTML editors have had this feature for years. </p>
<p>Occasionally when I change focus from source to design view it messes up a small portion of my HTML and I haven't figured out why yet. It makes me spend more time looking at my pages before uploading them.</p>
http://stackoverflow.com/questions/68985/getting-started-with-windows-mobile-development/74213#74213Comment by Bratch on Getting started with windows mobile developmentBratch2009-11-29T07:10:12Z2009-11-29T07:10:12ZHis blog works, but most of the links in his "Categories" section do now work, including the "30 Days of" links. The last one for day 30 was on Monday, June 30, 2008, so the rest are all in June 2008. After the "30 Days of .NET [Windows Mobile Applications]" a new series starts for "30 Days of Pimp My Windows Mobile Phone." http://stackoverflow.com/questions/1736613/how-to-transpose-data-in-powershell/1736892#1736892Comment by Bratch on How to transpose data in powershellBratch2009-11-18T22:07:06Z2009-11-18T22:07:06Z+1 for good explaination.http://stackoverflow.com/questions/1743497/are-i-and-b-tags-actually-deprecated/1743514#1743514Comment by Bratch on Are "<i>" and "<b>" tags actually deprecated?Bratch2009-11-16T17:26:22Z2009-11-16T17:26:22ZYeah, but "Are “<i>” and “<b>” tags actually deprecated?" I'd assume HTML 4 since 5 isn't ready yet.http://stackoverflow.com/questions/1733401/android-learning-the-platform-have-any-app-suggestions/1733490#1733490Comment by Bratch on Android: Learning the platform, have any app suggestions?Bratch2009-11-16T15:44:15Z2009-11-16T15:44:15ZMaking apps location aware is a great idea, especially now that more phone are released with the GPS unlocked. I'm not saying its better to think of new apps, just more difficult than actually writing the app itself.http://stackoverflow.com/questions/1717815/i-need-to-learn-c/1717926#1717926Comment by Bratch on I need to learn C.Bratch2009-11-11T20:52:58Z2009-11-11T20:52:58ZThis was the book used in my algorithms class, a while back, before 1997. It was good and I'm sure it's still applicable and in a new edition by now.http://stackoverflow.com/questions/1489733/how-to-know-if-a-pdf-contains-only-images-or-has-been-ocr-scanned-for-searching/1489780#1489780Comment by Bratch on How to know if a PDF contains only images or has been OCR scanned for searching?Bratch2009-10-29T22:25:25Z2009-10-29T22:25:25ZCan you recommend one that you know works, or that I should try?http://stackoverflow.com/questions/1537460/opensource-reporting-services/1537662#1537662Comment by Bratch on Opensource reporting services?Bratch2009-10-08T14:36:19Z2009-10-08T14:36:19ZYep, MSSQL Express w/ Advanced Services is free, but not open source. It has some limitations, like not being able to schedule reports, and data must be stored in the local instance. With Express you're also limited to using 1 CPU, 1 GB RAM, and 4 GB database size. It works for me, but can get slow if you throw a lot of inserts at it.http://stackoverflow.com/questions/148905/how-did-you-first-get-interested-in-programming/148948#148948Comment by Bratch on How did you first get interested in programming?Bratch2009-09-26T17:40:27Z2009-09-26T17:40:27ZMy first programs were similar, but on a TRS-80 MC-10, and I was about 13, in the early 80s. My problem was that it connected to a TV and we only had 1 back then, so getting TV time with brothers and sisters was the hard part.http://stackoverflow.com/questions/989314/sql-server-2008-standard-or-sql-express/989337#989337Comment by Bratch on SQL Server 2008 : Standard or SQL ExpressBratch2009-09-03T15:13:19Z2009-09-03T15:13:19ZExpress works fine for a lot of actual products. If you have some type of distributed app that needs a local data store until it can synchronize, it will work. If you have a few web sites with low or moderate traffic and the need to store some basic data it will do the job (it is right now for me). With advanced services you also get reporting services (local data only, no subscriptions). Express is for lower-end use, developer is for developers. (developers, developers, developers, developers, ...) MySQL was not even asked about.http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1205579#1205579Comment by Bratch on What are things that make a programmer's life miserable?Bratch2009-07-30T14:28:33Z2009-07-30T14:28:33ZNobody here runs as an admin for day to day use, and I don't even do it at home (unless UAC is on). What a select few of us get is a second admin account that we can use when needed (Run As) to perform administrative taks. It's actually not so bad doing it this way, but I'd be stuck with no admin rights at all.http://stackoverflow.com/questions/439681/modifying-cells-in-sql-server-management-studio-2005-without-a-mouse/439703#439703Comment by Bratch on Modifying cells in SQL Server Management Studio 2005 without a mouseBratch2009-07-22T22:34:45Z2009-07-22T22:34:45Z+1 Just tested in 2008 and it works here too. I also use the arrows and was trying other keys like Home and End to edit, but none worked. Thanks for F2.http://stackoverflow.com/questions/439681/modifying-cells-in-sql-server-management-studio-2005-without-a-mouseComment by Bratch on Modifying cells in SQL Server Management Studio 2005 without a mouseBratch2009-07-22T22:33:48Z2009-07-22T22:33:48Z+1 for asking, this was annoying the heck out of me. I was about to ask "Edit Column Names and Data in MS SQL Server EM or SSMS without Using the Mouse" but SO found this related question for me. It's a waste of time to reach all the way over there for the mouse. http://stackoverflow.com/questions/1029489/how-do-i-check-if-a-file-is-under-a-given-directory-in-powershell/1029633#1029633Comment by Bratch on How do I check if a file is under a given directory, in PowerShell?Bratch2009-06-23T05:49:59Z2009-06-23T05:49:59ZI think I get it now, you have this file path stored somewhere, and you want to see if the path part exists beneath some other specified path?http://stackoverflow.com/questions/1029489/how-do-i-check-if-a-file-is-under-a-given-directory-in-powershell/1029633#1029633Comment by Bratch on How do I check if a file is under a given directory, in PowerShell?Bratch2009-06-23T05:43:42Z2009-06-23T05:43:42ZYeah, the code formatting here doesn't work well for PS. This is not a full PS1 file, just stuff typed on the PS cmd line. Your question asked "How do I check if a file is under a given directory..." It looks like the other answer is also checking for a file, as you asked. I see your edit, but how can a file have a path if it doesn't even exist?http://stackoverflow.com/questions/919080/when-how-do-you-do-your-best-sloshing/919086#919086Comment by Bratch on When/How do you do your best "sloshing"?Bratch2009-06-11T23:55:54Z2009-06-11T23:55:54ZBut if the problem is bugging you all day, and the shower is in the morning, does it just stay in your head all night, then get triggered by the morning shower? I'd be laying there trying to think about it before falling asleep.