Posts
 
Reputation
Joined
Last Seen
Ranked #586
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
96% Quality Score
Upvotes Received
21
Posts with Upvotes
21
Upvoting Members
19
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
11 Commented Posts
Member Avatar for jianna66

Actually, it's really not vague; it's merely time-consuming and difficult. Here is my idea of how it [i]should[/i] be done. It rarely is, because shipping a product is far more important than shipping a quality product. [list] [*]Identify the system under test (SUT). [*]Identify the interfaces on the SUT. [*]Identify …

Member Avatar for Robert_96
0
176
Member Avatar for samaru

(Keeping this eternal thread going...) One of the earliest 'hardest' programs I wrote was a VAX11 assembler in VAX11 assembler. I aced that class becase it did everything exactly as DEC's assembler did except for generating code (I ran out of time). The hardest programs I've written are, in essence, …

Member Avatar for Fest3er
0
3K
Member Avatar for zoollu

[QUOTE=zoollu;822443]... I have to create a shell script which copies all the id,name values from TableA and inserts them in TableB. Is this possible? Any help is appreciated. thanks[/QUOTE] To misquote an old TV show, "Of course it's possible; don't be ridiculous." :) And it's really trivial. You could try …

Member Avatar for ramu1211
0
867
Member Avatar for dopeynite

It's telling you exactly where to look for the error. Hint: look at the first non-whitespace character before 'FROM'. Give up? OK. You have a trailing comma in your AS clause. (You've no idea how many times I've hit this in the past 7 years just from editting a script …

Member Avatar for guruparthi
0
264
Member Avatar for janik

A little late but I used to trip on this myself years ago. Like 'sh' and 'bash', 'su' starts a new shell. You have to pass your commands to that new shell. `su -c "mkdir -p /mnt/Usb; mount /dev/sdb1 /mnt/Usb" root`

Member Avatar for Fest3er
0
159
Member Avatar for VEL Hassan
Re: SEO

Heh. Put the right keywords in the 'keywords' and make sure they are relevant to the page's content. Then link to the site from a web site that the search engines regularly crawl. That about all SEO's do and is the best you can hope for.

Member Avatar for Fest3er
0
216
Member Avatar for yehoshua2123
Member Avatar for FragFighter

This thread's a month old, but I'll opine anyway. If you're gaming and play the latest and newest games, go for the fastest, hottest processor and motherboard you can buy. At present, that means Intel if money's no object. Otherwise, if you just need good, all-round performer at a fair …

Member Avatar for coroneshotel2
0
258
Member Avatar for raul8

I'll bet it is displaying exactly what's in the file; [u]/programst[/u] is exactly what you should see if there's a <CR> after [u]...user/test[/u]. Use vi to edit the file. Then enter [u]:set list[/u]; you'll probably see a <CR> (^M) in there somewhere. Or use [u]od -c script_name[/u]; you should see …

Member Avatar for Fest3er
0
131
Member Avatar for ret801

Intelligence arises from the random mutation of thoughts (literally, random neurons misfiring randomly). It is this randomness that enables thinking outside the box and creative thought: intelligence. At present, there is only very rudimentary artificial intelligence because there is, as yet, very little random mutation of artificial neural activity.

Member Avatar for Rashakil Fol
0
242
Member Avatar for abe08

First, to be clear, you *can* use elements of arrays as the 'name=' in forms, as in [code] <input type="checkbox" name="slotsel[$i]" $slotchk[$i]> <input type='hidden' name="titles[$topic]" value="$titles[$topic]"> [/code]as you seem to be trying. I've been doing it for years; associative arrays also work. The result is that all the inputs of …

Member Avatar for simplypixie
0
97
Member Avatar for azegurb

Start with the errors: [code] [02/07/2012 06:54:57 PM] CSS - http://axundzade.info/templateproblem/ Inlined stylesheet Invalid value for property: background-color Line 20: .gn_header_1 { background-color:0; border:0; border-bottom:none; padding:0px; } ----------------------------------^ [02/07/2012 06:54:57 PM] CSS - http://axundzade.info/templateproblem/ Inlined stylesheet Invalid value for property: background-color Line 21: .gn_static_1 { border:0; padding:0px; height:auto; background-color:0; overflow: …

Member Avatar for Fest3er
0
114
Member Avatar for FriXionX
Member Avatar for FriXionX
0
159
Member Avatar for ARKaMAN

Does it help to put the WHERE value in quotes: [u]... WHERE id='value'[/u] versus [u]... WHERE id = value[/u]?

Member Avatar for Fest3er
0
718
Member Avatar for starlight849

It's very similar to C's printf(). In perl, the following are equivalent: [code] print "strin%g"; printf("strin%%g"); printf "strin%%g"; printf("%s","strin%g"); printf "%s","strin%g"; [/code] For printf, the first string is the format string. Google "perl printf format"; the third result (for me) was [url]http://www.tutorialspoint.com/perl/perl_printf.htm[/url].

Member Avatar for starlight849
0
199
Member Avatar for glut

You can always read a file from a web server; serving files is its nature. But you'll need an URL to tell it which file. Look into XMLHttpRequest(). Accessing the local filesystem from JS generally doesn't work; most browsers flat-out prohibit it even if you load the JS program from …

Member Avatar for glut
0
114
Member Avatar for rishster

The easiest way to 'feed forward' data is to put it in <input type='hidden'> elements. Then each succeeding page will have all the previous answers. Put the current andswer in a normal <input> and all the others in a hidden input. If you are persistent, you can figure out how …

Member Avatar for diafol
0
138
Member Avatar for fatalaccidents

It's one of those basic things where you have to learn enough of bash to be able to assemble commands to do what you want. Write your own command. :) Add this to your ~/.bashrc. I couldn't think of a better way to reference the last arg. It even handles …

Member Avatar for fatalaccidents
0
239
Member Avatar for tap3ah

Loop through the array and create a tmp file (/tmp/tmp.sed) containing one sed expression per line, like[code] s/<a name="something1">/\\index{something_else1}/g s/<a name="something2">/\\index{something_else2}/g . . . [/code]The 'g' at the end says to replace all occurrences. Then [u]sed -f /tmp/tmp.sed < file.html > file.latex[/u]. You could do it in the script too, …

Member Avatar for tap3ah
0
190
Member Avatar for aripaka

[QUOTE=TheNNS;383569]>this pop up requires NO PASSWORD to be entered!!! only if you are an administrator. you gotta use vista before you start ripping on it. i've been running vista on a laptop and have had no problems what so ever. and mac os x has the same security feature, if …

Member Avatar for itexamstube
0
3K
Member Avatar for edz_berlin

You know about <input type="hidden">, since you are using it. You need to use it on the second page to pass the (now hidden) value from the first page along to the third page. You also have an extra 'T' on line 21.

Member Avatar for pzuurveen
0
583
Member Avatar for edn_781

This is an easy one to screw up. You forgot your HTML 101 class: you cannot write to the document after it's been written. It's not an infinite loop; it's waiting for the rest of the new HTML document you started to write. Move the "<div id='pageNavPosition'></div>" tags to above …

Member Avatar for Fest3er
0
141
Member Avatar for jpknoob

In function multiply(), I changed your 'form' ID to capitalized 'Form'. That made your code work in Iceweasel (Firefox), Konqueror, Epiphany and Opera on Debian. Epiphany very usefully printed the error on stderr. For tracing and debugging JS, download [url]http://getfirebug.com/[/url]. It works well for me (I have a 10k line …

Member Avatar for jpknoob
0
244
Member Avatar for glut

Works on Linux with a known file, running it from a shell. Change the open statement to [code] open(INFO, $file) || die "No such file '$file':"; # Open the file [/code] Also run it from a command line; you should see the errors: [code] perl -w myscript.pl [/code] Finally, double-clicking …

Member Avatar for glut
0
165
Member Avatar for gcclinux

Shibblez' solution explicitly converts the fields to numbers; an alternative is 'printf("%2d", $1)' which implicitly converts the var to a number. More than one way to skin a cat. :)

Member Avatar for Fest3er
0
161
Member Avatar for sachinmaster

Without trying to find the JS code, I'll guess. :) Add two or more questions, then select True/False for one, and all of them are changed. All three <input> tags are identical. I'll guess that the code is finding all <input>s with name = "numberAnswer", deactivating them and activating the …

Member Avatar for Fest3er
0
144
Member Avatar for job78

This might make it work once only: [CODE]<script type="text/javascript"> if (yahooLoaded === undefined) { var yahooLoaded = 0; } if (yahooLoaded != 1) { YAHOO.MediaPlayer.addTracks(document.getElementById("ajazload"),1,false); yahooLoaded = 1; } </scr​ipt> <script type="text/javascript"> [/CODE] But it may may it work once EVER (until the JS environment is reinitialized). More context would …

Member Avatar for job78
0
686
Member Avatar for paresh_thummar

If, as it seems, InfoArray has been defined in the global scope, just use it directly in the function. There's scant difference between passing a reference-to-an-array to a function and accessing the array directly within the function (the CPU cycles needed to push the reference to the array onto the …

Member Avatar for Troy III
0
144
Member Avatar for Labdabeta

[QUOTE=fobos;1725713]Try using this website. He has a O'Reilly CD Library. [URL="http://docstore.mik.ua/orelly/"]Here[/URL] In my opinion, O'Reilly and Lynda.com are really good to learn from.[/QUOTE] Alas, that appears to be a link to the second edition (1997). A lot has changed since then. I used an old edition that I got really …

Member Avatar for Fest3er
0
372
Member Avatar for Mayank23

What fobos said. Your programs are doing exactly what you programmed them to do. You are intermixing unrelated and otherwise unconnected execution environments; I still screw it up now and again after years of programming PHP, HTML and JS. Examine the HTML/JS on your browser; [i]That's[/i] what runs on your …

Member Avatar for stbuchok
0
178