Tagged Questions
The rewrite tag has no wiki summary.
63
votes
21answers
3k views
When do you know it's time to rewrite an application
This is humbling, but probably something most can relate to. I am currently adding functionality to a PHP application I wrote for a client 2 years ago. In the interest of full disclosure, this was ...
47
votes
29answers
2k views
When is it good (if ever) to scrap production code and start over?
I was asked to do a code review and report on the feasibility of adding a new feature to one of our new products, one that I haven't personally worked on until now. I know it's easy to nitpick someone ...
36
votes
9answers
2k views
Is R “that bad” that it should be rewritten from scratch?
In the past week I've been following a discussion where Ross Ihaka wrote:
I’ve been worried for some time that R
isn’t going to provide the base that
we’re going to need for statistical
...
33
votes
19answers
4k views
Python Performance - have you ever had to rewrite in something else?
Has anyone ever had code in Python, that turned out not to perform fast enough?
I mean, you were forced to choose another language because of it?
We are investigating using Python for a couple of ...
18
votes
4answers
3k views
ASP.NET URL Rewriting
How do I rewrite URL's in ASP.NET?
I would like users to be able to goto http://www.website.com/users/smith instead of http://www.website.com/?user=smith
17
votes
17answers
918 views
When is it acceptable to rewrite someone else's code?
I largely work as my own dev shop, for a small organization in a large multinational. Almost every day, I find myself rewriting or upgrading my own code to a more informed solution. Obviously, this ...
17
votes
13answers
1k views
Dead languages
At which point should you (or your company) ditch the language used for many years, for which you have the workforce, simply because it became irrelevant or much better alternatives came into the ...
16
votes
10answers
608 views
Refactoring or Rewriting Monolithic PHP Spaghetti Codebase
I've inherited a really poorly designed PHP spaghetti code project. It's been gaining a good bit of traffic recently and is starting to have performance issues on top of the poor monolithic code ...
14
votes
2answers
7k views
Is there a url rewriting engine for Tomcat/Java?
How can we provide URL-Rewriting support for Tomcat/Java ?
mod_rewrite provides this functionality for Apache and can modify URLs even before they reach the handler (e.g. PHP). Is there a similar ...
13
votes
18answers
2k views
Rewrite of legacy code
My department is currently faced with the responsibility for the task of maintaining a rather large COBOL code base. We are wondering how to add new features to keep up with business needs. COBOL ...
12
votes
5answers
3k views
Line endings messed up in Git - how to track changes from another branch after a huge line ending fix?
We are working with a 3rd party PHP engine that gets regular updates. The releases are kept on a separate branch in git, and our fork is the master branch.
This way we'll be able to apply patches to ...
11
votes
11answers
367 views
Is this the “one in ten” time to rewrite?
I'm very much against rewriting an application if it can be avoided. I understand the rule that 9 times out of 10, it's better to refactor, but I'm in a situation where it might be the one time in ...
10
votes
11answers
705 views
Rewrite or repair?
I'm sure you have all been there, you take on a project where there is a creaky old code base which is barely fit for purpose and you have to make the decision to either re-write it from scratch or ...
9
votes
12answers
2k views
Licensing a rewrite from GPL to MIT
I've found a unmaintained program I have a need for, but it's not perfect, so I would like to fork it and to continue fixing it. The current version is licensed under the GPL (version 2 and up), but I ...
8
votes
1answer
211 views
Removing private information from old Git commits
I have a project versioned with Git that I'd like to make open source, but it has some private information in it that is specific to the environment in which it was originally used. I'm going to ...
8
votes
3answers
7k views
asp.net, url rewrite module and web.config
i'm using ASP.net with .NET 3.5 on IIS7 (Vista) with the URL Rewrite Module from Microsoft.
This means, that i have a
<system.webServer>
<rewrite>...</rewrite>
...
...
7
votes
13answers
398 views
When to give in and start The Big Rewrite?
I've had my share of projects where the first thing I think is: "This code sucks; let's just rewrite it in framework X." Everybody feels the urge at some point. In fact, I think I've had the urge to ...
6
votes
1answer
103 views
htaccess rewrite on urls without common pattern
In a new project, a website has a set of static html pages. The owner needs to convert them to dynamic ones.
Each page has: a text section, a small photo plus some links towards other pages, related ...
6
votes
1answer
561 views
git: rewrite history: reorder and merge commits
Current situation:
origin/mybranch --- A1 --- B1 --- A2 --- B2 --- A3 --- B3 mybranch
I want to clean that history up (A1 to B3), esp. since I have not pushed it anywhere yet and because I want ...
6
votes
9answers
595 views
Cost of Rewriting a PHP application to Rails or Django
I am wondering your thoughts on doing a complete software rewrite. We realized after not long after we completed our software app that the framework was not going to scale well over time. For the ...
5
votes
1answer
160 views
How to edit a jquery function
I'm trying to modify the 'attr' function in the jQuery (V.6.1) core.
I have a plugins.js file that's included in the page after the jquery-6.1.js file. The plugins.js file contains improvments made ...
5
votes
1answer
305 views
.htaccess replace (rewrite) $_GET variables in PHP URL
I have a URL that will be something like example.com/index.php?p=test so that the PHP will load the test variable using $_GET['p']. The URL can already be simplified to example.com?p=test; however, I ...
5
votes
3answers
289 views
Rewriting a recursive function without using recursion
I'm rewriting some existing code in a setting where recursive calls are not easily implemented nor desired. (And in Fortran 77, if you must know.) I've thought about making a stack from scratch to ...
5
votes
1answer
603 views
Anything similar to MySQL Proxy for PostgreSQL?
I am looking for something similar to MySQL Proxy. The purpose is to modify incoming queries on the server. I am not looking for alternative ways to achieve the same. My best guess at the moment is to ...
5
votes
3answers
919 views
How can I easily fixup a past commit?
I just read amending a single file in a past commit in git but unfortunately the accepted solution 'reorders' the commits, which is not what I want. So here's my question:
Every now and then, I ...
5
votes
5answers
1k views
Codeigniter's URL Rewriting Problem
I’ve using the following htaccess script so that i can hide index.php from the uri.
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|assets|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
...
5
votes
3answers
2k views
jQuery rewrite href
I have an onclick function that I want to add an anchor to the href value. I do not want to change the URL's, because I need the site to still function for people without javascript / for SEO ...
5
votes
8answers
4k views
Translating Perl to Python
I found this Perl script while migrating my SQLite database to mysql
I was wondering (since I don't know Perl) how could one rewrite this in Python?
Bonus points for the shortest (code) answer :)
...
5
votes
1answer
1k views
Alternate Web.Config for IIS7 Rewrite Module Rules
Is it possible to move the rules created by the IIS7 rewrite module from the root web config into its own web config file like you can with appsettings and if so how?
5
votes
18answers
506 views
Is it possible to do a better programming job the second time around?
I hate the way this sounds but Joel says "It's important to remember that when you start from scratch there is absolutely no reason to believe that you are going to do a better job than you did the ...
5
votes
3answers
4k views
Add slash to the end of every url (need rewrite rule for nginx)
I try to get an "/" to every urls end:
example.com/art
should
example.com/art/
I use nginx as webserver.
I need the rewrite rule for this..
For better understanding check this:
...
5
votes
3answers
378 views
Is there a free/demo version of COBOL with multi-user support?
I have been using COBOL 85 for a long time, including work with merging COBOL and Z80 assembly. However traditional COBOL doesn't support multi-user/shareable (ie can run concurrently from various ...
5
votes
1answer
1k views
.htaccess with or without slash
What do I need to do to the following rewrite rule to make it so it works whether or not their is a slash at the end of the URL?
ie.
http://mydomain.com/content/featured
or
...
4
votes
2answers
85 views
C# to Java rewriting - generic class
Is it possible to rewrite this C# code into java?
public interface IEnumerable<out T> : IEnumerable
{
IEnumerator<T> GetEnumerator();
}
I have problem creating generic class with ...
4
votes
2answers
26 views
Redirecting to a photo with htaccess
Basically I'm using htaccess
I have a hidden directory which I'd rather not be used and I want shorter links:
I would like
http://example.com/12940.png
to goto
...
4
votes
1answer
177 views
Use Redis to serve URL map to nginx
I want to maintain a dynamic database in Redis with SEO-friendly URLs as keys and nasty querystring URLs as values. I want to call this directly from Nginx when the request comes in, get the nasty ...
4
votes
2answers
195 views
apache RewriteRule requires trailing slash at the end of url to work
Ok so i have a url like
domain.com/item/item_id/item_description/page
when i type the link without
/page
on the url it throws a 404 error and i have to type the trailing slash on the url to ...
4
votes
1answer
79 views
Rewrite Problem in php site (slash getting ommited?)
i m new to rewrite and rite now I have a genuine problem with rewrite.Here is wat i am trying to do.
2/cat23/subcat104/Shoes (i am trying to change this url to ...
4
votes
2answers
242 views
Magento duplicate class rewrite
I'm using two different Magento modules, say First_Module and Second_Module which override the same class. I would like to combine their functionality.
My assumption was that I could extend the ...
4
votes
4answers
4k views
.htaccess 301 redirect for all https to http EXCEPT ONE PAGE
Here is the code I have currently in my .htaccess file:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ ...
4
votes
6answers
739 views
COBOL Migrations Strategies?
Has anyone here been involved in any projects designed to eliminate COBOL or mitigate the risk of COBOL (for example, writing in-house compilers or using COBOL to generate NetBeans, etc.)? If so, ...
4
votes
3answers
7k views
cakephp & nginx rewrite rules
Hi somebody please help me out, I’m trying to setup a cakephp environment on a Centos server running Nginx with Fact CGI. I already have a wordpress site running on the server and a phpmyadmin site so ...
4
votes
2answers
2k views
DDD, Anti Corruption layer, how-to?
At the moment, we have to build an application which is based on a legacy one. Code for that old application should be thrown away and rewritten, but as it usually goes - instead of rewriting it, we ...
4
votes
3answers
855 views
How can I determine if a URL redirects in PHP?
I saw someone ask a question about detecting if a URL redirects from groovy and perl but couldn't find anything on PHP.
Anyone know of somewhere I could find that code that does this?
3
votes
5answers
57 views
Rewriting into a file
I write a simple function like this:
private static void write(String Swrite) throws IOException {
if(!file.exists()) {
file.createNewFile();
}
FileOutputStream fop=new ...
3
votes
4answers
430 views
RewriteRule in Apache with Symfony2 not removing app.php
I have the following .htaccess file in my web directory for my Symfony2 installation:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) ...
3
votes
2answers
43 views
rewriting url using htaccess [closed]
I'm pretty new to .htaccess and I'm trying to rewrite the following URL structure:
http://www.example.com/groups/menu.php?id=This is Group Name With Number 25
into:
...
3
votes
1answer
62 views
htaccess rewrite rule for page/title in wordpress?
I am creating one little plugin for WordPress which is about trips.
I am now at the point to create a browse page where to be opened each trip.
My idea is this -
I have created ...
3
votes
3answers
106 views
Php handling vs Apache RewriteRules and RegExp: which one is quicker?
I've already read this but it doesn't answer to my question.
Here's my scenario: I've been working on my own framework which I'm proud of (multilanguage, templating, and so on).
But I had to face one ...
3
votes
6answers
187 views
Regex for ANY string except “www”? (subdomain)
I was wondering if someone out there could help me with a regex in C#. I think it's fairly simple but I've been wracking my brain over it and not quite sure why I'm having such a hard time. :)
I've ...