NVRAM
|
Registered User
|
Incidentally, the Tux image is by Nicolas P. Rougier. Its source is GPL'ed, available at his site:
http://www.loria.fr/~rougier/artwork/index.html |
|
Dec 18 |
comment |
Jquery and appending large amounts of html Agreed -- in my tests FF was marginally slower with array.join (15%) but IE sped up by 80%. So I used a small closure "StringBuilder" class, which worked fine. |
|
Dec 17 |
accepted | French characters are not displaying correctly inside javascript grid |
|
Dec 16 |
answered | Why doesnt “tail” work to truncate log files? |
|
Dec 16 |
comment |
Why doesnt “tail” work to truncate log files? This only works if the process writing to the logfile closes its file descriptor. Typical, but not always true. |
|
Dec 16 |
comment |
Why doesnt “tail” work to truncate log files? This only works if the process writing to the logfile closes its file descriptor. Typical, but not always true. |
|
Dec 16 |
comment |
French characters are not displaying correctly inside javascript grid Oh, I thought "ext JS" was "External JavaScript" but now I realize/recall it's code from www.extjs.com. D'oh. |
|
Dec 16 |
revised |
French characters are not displaying correctly inside javascript grid Firebug suggestions. |
|
Dec 16 |
answered | French characters are not displaying correctly inside javascript grid |
|
Dec 10 |
comment |
How to prevent a globally overridden “new” operator from being linked in from external library Sorry if "XCode" implies the answer, but for the rest of us -- can you state what platform and compiler/linker you're using? |
|
Dec 9 |
accepted | How can a Windows Service determine its ServiceName? |
|
Dec 9 |
answered | How can a Windows Service determine its ServiceName? |
|
Dec 9 |
comment |
How can a Windows Service determine its ServiceName? Unfortunately, .NET does strip out the argument. And the OnStart() parameters are only used when starting a service interactively. Ref: tech-archive.net/Archive/DotNet/… |
|
Dec 8 |
comment |
How can a Windows Service determine its ServiceName? @Remy - it looks like ServiceMain is for C++ code ( msdn.microsoft.com/en-us/library/… ), I'm using C#. @Isalamon - I believe you're mistaken, but if you can show how SC can be used, please post an answer with details. |
|
Dec 8 |
revised |
How can a Windows Service determine its ServiceName? Added 3-way main info. |
|
Dec 7 |
comment |
Parse Date in Bash Indeed, I noticed that yesterday but didn't bother editing it until now. |
|
Dec 7 |
revised |
Parse Date in Bash deleted 1 characters in body |
|
Dec 6 |
answered | What regular expression matches this pattern: 22-NOV-09 |
|
Dec 6 |
comment |
How to move an element around DOM tree without affecting related javascript? Why are you moving it in the DOM? If you want to move it on the page, you could try changing the CSS instead... |
|
Dec 6 |
accepted | How to move an element around DOM tree without affecting related javascript? |
|
Dec 6 |
revised |
Parse Date in Bash removed "in your IFS" |
|
Dec 6 |
answered | How to move an element around DOM tree without affecting related javascript? |
|
Dec 6 |
answered | Parse Date in Bash |
|
Dec 6 |
answered | Why doesn’t this compile? |
|
Dec 5 |
comment |
How do I append all files in current and subdirs as command arguments? Xargs doesn't play well with programs that need stdin for another purpose (interactive or not) so yes, it is uncommon to use it. I use find|xargs often, apparently when you'd call it superfluous, hence the frequency of wanting stdin is relative. Caveat lector. |
|
Dec 5 |
revised |
How can a Windows Service determine its ServiceName? edited tags |
|
Dec 5 |
comment |
How to filter out a set of strings A from a set of strings B using Bash Nice. Although it uses newline as separators, you can also use just: subtract() { fgrep -vx "${1// /$'\n'}" <<< "${2// /$'\n'}" ; } -- or for space separators, use: subtract() { echo $( fgrep -vx "${1// /$'\n'}" <<< "${2// /$'\n'}" ) ; } |
|
Dec 5 |
comment |
simulate virtual constructor in c++ You might want to add to your example to enforce on classes Y and Z to show how to expand what you want. Also, I'd suggest making static void test() into a non-static and more obscure class, such as: extern void constructorEnforcer() on the unlikely chance that the compiler optimized it away since a static unused in the file is dead code. |
|
Dec 3 |
comment |
How do I append all files in current and subdirs as command arguments? Sorry, I don't buy that it's extremely uncommon -- vi is just one use, rm -i is another. And yes, a script could recover the invoking program's stdin with "descriptor gymnastics" but the program launched by xargs will have the same stdin as xargs itself. Ultimately, both find ... + and find | xargs are extremely useful tools/patterns but with slightly different strengths. For my part, I should replace "better" in my first comment with "often better" |
|
Dec 3 |
comment |
Hashing Multiple Files Oh, and he may need to quote the file names to handle spaces. |
|
Dec 3 |
comment |
Hashing Multiple Files He asked for subdirs, too. Use find . -type f -print|while read f in lieu of for f in * |
|
Dec 3 |
comment |
Hashing Multiple Files 1. Doesn't handle filenames with spaces, and 2. it will try to rename directories, which will cause it to not find the files within those directories... Use find . -type f -print|while read file for the first line, then add quotes to the filenames on the hash= and mv lines. |
|
Dec 3 |
asked | How can a Windows Service determine its ServiceName? |
|
Dec 3 |
comment |
How do I append all files in current and subdirs as command arguments? Actually the find with + is better than xargs since the launched program may use standard input (probably the terminal). Running find ... | xargs vi will fail, but find ... -exec vi '{}' + should work. |
|
Dec 3 |
comment |
Can someone copyright a SQL query? @Ryan - I think you meant "than" not "then" in the last sentence, it makes the meaning a lot different... |
|
Dec 2 |
comment |
How do I append all files in current and subdirs as command arguments? @Grundleflek - the 2nd & 3rd forms do not handle files w/spaces in the names. @levislevis85 - the first form is best -- if the version of find supports the + variant. |
|
Dec 2 |
comment |
How do I append all files in current and subdirs as command arguments? This doesn't handle files with spaces in their names. Since kate doesn't require standard input, it's better to run find . -name '*.txt' -type f -print0|xargs -0 -r kate |
|
Dec 2 |
comment |
How do I append all files in current and subdirs as command arguments? xargs will only run once by default. It's the best option you should've posted what you tried, for example: find . -name '*.txt' -print0 | xargs -0 -r kate |
|
Dec 2 |
comment |
What is the most efficient way to sort an Html Select’s Options by value, while preserving the currently selected item? Note that this function does not sort the option elements; it changes the [value,text,selected] on the existing elements such that they are sorted (by value in this case). This is sufficient for most applications, but if you have other attributes (CSS, tool tips, etc.) then this approach will not suffice. |
|
Nov 23 |
comment |
How to calculate first n prime numbers? The first paragraph asks for code that will calculate the sum of the first n primes. It says to "*Assume the availability of a function is_prime"* not to write it. It sounds like you're not reading carefully -- or are you just trying to figure out how you would need to write is_prime? |
|
Nov 23 |
comment |
Bash: For Filename do… As I said to ghostdog74 - this one reason I usually avoid the substitute pattern, and use the remove/append instead: ${file%.Now}.BK -- which will never be the same as the original filename. I once did something like this: grep "$PATTERN" "$a" > "${a/%.Now/.BK}" -- and consequently lost all of my data. |
|
Nov 23 |
comment |
Bash: For Filename do… Not sure I like using find simply to avoid the no-match problem, but whatever. However, you need a dot in your -name argument, otherwise a file named Sysbackup-before-snow will be found and, since it does not end in ".now" the filename will be given, unchanged, to the touch program. This one reason I usually avoid the substitute pattern, and use the remove/append instead: ${file%.now}.bk -- which will never be the same as the original filename (at least it will append a ".bk"). |
|
Nov 23 |
comment |
Bash: For Filename do… You need to use .Now in your first line: if you match files, they will end with .now not .Now as the OP used, and as you used in your variable pattern -- and as a consequence, you'd just touch the original file. |
|
Nov 21 |
comment |
Bash: For Filename do… Bash also allows stripping characters from the end of a string with %. And you probably should get in the habit of quoting filenames: touch "${a%.now}.bk" |
|
Nov 20 |
answered | Why does this IF statement return false? |
|
Nov 20 |
comment |
Is this good XML? BTW, it's good to ask about best practices, but I wouldn't suggest changing a working system that isn't broken, unless you need to increase your billable hours :-) |
|
Nov 20 |
comment |
Is this good XML? Your English is fine. I'd change one bit, though: "an element can be represented as a string" (not is). |
|
Nov 20 |
comment |
Is this good XML? @Tenner - your point on complex content is valid, but a schema change is still a schema change so I don't buy your title example (unless it starts as a collection of title). As SLaks says, there ares two options and there are pro and con for both. I like Eineki's comment, which I'd simplify as: Elements are objects, attributes are properties. And yes, I've seen both option overused (200+ char attribute strings, IIRC). |
|
Nov 19 |
answered | Adding Entity Framework entities (one-to-many) in JSON via ASP.NET WebMethod |
|
Nov 18 |
asked | How can an MSI prompt the user for parameters to configure an MSM? |
|
Nov 18 |
answered | How do I retrieve the values of checkboxes when the Id values are dynamically generated |
