3
votes
3answers
23 views

Can I add a systemcall from a module?

Can I add a systemcall from a module?
5
votes
13answers
324 views

Can anyone think of an elegant way of reducing this nested if-else statement?

if (Request.QueryString["UseGroups"] != null) { if (Request.QueryString["UseGroups"] == "True") { report.IncludeGroupFiltering = true; } else { report.IncludeGroupFiltering = false; …
1
vote
3answers
32 views

How do I add a new column of data to a csv file.

I am reading a csv file into a variable data like this: def get_file(start_file): #opens original file, reads it to array with open(start_file,'rb') as f: data=list(csv.reader(f)) data …
8
votes
8answers
93 views

Useful GCC flags for C

Beyond setting -Wall, and setting -std=XXX, what other really useful, but less known compiler flags are there for use in C? I'm particularly interested in any additional warnings, and/or and turning …
4
votes
2answers
50 views

What is the Java equivalent of Perl’s qq operator?

I have a very long string which includes many new lines ( it's a really long SQL statement ). The SQL is easier to read when I break it up with newlines. But from time to time, I need to copy the …
6
votes
3answers
63 views

What are the benefits (and drawbacks) of a weakly typed language?

I'm a big fan of PHP and it's obviously a very weakly-typed language. I realize some of the benefits include the general independence of changing variable types on the fly and such. What I'm …
3
votes
4answers
27 views

Is there a good way to avoid unused method parameter in some of the subclasses while applying strategy pattern?

I have the following scenario where I have different kinds of sales algorithms to calculate the sales price. FixedSaleStrategy does not need basePrice parameter while all the other strategy …
9
votes
8answers
163 views

Are the limits of for loops calculated once or with each loop?

Is the limit in the following loop (12332*324234) calculated once or every time the loop runs? for(int i=0; i<12332*324234;i++) { //Do something! }
65
votes
101answers
5k views

What’s your biggest fear as a programmer?

Please note I am NOT looking for answers like "spiders" well I guess depending on the context that could be an acceptable answer.. But you know what I mean. I am looking for answers like …
1
vote
1answer
16 views

Trying to use a SQL function in MySQL

I'm trying to use this script (which extracts the domain from a URL): CREATE FUNCTION [dbo].[parseURL] (@strURL varchar(1000)) RETURNS varchar(1000) AS BEGIN IF CHARINDEX('http://',@strURL) > 0 …
-2
votes
2answers
17 views

make a change to an element within a list within a list

i am reading a csv file into a data: def get_file(start_file): #opens original file, reads it to array with open(start_file,'rb') as f: data=list(csv.reader(f)) i need to go through every row …
0
votes
2answers
30 views

how to do stuff before submitting a form?

Hi there: For example, I have a HTML form with several input buttons, <form action="/index.php" method="post"> <input type="hidden" name="hf" /> <input type="submit" …
3
votes
2answers
25 views

Is there a faster alternative to BeautifulSoup?

I have a piece of code that basically extracts text from a page. It uses BeautifulSoup to first remove script, style and noscript tags and then find all the text in the page and return it. I don't …
0
votes
1answer
29 views

Interface decouples the client

Can you please explain how interface decouples client.
1
vote
4answers
22 views

How do I select an image within two <div> tags?

Code is as follows: <div id="compare_view" align="center"> <div id="compv-navbar"> <img src="image1.png"> | <img src="image2.png"> | <img src="image3.png"> …

15 30 50 per page
1 2 3 4 5 54719