I need to reflect progress of execution of numerous tasks in real time.
I wondering is it any WPF\Silverlight control which do this.
I couldn't find anything suitable on Google\Stackoverflow.
I want to use fink to install smalltalk. I found this on the fink website. I was wondering if there was some way to install smalltalk from the url (sudo fink install smalltalk does not work). Is there a way to do this? Or do I not understand fink correctly?
I'm working with a client on a rails project that wants to have a user model with 'stub' accounts that are created by an administrator, but that can later be claimed by the actual user, with authentication enabled on that user once the owner has claimed it. Was wondering if anyone has done this before, and what the best approach would be. We're currently using Authlogic to handle authentication.
In my current adventure of learning hibernate and setting it up to use an appserver's connection pool, most examples and resources out there point you in the direction of binding the SessionFactory to a JNDI resource in your appserver in the process.
I wondering what the benefit of this is? Since the you can access a the connection pool with out doing this.
I am wondering if there is a way to change the schema that I am working in while inside Management Studio. For instance I may have a default schema of dbo. But there are times I may want to query objects in say the accounting schema. It would be nice if I could issue a command and make it so I no longer must include the accounting before tables and views. But the next time I go in, I will be back to default of dbo.
I'm calling CreateReport method on ReportingService web service to create a report on the server. I was wondering if there is a way to give this newly created report a Guid I want for the ItemID in the Catalog table?
I was wondering, why do static Create methods exist?
For instance, why use this code:
System.Xml.XmlReader reader = System.Xml.XmlReader.Create(inputUri);
over this code:
System.Xml.XmlReader reader = new System.Xml.XmlReader(inputUri);
I cannot find the rationale for using one over the other, and can't find any relation between classes who use this construct over the other.
Can anyone shed some light on this?
I get an error that says
Parse error: syntax error, unexpected
T_PRIVATE in
E:\PortableApps\xampp\htdocs\SN\AC\ACclass.php
on line 6
while trying to run my script. I'm new to classes in PHP and was wondering if someone could point out my error. Here's the code for that part.
<?php
class ac
{
public function authentication()
{
private $plain_username = $_POST['username'];
private $md5_password = md5($_POST['password']);
$ac = new ac();
I am making use of an external unmanaged dll using PInvoke and the DllImport attribute. eg.
[DllImport("mcs_apiD.dll", CharSet = CharSet.Auto)]
private static extern byte start_api(byte pid, byte stat, byte dbg, byte ka);
I am wondering if it is possible to alter the dll file details (mcs_apiD.dll in this example) dynmically in some manner, if for instance I wanted to build against another dll version
I've been using the free naggy version of Smart FTP for a while. It's very good, but then it became shareware only.
So I was wondering, are there any other good FTP clients for Windows?
The ones I tried but didn't like was:
CoreFTP
FileZilla (this one was especially bad :( )
Yesterday I ran across the jcotton framework for creating canvas applications and I was wondering what the state of the art is.
Do other such frameworks exist? If so what are their [dis]advantages?
Hi I am learning C++ and at the very beginning used a Command-line... then I started using Xcode (and since then couldn't switch back to command line) and was just wondering some specific reasons/situations to use Command-line instead of IDE...
Ning provides a structured content dump of Ning sites when requested. I was wondering whether a) the schema for this dump is publically specified and b) any open-source web applications can use such a dump to populate a community website.
I'm considering building a Church Management System (ChMS), essentially a CRM, but specifically tailored for churches. I've looked at several existing CRM and open source ChMS solutions but have not been satisfied with any of them. Before I start writing something from the ground up - I was wondering if anyone was aware of an open source asp.net application that might be a good fit for this project? Particularly, the application needs to perform CRUD and optimally allow for dynamic user-based creation/editing of fields associated with contacts etc.
I am trying to design a Blackberry Application and I am wondering if there are any resources on how to create custom user interface elements, skin existing ones and what other possibilities are there?
I have developed a few iPhone applications with custom UI and stuff, so not sure what BB world offers in terms of UI development.
Any tips, suggestions or ideas would be great.
Hey, I'm just wondering if it's possible to have a form in html do two things on submit, have the action go to a url like normal (for a search) but also run a mysql command.
Thanks!
Hi Guys, I've been spending some time doing JavaCC parser generation for assignments at University and was wondering if there is a similar simple parser generator framework for .NET available?
I know there is ANTLR, but I found it a bit too big for my taste and really started to like the simplicity that JavaCC brings..
greetings Daniel
I am currently using the Plistlib module to read Plist files but I am currently having an issue with it when it comes to Binary Plist files.
I am wanting to read the data into a string to later to be analysed/printed etc. I am wondering if their is anyway of reading in a Binary Plist file without using the plutil function and converting the binary file into XML?
Thank you for your help and time in advance.
I am using xdebug with eclipse (on OSX). I think I remember reading somewhere that it was possible to link the error output (or the Call Stack) to a text editor (like Textmate). I was wondering if its possible to do the same thing for Eclipse.
When I'm building a class library I usually create a file Enums.cs to hold all the enums used in the assembly. Here is an example:
namespace MyNamespace
{
public enum Colors
{
Red,
Green,
Blue
}
public enum Shapes
{
Circle,
Square,
Triangle
}
}
This makes all my enums easy to find, well organized and easy to access in code.
I'm wondering if there is any reason why this would not be such a good idea?
Is there any way to change a variable while out of scope? I know in general, you cannot, but I'm wondering if there are any tricks or overrides. For example, is there any way to make the following work:
function blah(){
var a = 1
}
a = 2;
alert(blah());
I was wondering how to build a FQL query where i could receive links/urls of my app that an user's friends have liked. I got the link table which looks good but there i need an object id, which i dunno how to retrieve for my urls.
I'm planning on using Apache torque as my object-relational mapper (ORM), and I was wondering if anybody has any suggestions around what framework to use for presentation layer with torque. maybe Spring?
I don't know if this helps, but my application is basically going to be bunch of forms to input data and based on that data, I'll generate reports in form of a graph or chart.
I am working on an app that uses the GPS on my g1. I'm wondering if it is possible that when I am using the app I can have it update my Google Latitude location every x number of minutes. Any thoughts on how this may be accomplished?
Is there a pre-existing library to extract plain text form docx, pptx, and xlsx files?
I require this to populate a lucene.net index.
I've found this example which extracts text from docx and it seems to work ok.
But before building my own solution based on this I was wondering if there's something already available for the other file formats?