cfeduke
|
Registered User
|
I write code.
|
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 18 |
comment |
Remove Duplicates from File Seconded, saw the tag and had to look. |
|
Nov 18 |
answered | How to configure permissions on application folder to write XML Documents |
|
Nov 18 |
revised |
Help with CredEnumerate Extraneous "not" removed. |
|
Nov 18 |
awarded | ● Enlightened |
|
Nov 18 |
awarded | ● Nice Answer |
|
Nov 13 |
accepted | Query Performance help |
|
Nov 12 |
answered | When should I use HtmlHelper Extension Methods? |
|
Nov 12 |
comment |
Stream Read Problem Usually yes. Let's say you have a 40 MB file on disk you want to transfer. Rather than loading 40 MB in memory then transferring it - and thus making 40 MBs of memory crowded for a length of time - you just read, let's say the first 1024 bytes, transfer it, and continue in 1024 byte chunks. A file transfer protocol may state "the first two bytes of the first packet contains an unsigned int indicating the size of the payload" so you know when to stop reading from that stream. The receiving end can do the same - chunk it into 1024 bytes or some other resource friendly buffer number. |
|
Nov 12 |
comment |
Back Button Handle A Dynamic Form Here's an interesting alternative approach where you insert URLs into the browser's history: oracle.com/technology/pub/… also look at the references on page 3 for more ideas. |
|
Nov 12 |
comment |
Back Button Handle A Dynamic Form MS has a thing called "history points" for their AJAX and ASP.NET stuff which utilizes the querystring for state storage (ug) but I don't see a general purpose library for doing this. |
|
Nov 12 |
comment |
Back Button Handle A Dynamic Form There has to be a library out there for doing just this, unfortunately googling for "record and replay Javascript" doesn't point me right to it. |
|
Nov 12 |
comment |
Back Button Handle A Dynamic Form If a button click adds a text box ('text2') your method will push a 'addTextBox("text2");' JavaScript command to your AJAX service. That's all fine and good. The problem is the user is going to type text in said text box. You'll need these text boxes (or other controls) to relay said data to the server so when you recreate the UI, you also recreate the values the user input into the controls. You can use the command pattern to solve this as well by pushing JavaScript functions to set values onto the command queue. |
|
Nov 12 |
answered | Stream Read Problem |
|
Nov 12 |
answered | Back Button Handle A Dynamic Form |
|
Nov 12 |
answered | Query Performance help |
|
Nov 12 |
comment |
Visual Studio Compilation Time Statistic I did this recently by hand (recording compilation times over a day of work) to justify $369 spent on an SSD. Moving to SSD was worth every penny. |
|
Nov 12 |
comment |
In C#, what’s the best way to store a group of constants that my program uses? If you are going to use const, expose as internal only. Do not make const public (even if you think your assemblies aren't going to be used external to your organization). Also properties give you programmatic flexibility for future expansion without the need to redefine your interface. |
|
Nov 12 |
comment |
In C#, what’s the best way to store a group of constants that my program uses? Const values are copied from the source assembly into the compiled code. This means if you have to change a const value, all dependent assemblies MUST be recompiled against the new version. Safer and more convenient to use static readonly's. |
|
Nov 12 |
comment |
In C#, what’s the best way to store a group of constants that my program uses? The problem with const is that any assemblies compiled against consts get local copies of those consts when they themselves are compiled; so if you change a value you must also recompile all assemblies dependent on your assembly defining the constants - therefore its often safer to go the readonly route. Properties instead of public static values gives you flexibility to add some programming logic in the future if you need it (i.e. read from localization) without changing the interface to your constant values. |
|
Nov 10 |
comment |
Algorithm to flatten peak usage over time? I've just been informed by my co-worker that we cannot use random since we need a way, without recording state preferably, to know when a device will contact our server for the next night to verify that it is running correctly. |
|
Nov 9 |
comment |
Algorithm to flatten peak usage over time? Hmm yes I think maybe I'm overthinking this problem. Random within a time zone - weighted across relative traffic from other time zones - should work. |
|
Nov 9 |
comment |
Algorithm to flatten peak usage over time? The peak is artificially created due to time zones and the modulo operation. |
|
Nov 9 |
asked | Algorithm to flatten peak usage over time? |
|
Nov 3 |
comment |
kanban scrumish tool(s) to get started The advantage over a whiteboard for me was mobility. I have personal projects I sometimes touch up at lunch or while I am out. When I do work I like to see what progress I make, rather than have some whiteboard I have to update when I get home. |
|
Oct 29 |
answered | kanban scrumish tool(s) to get started |
|
Oct 29 |
comment |
Windows Mobile Custom Textbox FWIW I did this back with the older compact framework by overriding OnPaintBackground (the older style used to be a horizontal line until it got focus, then it drew the rectangle borders). Seems like you might need a margin around the input area unless the text box control has a padding property. |
|
Oct 13 |
awarded | ● Enlightened |
|
Oct 13 |
accepted | Getting started with Mac development |
|
Oct 13 |
comment |
How to hide windows service from task manager in windwos desktop The only non-malicious use I can think of is laptop tracking software for phoning home when a laptop is identified as stolen. |
|
Oct 13 |
comment |
Remote Desktop Connection - not warning new users users trying to connect to a machine remotely where already another user logged in to the same machine remotely Repost this question on superuser.com. |
|
Sep 29 |
comment |
Solution with over 100 projects takes over five minutes to build Though this doesn't directly address your problem, something to think about is replacing your HDD with a SSD. I went from rebuilding in 46 seconds to rebuilding in 7 seconds with all other hardware remaining the same (OCZ Summit 120GB) - it was money well spent. |
|
Sep 29 |
answered | How do you test a referenced class that performs internal operations? |
|
Sep 29 |
comment |
Modifying module level variables in an anonymous array in Ruby Great, thanks. Shows how much my C# assumptions just do not apply in Ruby. |
|
Sep 29 |
comment |
Modifying module level variables in an anonymous array in Ruby Yup this works, thanks! (I'm picking Chuck's answer because he's done a good job of explaining what's happening under the hood, and how I can think alternatively about Ruby.) |
|
Sep 29 |
comment |
Modifying module level variables in an anonymous array in Ruby Hmm still no dice. @start += operation == :add ? amount : -(amount) is working, but not when I try to do it through Array#map block. :( |
|
Sep 29 |
comment |
Modifying module level variables in an anonymous array in Ruby This makes sense. I guess there's no way to get my code to work as I want to write it. |
|
Sep 29 |
asked | Modifying module level variables in an anonymous array in Ruby |
|
Sep 26 |
answered | How can I validate exits and aborts in RSpec? |
|
Sep 26 |
asked | How can I validate exits and aborts in RSpec? |
|
Sep 25 |
comment |
How can I duplicate a Ruby core class name and still use that core class in my class? Ended up working when I moved to a class method (also had to change require 'time' to load 'time' in my time_spec for RSpec). Thanks! |
|
Sep 25 |
comment |
How can I duplicate a Ruby core class name and still use that core class in my class? Ignore my last, just refreshed, will try that. |
|
Sep 25 |
comment |
How can I duplicate a Ruby core class name and still use that core class in my class? Hmm yeah that's essentially what I have, but RSpec is complaining that 'parse' is an undefined method for 'Time' when I try to run my spec. |
|
Sep 25 |
asked | How can I duplicate a Ruby core class name and still use that core class in my class? |
|
Sep 24 |
accepted | Is there an open source .Net SQL Editor component available? |
|
Sep 21 |
comment |
Yet another Join Question Beat me to it, was just typing something like this. |
|
Sep 14 |
answered | asp.net custom validator question |
|
Sep 11 |
accepted | Tortoisesvn on web server |
|
Sep 11 |
answered | Tortoisesvn on web server |
|
Sep 11 |
answered | How can I extend te MembershipUser class w/o multiple inheritance? |
