Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

69
votes
11answers
25k views

Robust, Mature HTML Parser for PHP

Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me ...
9
votes
7answers
454 views

Python for a hobbyist programmer ( a few questions)

I'm a hobbyist programmer (only in TI-Basic before now), and after much, much, much debating with myself, I've decided to learn Python. I don't have a ton of free time to teach myself a hundred ...
2
votes
2answers
115 views

Robust algorithm to assign chaperones to students

Here's the problem: Given 4 groups of students of sizes A, B, C and D, and a total of k chaperones, devise an algorithm for assigning chaperones to students in near-equal proportions. You can't just ...
1
vote
2answers
111 views

Java - Robustness and Code Reuse

I have a few doubts on java concepts: Is code reuse in java is similar to using functions as defined in other programming languages like C? Is Java robust by nature or does it provides a way to ...
1
vote
0answers
14 views

What is a plugin frameworks resposibility to prevent unwanted execution?

If one were to create, or use a pre-made, plugin framework, what would prevent a plugin author from executing malicious code or even a seperate program? Isn't this kind of what happened with dll ...
0
votes
2answers
53 views

How to (properly) use robust pthreads for process synchronization?

We have a bug in a production system, where a process segfaults while holding a shared memory mutex. We'd like it to release the lock when dying. We use sem_wait()/sem_post(), but doing my homework, ...
0
votes
2answers
246 views

Making this httpHandler more robust?

I have the following HttpHandler; I'm using it to push updates to the browser (where jQuery and GrowlUI are implemented) without the need for the browser to poll. I think all I've accomplished is ...
0
votes
12answers
566 views

Super Robust as chrome c++ and portable - tips - help - comments

We are producing a portable code (win+macOs) and we are looking at how to make the code more rubust as it crashes every so often... (overflows or bad initializations usually) :-( I was reading that ...