0
votes
1answer
2 views
How do I tell PyLint “it’s a variable, not a constant” to stop message C0103?
I have a module-level variable in my Python 2.6 program named "_log", which PyLint complains about:
C0103: Invalid name "_log" (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)
Having read this answer …
0
votes
0answers
1 views
Migrating Data in a Rails Migration
Let's say you have "lineitems" and you used to define a "make" off of a line_item.
Eventually you realize that a make should probably be on its own model, so you create a Make model.
You then want …
0
votes
0answers
1 views
NSKeyedUnarchiver objects getting broken?
I have an array that I'm saving to NSUserDefaults, containing an array of my custom class Assignment, which conforms to the NSCoding protocol. The array saves and loads properly, and I can verify that …
0
votes
0answers
3 views
How to logout facebook user?
How to logout or disconnect facebook user in facebok connect session?
I'm using facebook developer toolkit. After using "connectSession.Logout();" method "connectSession.IsConnected()" is still …
0
votes
0answers
1 views
cakephp unit testing models, fixtures problem
Hey all,
So i'm working with CakePHP v1.2.5. On my current project, I decided to start writing tests as I code the functionality (yay TDD). I'm having trouble with fixture loading though.
To aid in …
0
votes
0answers
1 views
NHibernate MultiCriteria and DistinctRootEntity
I have two entities that are linked via a many to many - Tags and Posts.
For an admin screen, I would like to return paged results, so I'm using a multicriteria to pull back my objects, as well as …
0
votes
1answer
4 views
Seeing new properties on a custom UserControl in Visual Studio
I have two C# .NET projects in my solution. One project is a DLL that contains a WinForms custom UserControl. The other project is a WinForms EXE that references and uses that UserControl on a Form.
…
0
votes
2answers
14 views
Is my asynchronous I/O callback function recursive?
I'm writing an asynchronous read callback function and as I'm learning C# at the moment would like to ask if the following is recursive (It's not mine but mine will be similar is construct):
…
1
vote
3answers
17 views
How to send web page to users browser
Hi, I was wondering if you can send a web page to a user without them clicking a link to see it
0
votes
0answers
7 views
Possible to print list items hidden by Jquery “slideup” function
i'm trying to get this accordion to expand when printed. the code degrades gracefully when javascript is turned off, but it just doesn't expand when printing.
<style type="text/css">
@media …
0
votes
1answer
10 views
What kind of protocol is being used here to communicate with PayPal?
I know that there are various ways to use PayPal's API (SOAP, etc), but I don't know anything about them, so in an attempt to broaden my knowledge on the subject, would you please tell me what is …
0
votes
1answer
7 views
Edit and Continue in Silverlight?
Edit-And-Continue is one of my favorite debugging tools which I have previously used on C# based Winforms and ASP.NET projects. However, I'm running a Silverlight 3.0 application on VS 2008 and …
0
votes
0answers
2 views
pathname translation in Emacs for finding local source file path from remote (ssh compile) error filenames
Is there some sort of general pathname-rewriting/normalizing facility I can exploit in Emacs to allow source files in compile-mode to be translated to local paths based on remote paths? I was hoping …
0
votes
1answer
20 views
List of open-source “stuff” that every web developer should know about.
These are some of the things that every web developer should know when building a web app.
This tools will save everyone lots of time. Tools like "memcached" and "beanstalkd" are super dead simple …
0
votes
0answers
2 views
Drupal External Authentication
I have a cURL PHP script which is able to validate a username/password against the external source.
What is the best way to integrate this as a login requirement for (select) users in Drupal?
