Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

56
votes
5answers
2k views

Web scraping etiquette

I'm considering writing a simple web scraping application to extract information from a website that does not seem to specifically prohibit this. I've checked for other alternatives (eg RSS, web ...
14
votes
12answers
481 views

Etiquette for refactoring other people's sourcecode?

Our team of software developers consists of a bunch of experienced programmers with a variety of programming styles and preferences. We do not have standards for everything, just the bare necessities ...
14
votes
1answer
304 views

Paying open source project members for bug fixes and features

I have a problem to solve that I think will take 4 days, but if I had a feature request sorted and a snapshot release then I reckon I could have it done in one. Superficially this creates a budget of ...
13
votes
14answers
749 views

How to deal with requests for ridiculous functionality in your software?

Of course, most of the time this type of request comes from management that neither has a clue about what the users really want, nor does [s]he have a clue about the technical aspects of building a ...
5
votes
4answers
203 views

Repository Commit Msg Etiquette

I've never had the chance to work with a team on a repo, so I'm wondering if there is a proper way to document your changes. For example, maybe add a tag(s) such as: bugfix, update, implement? Just ...
4
votes
2answers
165 views

Is there a “polite” way to maintain a local mirror of Drupal.org projects?

Now that Drupal.org has switched to using Git, is there an easy way to maintain an up-to-date mirror of a selected subset (or even all) of the core and contrib projects locally? Or would that be ...
4
votes
2answers
467 views

Proper etiquette for a web crawler http requests

I have a simple web crawler to request all the pages from a website's sitemap that I need to cache and index. After several requests, the website begins serving blank pages. There is nothing in ...
3
votes
3answers
31 views

Proper protocol for editing someone else's module

What is proper programming etiquette for editing someone else's open source module? I am completely new to the world of open source programming, and I am not sure of the best practices for editing ...
3
votes
6answers
213 views

Appropriateness of contacting workers for a job you are phone interviewing for?

Is it appropriate to contact programmers who work for a company you are applying to? I am really excited about a certain programming job that I am interviewing for soon, and I am reading a few ...
2
votes
2answers
53 views

Do you make a conscious effort to keep code compatible with older technologies when working on OSS?

I've been the creator of a small handful of little OSS projects in the past, and although in no case did I necessarily intend to recruit anyone else to join me on the project, I still wondered whether ...
2
votes
4answers
108 views

About screen on an iPhone app. Needed?

I've created an app, that is self-explanatory. What is the etiquette in the iPhone world: do I still need to have an About button that explains what the app does, website, email, all that? Or is ...
1
vote
3answers
291 views

Is it acceptable to delete a public git fork and replace it with a different fork?

If you delete a public git repository, and then replace it with a different one, can that cause complications? Background: A while ago, I branched a project and made a few commits, which have either ...
1
vote
3answers
117 views

Law & Etiquette of using Open Source

I'm using a BSD API to build my own API and I'm wondering if there is any restriction when I will release my own API in term of license choice, packaging, distribution ... I'm also curious about ...
1
vote
7answers
357 views

OO PHP direct member acccess

I always thought you should never set/get a member variable directly. E.g. $x = new TestClass(); $x->varA = "test": echo $->varB; I thought you should always use object methods to access ...
1
vote
12answers
477 views

Programming Certification Etiquette and Procedure - Additional Compensation

I'm scheduled to take the Zend PHP5 Certification next month and had a few questions regarding the aftermath. Specifically, I believe it is common to be deserving additional compensation after earning ...
0
votes
3answers
37 views

Proper form/etiquette for breaking/continuing loops [closed]

I'm curious as to what the norm is for breaking/continuing loops. I'm fairly new to the programming scene, and I'm wondering how often breaking/continuing loops is done. It is something generally ...
0
votes
2answers
82 views

How to change revision format in Google Code?

I'm REALLY new to DVCS and am trying out Mercurial with Google Code as I'd like to share some extensions that I recently wrote for Google Chrome. I notice that in Google Code, most projects seem to ...
0
votes
2answers
246 views

Accessing private variables when there's a getter/setter for them

I have a question about righteous way of programming in Python... Maybe there can be several different opinions, but here it goes: Let's say I have a class with a couple of private attributes and ...
0
votes
3answers
138 views

What's the requests/second standard for scraping websites?

This was the closest question to my question and it wasn't really answered very well imo: http://stackoverflow.com/questions/2022030/web-scraping-etiquette I'm looking for the answer to #1: How ...
-1
votes
2answers
76 views

argument as a synonym for parameter in c, and c++ [closed]

why exactly is the term argument used interchangeably with the term parameter in regards to functions or methods? seems ridiculous to me and in fact undermines programming altogether, except for the ...