Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

47
votes
4answers
18k views

Is there a free alternative to ReSharper?

I'm wondering if there's a freeware and/or open source alternative to ReSharper on the market.
46
votes
23answers
8k views

Is a successor for TeX/LaTeX in sight?

TeX/LaTeX is great, I use it in many ways. Some of its advantages are: it uses text files, this way the input-files can be diffed and many tools exist to work with text it is very flexible it has a ...
21
votes
6answers
5k views

Editors with MiniMap like Sublime Text

Are there any other editors other than Sublime Text with the MiniMap feature as seen bellow? The reason why I'm asking this because Sublime Text isn't cheap for a text editor and besides I've tried ...
20
votes
7answers
5k views

A free alternative for ExtJS

I am looking for a framework such as ExtJS with similar controls and the important thing: The Layout. ExtJS is my favorite framework, but I can't afford it at the moment for some commercial projects I ...
18
votes
18answers
1k views

What is the state of non-Objective-C programming for iPhone?

After spending three weeks learning Objective-C and Cocoa programming for my work, I've been tasked with researching alternatives to it for iPhone development. I know of two existing alternatives, ...
18
votes
8answers
1k views

Are there any alternatives to Paypal that still have a robust API?

I currently sell a small software program and we use Paypal to handle receiving payment via Credit Cards. Its fees are really high and some of their policies are a little overreaching. What ...
16
votes
7answers
5k views

Looking for free GITHUB (enterprise/FI edition) alternative for private installation

Are there any good alternatives for Github Enterprise Edition for a private network? have about 30 dev's and a ton of projects. Moving away from Subversion as well so any methods to keep the history ...
16
votes
14answers
1k views

An Alternative OO Language to C++ with Similar Powers? [closed]

Greetings All, I'm looking for an OO language that support pointers and (if possible) GC. Though it would be nice NOT to enforce GC and allow for override/customize it. I'm open to both VM and ...
16
votes
6answers
1k views

Why avoid CGI for Python with LAMP hosting?

I have been using PHP for years. Lately I've come across numerous forum posts stating that PHP is outdated, that modern programming languages are easier, more secure, etc. etc. So, I decided to start ...
16
votes
13answers
9k views

Alternatives to SQLite?

I've used SQLite before as a datastore for a C# winforms application, and it was great, however, it does possess many shortcomings. I'm aware Microsoft have a product called SQL Server Compact ...
15
votes
18answers
4k views

Is there an alternative to CSS?

Is there a style sheet formatting language alternative to CSS? Or is CSS the current single language for doing Style Sheet formatting type things? I looked at the write up of CSS on Wikipedia ...
14
votes
9answers
512 views

Are there any languages that fit the same niches as C?

Do any proposed, or implemented languages fit in the same (enormous) niche as C, with the intention of being an alternative, while maintaining all the applicability to OS, high performance, embedded ...
12
votes
1answer
197 views

.NET alternatives to Yahoo Pipes

Similar to this question, except .NET alternatives instead. Excerpt rom http://pipes.yahoo.com/pipes/: About Pipes Pipes is a powerful composition tool to aggregate, manipulate, and mashup ...
11
votes
4answers
1k views

Opensource alternative to postSharp that supports easy custom attributes

Does anyone know a opensource alternative to postsharp thats as easy to use and supports attribute based stuff? I've seen AspectDNG which is slightly similar but creating those attributes is like c++ ...
11
votes
5answers
7k views

Alternative to mysql_real_escape_string without connecting to DB

I'd like to have a function behaving as mysql_real_escape_string without connecting to database as at times I need to do dry testing without DB connection. mysql_escape_string is deprecated and ...
10
votes
11answers
1k views

Modern language with the advantages of FORTRAN?

I've been working with a lot of FORTRAN 77 lately, and though I had reservations at first, I now see some great qualities of the language. It is: Simple to learn (no object-oriented or ...
10
votes
2answers
1k views

What Log4j alternative logging libraries are available?

What logging libraries do you recommend as alternatives to Log4j? Do these libraries work with Spring and Hibernate? Are they compatible with Slf4j or Jakarta Commons Logging?
10
votes
12answers
3k views

faster alternative to memcpy?

I have a function that is doing memcpy, but it's taking up an enormous amount of cycles. Is there a faster alternative/approach than using memcpy to move a piece of memory?
10
votes
14answers
789 views

Why don't popular programming languages use some other character to delimit strings? [closed]

Every programming language I know (Perl, Javascript, PHP, Python, ASP, ActionScript, Commodore Basic) uses single and double quotes to delimit strings. This creates the ongoing situation of having to ...
10
votes
4answers
20k views

Providing alternative images if Adobe Flash isn't available

Are there any ways providing an alternate GIF/PNG image, in case the user has no Adobe Flash installed and/or deactivated. I’ve found recommendations, like the following from W3C, which determine via ...
9
votes
3answers
2k views

How can I use FileInfo class, avoiding PathTooLongException?

How can I use (to avoid PathTooLongException): System.IO.FileInfo with paths bigger than 260 chars? Are there similar classes/methods that return the same result of FileInfo class?
9
votes
6answers
2k views

Is there a way to build a Flash 9 SWF from an FLA file without using the Flash IDE?

Two reasons this would be useful, in case there's some other way to achieve these goals: 1) Building in the Flash IDE is really slow; I was hoping a third-party compiler would be faster. 2) It would ...
8
votes
7answers
689 views

What good open source REST webservice technology is out there?

I'm looking for an alternative to the awesome .NET (WCF) REST capabilities. Why? I have deep interest in open source technology, but when it comes to webservices I do not have any experience except ...
8
votes
1answer
1k views

Alternative to WebSockets

I have been quite excited by the prospect of WebSockets. As I have built a few Desktop socket based games, and Web games in the past, I was keen to combine the two approaches to building multiplayer ...
8
votes
7answers
4k views

C# - Alternative to System.Timers.Timer, to call a function at a specific time

I want to call a specific function on my C# application at a specific time. At first I thought about using a Timer (System.Time.Timer), but that soon became impossible to use. Why? Simple. The Timer ...
8
votes
6answers
2k views

Are there any good alternatives to WebSVN?

We've been using it for the past few years and not the most happy with it at the moment. Is there any good alternatives out there?
8
votes
7answers
2k views

Ideas on this alternative to ORM + RDBMS?

I am currently developing a proof of concept for an alternative data store. The reason why is I need to enhance a read-mostly clustered webapp, but also because I want to free myself from the pain of ...
7
votes
5answers
282 views

Alternative to boost::shared_ptr in an embedded environment

I'm using C++ in an embedded linux environment which has GCC version 2.95. I just can't extract boost::shared_ptr files with bcp, it is just too heavy. What I'd like would be a simple smart pointer ...
7
votes
2answers
285 views

Best alternative Android SQLite library?

For some reason I want to avoid Android's official SQLite implementation. There seem to be very few alternative, and they seem to be very new, not-tested-much libraries with few operations ...
7
votes
10answers
700 views

Alternatives to Thread.Sleep()

Every N minutes we want to run through a list of tasks. So we've created a task executor with a do { DoWork(); }while(!stopRequested) Now we want to have a pause between work cycles. Everyone ...
7
votes
3answers
645 views

Alternatives to SharpZipLib for use with .Net C# application

Does anyone have recommendations for an alternative library to SharpZipLib for full featured ZIP file handling using C#? The reason we're looking for an alternative is the licensing. Despite the ...
7
votes
4answers
4k views

jquery tablesorter plugin - retain alternative row colors

i took an html table that i am applying alternative row colors and i just added jquery table sorter on it so users can sort the table. the issue is that the alternative row colors are all messed up ...
7
votes
8answers
2k views

Flow Based Programming

I have been doing a little reading on Flow Based Programming over the last few days. There is a wiki which provides further detail. And wikipedia has a good overview on it too. My first thought ...
6
votes
2answers
203 views

Alternative for Obfuscation in the .NET world

Are there any alternatives for obfuscation to protect your code from being stolen?
6
votes
1answer
697 views

HTML5 FileReader alternative

I need some help with HTML5. I have a script that loops through all the uploaded files and gets each file details. Currently I am using HTML5 techniques that include FileReader. The FileReader ...
6
votes
4answers
2k views

Looking for a simple alternative to Thread.Sleep

HI, During the development of my app, I was using Thread.Sleep to give our external devices some time to adjust to settings before making queries, as they are quite old and slow. I now want to ...
6
votes
3answers
2k views

Mechanize and BeautifulSoup for PHP?

I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?
6
votes
4answers
6k views

Nicer alternative to the default Rails scaffolding stylesheet: scaffold.css?

I'm looking for a more attractive alternative to the standard scaffold.css? Has anyone come across a stylesheet that was specifically designed as a more attractive, less sparse alternative to the ...
6
votes
7answers
2k views

Alternative to Esper?

I am really interested in Complex Event Processing and have been looking at Esper. However my company has an anti-GPL stance and I was wondering if there are non-GPL alternatives out there under a ...
5
votes
5answers
128 views

is there any similar treegrid similar to jqGrid Treegrid but supports frozen columns

I like using jqGrid treegrid but there is one feature that i absolutely need which is frozen columns. Is there any similar quality product that supports frozen columns. I know that jqgrid supports ...
5
votes
7answers
727 views

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 ...
5
votes
6answers
2k views

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?
5
votes
3answers
467 views

What are good reasons to choose TIMESTAMP over DATETIME columns in MySQL?

Disclaimer: This might be a duplicate of datetime vs. timestamp?, but I feel I am not convinced of the answers: My question is: What are the good reasons to choose TIMESTAMP over DATETIME columns in ...
5
votes
3answers
366 views

com+ alternative in .net?

What is the com+ alternative in .net? Is it .net remoting or WCF or something else.
5
votes
6answers
2k views

Free Codesmith alternatives?

Are there any free/open source alternatives to Codesmith that would be comparable in features and generate .NET code?
5
votes
4answers
2k views

what happened to mongrel? any alternatives on windows?

I've jus saw that mongrel's last updat was about one year ago... http://mongrel.rubyforge.org/wiki/WikiStart?action=diff&version=35 has it been disontinued? is there any other lightweight ...
5
votes
9answers
2k views

Easy way to store and retrieve objects in Java without using a relational DB?

Do you know of an "easy" way to store and retrieve objects in Java without using a relational DB / ORM like Hibernate? [Note that I am not considering serialization as-is for this purpose, as it ...
5
votes
19answers
2k views

Learning PHP for fun and profit

I'm currently working as an applications developer, with a Java and C++ background, but I'd like to be able to work on more web-based projects. I was originally thinking of learning one of the newer ...
4
votes
3answers
174 views

Android AutoCompleteTextView suggest alternative

is it possible to have an AutoCompleteTextView, that looks for a string, but suggests an alternative string? For example if the user types in 'Yau' or 'yauh' it would suggest 'Yáuh' so the user ...
4
votes
1answer
89 views

Alternative RegEx engine for .NET, supporting recursion

I came across a parsing problem, which would take a quite small regular expression to solve, except that the pattern to work, it should be recursive. Example: {([^{}]*(?:{(?1)})?) What I want it to ...

1 2 3 4 5 7