alternative

Alternative to database for storing data?

I was using SQL Server Compact Edition (local-database) for my application. But while I was using the entity framework, I kept experiencing a very annoying UpdateException. My database only has two small tables with a foreign key relationship linking them together. So I am asking if there is any alternative to a database? Or is that the ...

What alternatives to Spring+JSF/Facelets exist for web-development in java?

Let's consider only standard MVC architecture and don't touch SOFEA. I'm actually do my web-development with JPA (Hibernate)+Spring+JSF/Faceletes. To use JSF efficiently I also use at least Apache Orchestra and some components library (like Tomahawk or RichFaces). I've already stepped on a rake several times with jsf. The worst thing ...

Better way to send bulk mail using PHP without PEAR Mail and 'mail' function

What script, class or function you use to send many emails, excluding the in-built 'mail' function and excluding the PEAR Mail (many problems and compatibility issues in PHP 5.3). I want to send about 5000 emails per 'shot', but 'mail' function connect and disconnect for each email. PEAR Mail have many problems. I've tried Swiftmailer,...

PHP support printer settings?

Hi all, In VB.net i heard about there is an option to change printer settings like page type and margins. when we want to print contents for a web apps we use javascript window.print() option, but i want to set page settings through php how it is possible? remember i want to take a print in client machine through browser not in a web se...

Alternatives to client-server (including web and cloud computing) paradigm

I have been writing software for networked environments for some 15 years now, and am wondering if client-server is really "the best solution" out there for many types of distributed, or networked applications. My question is - are you familiar with other paradigms such as peer to peer software, distributed workload distribution / compu...

Alternative to web services in Java

I have this external module of my system and I thought to integrate it with web services. So I wrote the server using annotations (so far so good) and then I used Eclipse (new Web Service Client wizard) to generate the boilerplate code for the client. The result is an ugly bunch of code far from configurable, painful to test and to chang...

C++ and,or,not,xor keywords

Possible Duplicate: The written versions of the logical operators. I notice that C++ define keyword and, or, not, xor, and_eq, or_eq, not_eq and xor_eq as an alternative to &&, ||, !, ^, &=, |=, != and |=. and they're rarely used! What's wrong? Are they not portable? ...

What good alternatives to CHM are there for context sensitive help documents in desktop applications?

We currently have a number of desktop applications (PowerBuilder, Winforms, WPF) that make use of a single CHM for context sensitive help. We'd like to move away from CHM as it's difficult to maintain but we've not found a suitable alternative. Ideally we'd like our developers to keep the help files up to date (perhaps in a wiki) as they...

Alternative to WhitePages API?

I'm using the WhitePages API ( developer.whitepages.com ) to get a phone type (landline or cellular) and the phone's service provider (Verizon, T-Mobile, etc), but they only have a personal API which limits you to 2 calls a second and/or 1,500 calls a day. The paid version, or "Pro", is a minimum of $500 a month and/or $0.10 a call. Doe...

Alternative for PHPlivedocx?

Hello, Is there any other free alternatives to PHPliveDocx? I would like to create a Word document based on templates and user inputted data. The template will resides on the server and the client(online or c# windows application) will be used to collect user input. Once data has been collected, server-side script(PHP) will be used...

Alternative to jQuery ui sortable needed

I'm trying to use jQuery ui sortable but it's not working out for me, it's having scroll offset issues when scrolled in Firefox. The goal is to have a list of <li> tags that a user can re-order with their mouse. My question is, what alternatives exist for that plugin? ...

pyenchant RPM for alt-install of python2.6. ELF class error

I know what my problem is with this issue, but I'm a little confused about how to best go about fixing it. I have a RHEL 5.4 system, with Python2.6 alt-installed (via the geekymedia RPMS). everything seems to be working. As I tweak a spec file, I'm able to build out RPMs to work with this new Python install. I'm building all of my RP...

Is there any addon that can make javascript execute before the page loads??

Well, greasemonkey can execute users script but only after the page loads fully. Is there any script that can take user script (javascript) and executes it before the page downlaods any elemts. for instance, As soon as the HTML file is downloaded, the user script should execute so that i can prevents the download of embedded elements lik...

JavaScript: Alternative to JQuery's (dual) Slider control?

I am using the JQuery Slider control for use as a double sided slider (dual slider). It's a great UI control but I'm looking for an alternative that isn't so "fat". Right now, just for me to use the Slider control, I have to include: JQuery core JQuery UI core JQuery Slider plugin When I both minimize using Google's awesome Closu...

Looking for a lightweight java-compatible in-memory key-value store

Berkeley DB would be the best choice probably but I can't use it due to licensing issues. Are there any alternatives? ...

Alternatives of Datatable

In my web application, I have a dynamic query that returns huge data to datatable, and this query is often recalled with different parameters. So database is exhausted. I want to get all record with no parameters to an object, and perform queries (may be with linq) on this object. So database will not be exthausted. Which objects can b...

Alternative Django Authenication

Need to integrate Django with an existing authentication system. That system has it's own database, API, login/logout,edit profile web pages and cookie. (I may have to add a few additional profile fields stored/updated locally) What's the proper approach to substitute the out-of-the-box authentication in Django? ...

Alternative to Galileo GWS

Please note that this Galileo is absolutely not related to Java. Galileo is basically a set of web services which can be used to book airline tickets. Originally, it was supposed to be used via Galileo Desktop, whereby operators would enter various commands to perform required operations. For example, SA*AZ610J20JULFCOJFK will "Disp...

Alternative for Garbage Collector

As in question, I'd like to know best alternative for garbage collector, with it's pros and cons. My priority is speed, memory is less important - if there is gc which doesn't make any pause, let me know. EDIT: maybe I should add, that I'm working on safe language, and garbage collecting or its alternative has to be used ...

PHP include() alternative?

Hello, I want to know if my code is safe and if there are other safer alternatives to include external files.. So this is my code example, is it safe? How can I make it safer? Thanks! <?php switch($_GET['p']){ case 'test1': include 'test1.php'; break; case 'test2': include 'test2.php'; break; case 'tes...