Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
11answers
5k views

Is it a bad idea to leave firebug “console.log” calls in your producton JavaScript code?

I have a bunch of console.log calls in my JavaScript. Should I comment them out before I deploy to production? I'd like to just leave them there so I don't have to go to the trouble of removing the ...
19
votes
7answers
442 views

Rephrased: list of platforms supported by the C standard

This is a rephrased version of an earlier question to better conform to the site's requirement. Does anyone know of platforms supported by the C standard, for which there are still active development ...
18
votes
2answers
258 views

Are the platforms covered by the C standard still in use? [closed]

Possible Duplicate: Rephrased: list of platforms supported by the C standard The C standard is very loosely defined: - it covers two's complement, ones' complement, signed magnitude - ...
18
votes
2answers
3k views

Git production/staging server workflow

Currently my website (production server) already have a lot of code in it. And now I want to start using Git for my projects and setup a staging server for my team. Can anybody give me any advise? ...
18
votes
4answers
2k views

What's the risk of deploying debug symbols (pdb file) in a production environment?

I have an application that logs exception strack traces and I wanted those stack traces to include file names and line numbers when deployed in production. I figured out how to deploy the debug ...
17
votes
26answers
3k views

Do you know some good programming songs for monitoring purpose?

[Community wiki] Monitoring a production platform is of the utmost importance for our organization. (and I am not talking about an exe on a single platform, but rather a farm of 2 or 3 thousands ...
15
votes
8answers
7k views

How do you deploy your SharePoint solutions?

I am now in the process of planning the deployment of a SharePoint solution into a production environment. I have read about some tools that promise an easy way to automate this process, but nothing ...
12
votes
10answers
2k views

ASP.NET - Basic checklist for putting a site into production

I'm building a static ASP.NET site (using Masterpages and a few forms) and I'm about to release it onto my production server. I know about changing <compilation debug="true"> to false, but I'm ...
11
votes
2answers
774 views

Staging database good practices

I'm about to deploy to production a fairly complex site and for the first time need a staging environment where I can test things in a more realistic environment, especially with regard to some ...
11
votes
5answers
2k views

Glassfish in real world

Are there any companies/web-sites that use Glassfish in production? I am new to J2EE and deploy JRuby on Rails alongside a JAX-WS Metro application in Glassfish v3 Prelude. Sometimes the quirks make ...
10
votes
5answers
5k views

Is node.js ready for production use?

Starting a new project. It's basically a blogging/commenting system. We're considering node.js as the back end server. Is node.js ready for this sort of thing or is it too early and experimental? ...
10
votes
6answers
3k views

Performance / stability of a Memory Mapped file - Native or MappedByteBuffer - vs. plain ol' FileOutputStream

I support a legacy Java application that uses flat files (plain text) for persistence. Due to the nature of the application, the size of these files can reach 100s MB per day, and often the limiting ...
10
votes
6answers
4k views

Best way to stress test a rails web app?

Are there any good (preferably free) tools out there? Can they give accurate estimates that reflect production results when the app goes live?
9
votes
0answers
263 views

Is the “Configuration Service for .NET Applications and WCF Services” sample production-ready? [closed]

I recently stumbled across the Configuration Service for.NET Applications and WCF Services. It is part of the "StockTrader 4.0" sample put out by Microsoft. I'm wondered if anyone has either used ...
9
votes
8answers
3k views

Tracing memory corruption on a production linux server

Guys, could you please recommend a tool for spotting a memory corruption on a production multithreaded server built with c++ and working under linux x86_64? I'm currently facing the following problem ...
8
votes
2answers
101 views

Do large systems use foreign keys in their databases? [closed]

One of the disadvantages people point to with using foreign keys in a relational database is the overhead of making sure the parent table exists before doing any insert operation. (Example). As your ...
8
votes
6answers
3k views

Git push current branch to a remote with Heroku

I'm trying to create a staging branch on Heroku, but there's something I don't quite get. Assuming I've already created a heroku app and setup the remote to point to staging-remote, If I do: git ...
8
votes
1answer
359 views

Do you have genetic algorithm in production?

Is it good idea to use genetic algorithm in production? If you are using it: In what case? What pros for selecting subj? Can you easily add changes to algorithm?
7
votes
10answers
288 views

What kind of safeguards do you use to avoid accidentally making unintended changes to your production environment?

Because we don't have a good staging environment we often have to debug issues on our production systems. We have web, application, and database servers. What kind of safeguards do you use to avoid ...
7
votes
4answers
2k views

Tools and methods for live-monitoring ASP.NET web applications?

I think many developers know that uncomfortable feeling when users tell them that "The application is slow (again)." In a complex web application there can be many possible reasons for a degradation ...
7
votes
15answers
3k views

What load-balancing system do you use in production? What do you think of it?

There are a lot of different systems for balancing load and achieving redundancy in production servers (Not just web servers) Round-robin DNS Linux Virtual Server Cisco Local Director F5 BigIP ...
6
votes
4answers
423 views

Is backbone.js production ready?

I was recently hired at a startup as the front end developer. As our product is a user admin that will be used by financial organizations, we want the app to run as much like an application as ...
6
votes
5answers
712 views

Smooth redeployment of WAR in production?

I was wondering if there is a 'smooth way' of redeploying a Java WAR to a production server (no cluster, no OSGi)? All I can come up with is stop server, update file, restart server. And 10 minutes ...
6
votes
3answers
381 views

SQL Server Bad & Best Practices

yesterday I found out that setting a database on auto growth is not a very good thing. Are there other basic 'bad' practices (or best practices) when having SQL Server databases in production? thx, ...
6
votes
2answers
2k views

How can I share user sessions across multiple domains using Rails?

Is anyone aware of any gems, tutorials, or solutions enabling a user to sign in to a website at one domain and automatically given access to other partner domains in the same session? I have two ...
6
votes
4answers
2k views

Rails: Best way to make changes to a production database

I need to make changes to an in-use production database. Just adding a few columns. I've made the changes to the dev database with migrations. What is the best way to update the production database ...
5
votes
1answer
310 views

SQL Server Express 2008 R2 for Production use on Amazon EC2 Micro Instance

Thank you for taking the time to read my question. A little background before I get to the real question. We are building an application and we do not know how much volume we are going to get the ...
5
votes
4answers
2k views

PHP 5.3.0 - Is it stable enough for production use?

I'm running a couple of sites and are thinking about moving over to using Nginx instead of Apache and as such I need to move to FCGI where the preferred choice right now seem to be PHP-FPM. I'm ...
5
votes
3answers
195 views

Different methodologies for solving bugs that only occur in production

As one who is relatively new to the whole support and bug fixing environment and a young programmer I had never come across a bug that only occurs in the Websphere environment but not on the localhost ...
5
votes
5answers
2k views

What version of Python (2.4, 2.5, 2.6, 3.0) do you standardize on for production development efforts (and why)?

In our group we primarily do search engine architecture and content integration work and most of that code base is in Python. All our build tools and Python module dependencies are in source control ...
5
votes
1answer
2k views

How do I fix routing errors from rails in production mode?

If I try and access some random string in the URL of my rails app, such as /asdfasdifjasdfkj then I am seeing a rails error message Routing Error No route matches "/asdfasdifjasdfkj" with ...
5
votes
6answers
743 views

Diagnosing Deadlocks in Win32 Program

What are the steps and techniques to debug an apparent hang due to a deadlock in a Win32 production process. I heard that WinDbg can be used for this purpose but could you please provide clear hints ...
4
votes
1answer
87 views

Producing all possible matches of a regular expression

Given a regular expression, I want to produce the set of strings that that regular expression would match. It is important to note that this set would not be infinite because there would be maximum ...
4
votes
1answer
1k views

Symfony2: access same route in production as development

I'm developing a little application using Symfony2. I can access all routes with no problems in my dev environment: http://symfony/app_dev.php/cp ("symfony" is in my hosts file to resolve to ...
4
votes
2answers
543 views

A unique URLError: <urlopen error timed out> Error I am getting

I am running my application on my production server and it is giving me this error: File "/usr/lib/python2.6/urllib2.py", line 391, in open response = self._open(req, data) File ...
4
votes
1answer
2k views

Rails Production server: stylesheets not displaying!

I just switched over from my development database to the production database, and I realized I'm getting a consistent error nomatter what view I try to open. The stylesheets are not loading correctly, ...
4
votes
3answers
435 views

Continuous Performance Monitoring of .NET Applications in Production?

Given a relatively typical .NET 4 system in an SOA environment (i.e. Windows Server 2008 R2, RESTful Web Services on IIS 7, Windows Services for NServiceBus messaging, SQL Server 2008 R2, etc) what ...
4
votes
4answers
594 views

Using HSQLDB in production environments

I want to use HSQLDB in a production environment for stroring some data in memory and for data export using files. Does anybody have experience with using hsqldb in production environments? Is hsqldb ...
4
votes
3answers
5k views

Rails 2.3.3 - Setting to production mode

How do I set the application to production mode? Okay, this must be a no-brainer but I'm about to deploy my first Rails app and I've got everything setup properly: Ubuntu Hardy, Passenger, MySQL. ...
4
votes
2answers
191 views

Is it viable to use ASP.NET MVC 2 Preview 1 in a production application?

I'm not sure if it is viable to use ASP.NET MVC 2 Preview 1 already in a production system? I would like to, because it introduces several much-needed functionalities which are quirky in MVC 1. ...
4
votes
5answers
736 views

hardening drupal for a live deployment

Are there any special security measures to take when deploying a Drupal site to a production server? For instance: I can imaging that we need to remove install.php from the root directory. Are there ...
4
votes
2answers
580 views

Development, Staging environments, and more - questions !! :(

Here's my story, Sort of long - please bear with me :) I am currently the only programmer here, no much designing to do - yet. When I started, we had no source control, - files where edited directly ...
4
votes
19answers
783 views

Good programmer is the one that put code into production? [closed]

Recently I found on a blog this: " So I changed my mind and now my single reason that identify good programmers is “A good programmer is the one that put code in production” it means that ...
4
votes
7answers
2k views

Diagnosing application hang in a production .NET desktop program

I have trouble. One of the users of an application I'm developing is occasionally, but regularly, experiencing an application hang. When this happens, we find an entry with a source of "Application ...
4
votes
4answers
194 views

How Automated is too automated when it comes to deployment?

I have ci, so our staging environment builds itself. Should I have a script that not only builds production but does all the branching for it as well? When you have 1 code base on 2 different urls ...
4
votes
18answers
861 views

What's your worst database accident happened in production?

For example: Updating all rows of the customer table because you forgot to add the where clause. What was it like, realizing it and reporting it to your coworkers or customers? And, what's your ...
3
votes
3answers
732 views

Don't know how to build task 'assets:precompile'

I'm getting that error on my production server, and can't figure out why. It happens when running this command: bundle exec rake assets:precompile RAILS_ENV=production I'm using Rails 3.1.0.rc6
3
votes
1answer
317 views

Paperclip PDF Upload Failing (with “is not recognized by the 'identify' command” on rails 3 production?

I'm getting an error when I try to upload a PDF to production server using paperclip: pdf is not recognized by the 'identify' command My model looks like this: has_attached_file :document, :styles ...
3
votes
4answers
83 views

way to warn developers they are on Production site

We have a web app deployed in several environments (Dev, QA, etc.) as well as Production. Ironically enough, the non-production sites have prominent markings saying what environment it is, but ...
3
votes
4answers
185 views

Monitoring application to track performance of .net service in production?

Is there anything similar to appdynamics.com to track performance and errors of a .net service in production? I'd love to have an easy to integrate dashboard to monitor Number of calls per minute ...

1 2 3 4 5