Tagged Questions
The intermediate tag has no wiki summary.
22
votes
22answers
2k views
What comes next after “Learning Perl”?
I decided to learn Perl after realizing that most of my bash scripts were getting rather unwieldy in their current form and would become a maintenance nightmare if I continued down that path. A friend ...
15
votes
5answers
6k views
SQLDataReader dispose?
I'm working with legacy code here and there are many instances of SQLDataReader that are never closed or disposed. The connection is closed but, I am not sure if it is necessary to manage the reader ...
10
votes
2answers
314 views
Non-Trivial Lazy Evaluation
I'm currently digesting the nice presentation Why learn Haskell? by Keegan McAllister. There he uses the snippet
minimum = head . sort
as an illustration of Haskell's lazy evaluation by stating ...
4
votes
3answers
539 views
Accessing the Twitter API via PHP
I'm working on making my script mesh with OAuth instead of Basic Auth, and I'm stuck. So far, I'm just working on authenticating at the moment, but I can't get that working. This code:
<?php
...
4
votes
4answers
374 views
Can you recommend a MySQL Book for an “intermediate” developer?
I'm a web developer looking to improve my MySQL skillset. Basic CRUD, joins, etc are all pretty par for the course; I'm looking to learn more about efficiency, avoiding bottlenecks, optimizing ...
3
votes
2answers
169 views
what do I need to start developing in .NET
thanks in advance for your time,
Over the last year I have moved from a beginner PHP developer to a more intermediate developer, I use Mac OS X and a local development server environment (MAMP).
I ...
3
votes
8answers
1k views
Java book for programmer with intermediate experience
I am well aware of this previous question here and have heard great things about those books. I actually bought two of them, Effective Java and Java in a Nutshell as an early Christmas present.
I am ...
3
votes
7answers
161 views
way to the intermediate level
I've got a question related to the practical learning of programming skill.
I'm acquainted with basic programming stuff, know syntax and some concepts of several languages (Pascal, PHP, Python, now ...
2
votes
4answers
121 views
How to create an in-between library?
I am looking for some information on how to achieve something with libraries in C++ and c#.
What I would like to know is how to approach the following problem:
C# application: -has a window
C++ ...
2
votes
0answers
74 views
IP Hook through java
Hey guy's I'm an intermediate programmer looking to learn more. I'm trying to figure out the basic idea about IP Hooking. I'm trying to make a program similar to what the hosts file does in windows ...
2
votes
2answers
181 views
How do I get list of all Python types (programmatically)?
A discussion in a recent question here (what-is-the-most-pythonic-way-to-have-a-generator-expression-executed) - that min/max() need objects to be comparable - made me wonder how do i find which ...
2
votes
1answer
175 views
Hibernate mapping to manage bidirectional relationship using intermediate table
I have an object hierarchy that is as follows.
Party > inherited by > Organization and Person
Organization > inherited by > Customer, Vendor
Person > inherited by > Contact
In the database I have ...
1
vote
3answers
88 views
Cool APIs to help learn C++? [closed]
This isnt quite a programming question, but for my CS class next semester, we're learning C++. Now I'm gonna be proactive and learn some over hte break, and I was wondering if there were any cool ...
1
vote
1answer
44 views
Sharing intermediate files between C++ projects?
I'm currently trying to figure out whether it is possible for two different native Visual-C++ projects (that have exactly the same compiler settings) to share their intermediate files (obj, pch, ...)
...
1
vote
1answer
60 views
Core Data InterMediate Entity
There are 3 entity
Father ---->Name
Son ---->Name
FatherSon---->ID
Relationships
Father --->>fatherson
Son --->sonfather
FatherSon-->father---->>fatherson, son---->sonfather
I have ...
1
vote
5answers
145 views
optimize loop around a get and function call using returned value?
Here is a fragment getting data from a buffered source and sending it along to be processed. If the queue is empty, get() returns a null, and the process method is happy to take a null and do nothing.
...
1
vote
2answers
143 views
GPS intermediate driver
I am writing a program that should take several GPS coordinations and do some processing on them. I assume the server on which the app is going to be installed should be equipped with a gps ...
1
vote
4answers
169 views
Problem with processing intermediate results in MySQL stored procedure
i try to do a little weighting of my data by using a stored procedure. Basically this means multiplying certain columns with their respective weights and adding them up in the end.
I have written the ...
1
vote
2answers
517 views
How to retrieve jQuery modified innerHTML from C#
Hey guys. I'm trying to access the innerHTML of a span tag modified by jQuery using C#. This is my first project shunning the AJAX libs in favor of jQuery, so I'm not sure how I can get the codebehind ...
1
vote
1answer
468 views
Listing mutual friends in Core Data
I'm working with an intermediate join table in Core Data similar to the friends example from Apple's Core Data Programming Guide. Sorry, can't post pictures yet due to no reputation points. Its a ...
0
votes
4answers
62 views
How do I return interim results from Callable?
I have Callable object executed using ExecutorService.
How to return interim results from this callable?
I know there is javax.swing.SwingWorker#publish(results) for Swing but I don't use Swing.
0
votes
1answer
126 views
c++ for intermediate programmers? [closed]
Possible Duplicate:
The Definitive C++ Book Guide and List
ok so i know the basics of c++, and java (just like variables, loops, switch statements, a little on OOP, i have looked at ...
0
votes
1answer
82 views
For an intermediate programmer, how hard would it be to modify google chrome OS and how would one go about it? [closed]
I think chrome os is based on linux and written in c/c++. I haven't looked at the source but presumably it wouldn't be too hard to change some of the images and ui etc. but if I wanted to for example ...
0
votes
0answers
30 views
Intermediate User Interface Format
I'm looking for a standard format in which I can express a user interface that isn't tied directly to an implementation. I have a raw data model with various inputs and outputs, but I have a ...
0
votes
1answer
20 views
Provide 2 http responses, first will display loading, second will provide computed data
I have an application that takes a long time to compute data & provide results. Ideally I would want to display a loading symbol or something similar, immediately once the page is requested & ...
0
votes
5answers
191 views
I'm Getting Listless and Worried I'll Lose my Passion
So, I'm almost 100% self taught in programming (save for a course in C after I had already taught myself C). This means that to keep myself programming, I have to be constantly finding materials (i.e. ...
0
votes
0answers
208 views
hibernate modeling relationships managed through an intermediate table
I have a datamodel that has an intermediate table to manage relationships between entities.
For example, tables Person and Organization are related through the Relationship table
Party (table)
- ID
...
0
votes
1answer
72 views
XML and HTML = need help using HTML code
I'm converting my static HTML site to a dynamic PHP/XML-driven one.
This is my current code:
<div class="divider"></div>
<div class="main" style="width: 552px;">
<div ...
0
votes
2answers
1k views
django, access fields in intermediate model
I'm creating a Person Group and Membership as described in django docs for intermediate model.
class Person(models.Model):
name = models.CharField(max_length=128)
def __unicode__(self):
...
0
votes
4answers
719 views
Projects for C++ Beginner/Intermediate?
I really want to learn more about C++. I know the basics, and I know the concepts, and I have even been able to create C++ projects myself, but my problem is being able to view, fix, and add to code I ...
0
votes
1answer
113 views
Retrieve row order from DataGrid 1.0
I am working a legacy app which is .net 1.1 and I need to retrieve the rows in a datagrid post sort (by clicking on column header). This sounded like an easy task however, the answer seems to elude ...
0
votes
1answer
1k views
gfortran: how to control output directory for .mod files
Is there is a way to put .mod files, generated by gfortran (GCC), into a separate output directory? I know how to place object files or other output with the -o flag as in:
gfortran -c test.f03 -o ...
-1
votes
2answers
47 views
Calculate the intermediate value between 3 numbers (pseudocode)
How I can find the intermediate value between 3 integers? It is possible without using external functions or many conditional?