Tagged Questions
The startup tag has no wiki summary.
42
votes
18answers
1k views
Taking over a project -
I just started a new job and apparently I'm going to take over the entire company code base. When I took the job I didn't know that I would be working with the code alone and I was expecting a little ...
20
votes
2answers
2k views
Rails initializes extremely slow on ruby 1.9.1
I just got my rails 2.3.8 app running on ruby 1.9.1. To get into the console, start the webserver, anything that initializes rails, takes 3 - 4 times longer in ruby 1.9 than in ruby 1.8.7. I'm using ...
20
votes
8answers
1k views
Options for a developer [closed]
I have been an amateur developer for a long time. I was hooked to computers since the age of 10. I started with windows 3.1 and Qbasic. Few months, I moved to Visual Basic where I developed few ...
16
votes
7answers
3k views
Why is the JVM slow to start?
What exactly makes the JVM (in particular, Sun's implementation) slow to get running compared to other runtimes like CPython? My impression was that it mainly has to do with a boatload of libraries ...
15
votes
3answers
13k views
How can I run a Perl script as a system daemon in linux?
What's a simple way to get a Perl script to run as a daemon in linux?
Currently, this is on CentOS. I'd want it to start up with the system and shutdown with the system, so some /etc/rc.d/init.d ...
14
votes
3answers
351 views
Clojure application startup performance
I have written a few small utility applications in Clojure that I compile into self-contained executable JAR files ("uberjars") using Maven and the maven-shade-plugin. These uberjars contain unpacked ...
13
votes
4answers
5k views
WPF - App.xaml file does not get parsed if my app does not set a StartupUri?
Background: I'm creating a WPF app using MVVM, and using a DI container to build my ViewModels
My App.xaml looks like this:
<Application x:Class="WpfApp.App"
...xmlns etc...
...
11
votes
11answers
1k views
How to increase the startup speed of the delphi app?
What do you do to increase startup speed (or to decrease startup time) of your Delphi app?
Other than application specific, is there a standard trick that always works?
Note: I'm not talking about ...
10
votes
2answers
17k views
windows service startup timeout
Is there a way to set a different value for service startup timeout per service?
I can change it using the ServicesPipeTimeout registry key, but it's per machine ...
9
votes
5answers
17k views
Running Batch File in background when windows boots up
How do I run a batch file each time windows boots up also I need to run it in the back ground(without that command window getting displayed)? I use Windows Xp.
My actuall requirement is I want to ...
7
votes
3answers
2k views
How to run a program automatically as admin on Windows startup?
I created my own parental control app to monitor my kids activity. The app's only GUI is a task bar icon. The program is installed as admin. I'd like this program to be started up automatically as ...
7
votes
3answers
531 views
Java Swing Run program when Windows startup
Is there possible to code the Java Swing application to run when Windows start up?
7
votes
5answers
471 views
Why is my .Net app contacting Verisign?
I wrote a .Net application that has nothing to do with network communication. There is not a single line of code in the whole application that uses the NIC, but my firewall has caught it trying to ...
6
votes
4answers
391 views
How to run Java application at system startup on Windows/Linux/MacOS?
How I can run Java application at system startup on Windows/Linux/MacOS?
Any implementation of JNA/JNI shall be welcome.
6
votes
3answers
140 views
Going opensource with a project [closed]
In my previous job I architected a system/language to build large finanical models. Company got acquired, I couldn't get a long with new management so I quit. Tried to do a start up but that went ...
6
votes
1answer
535 views
Improving Scala script startup time — client mode?
I'd like to get short Scala scripts running as fast as python scripts do, particularly in terms of script startup time.
Can anyone recommend some ways of doing this, that doesn't involve compiling ...
6
votes
3answers
277 views
What is in your Python Interactive Startup Script?
Are there any common timesavers that people put in Python Interactive Startup scripts? I made a dopey one to help me know where I am when I try to do relative file operations or imports, using a ...
6
votes
4answers
533 views
A 110 kb .NET 4.0 app needs 10 seconds for a cold start, thats not acceptable !
I am using the .NET 4.0 client profile for my app and I run a dual core with 4 GB Ram and a fast hard disk.
nothing big is done at the start just showing a generic List in a wpf listview.
How can I ...
6
votes
1answer
1k views
When AppInitialize method get invoked in ASP.NET?
During practice of customizing VirtualPathProvider, I found that it the custom VirtualPathProvider can be registered in Global.asax or in AppInitialize method according to MSDN ...
5
votes
4answers
314 views
Is there a way to reduce startup time of a console Java application?
I noticed that the startup time of a minimal console application in Java is slightly more than 100 ms on my machine compared to 1 ms of an equivalent C application. Although it is not a problem in ...
5
votes
4answers
476 views
How to get time it takes for an application to startup?
I am writing a C# application that needs to be able to tell how much time it takes for a certain application to open. I am using the Stopwatch class as my timer. Start time is easy since I set it ...
5
votes
1answer
1k views
MSMQ backed WCF service hosted in a windows service fails on startup
I have a WCF service hosted in a Windows service that I set to Automatic so it will start automatically when the server is brought up. The service is endpoint is MSMQ backed.
When I start the service ...
5
votes
10answers
738 views
Would you trust mono as a platform to build an startup? [closed]
I got "The question you're asking appears subjective and is likely to be closed." but you can answer YES or NO.
-- edit: Subjective questions are those typically answered with an opinion, so what's ...
5
votes
4answers
846 views
What makes WPF application startup slow?
I noticed that WPF application startup is sometimes pretty slow. Does anybody know if the the cause is the elements initialization or DLLs loading or something else?
5
votes
5answers
16k views
Run a script on Windows startup without a user logged on
This is a Windows 2003 machine that gets switched on every morning, but no one logs on until some hours later.
I want to use the time in between to run a backup script c:\script\backup.cmd
How can I ...
5
votes
2answers
2k views
PYTHONSTARTUP doesn't seem to work
I'm trying to use the PYTHONSTARTUP environmental variable. I set it to be "c:\python25\pythonstartup.py" in My Computer --> Advanced etc., and it doesn't seem to work.
Opening IDLE doesn't run the ...
5
votes
7answers
711 views
Ideas exchange between programmers
I plan to develop website for exchange ideas for website, application, startups…
Main purpose of this website is exchange ideas for new project between programmers.
Please tell me if exist site like ...
5
votes
3answers
2k views
Is there a way to run a method/class only on tomcat startup?
I have a need to remove temp files on tomcat startup, the pass to a folder which contains temp files is in applicationContext.xml
Is there a way to run a method/class only on tomcat startup?
4
votes
1answer
63 views
How to prevent Pharo from executing a #startUp-Method of a class?
I added a startUp-Method to one of my classes that immediatelly quits my image. Is there a way to prevent Pharo from executing that method so that I can fix it?
4
votes
3answers
172 views
What type of application starts faster: Windows Forms or WPF?
As far as I know WPF applications should work faster than Windows Forms applications because WPF applications use DirectX for rendering instead of GDI. But what kind of application will start faster: ...
4
votes
1answer
114 views
Java EE Application Startup Failure
Is there any method to prevent a Java EE application from starting if an exception occurs during application initialization? I'm basically looking for a way to cause the application to enter a ...
4
votes
3answers
164 views
How can I improve the startup time of my app?
Why iPhone app's splash screen takes more time for loading?
Can we set the time for few second only? it takes almost one minute at the moment.
4
votes
2answers
102 views
What is the cheapest way to move on from SQL Server Express, and does it make the MS stack un-usable for a low margin web app startup?
I'm preparing to embark on a web app development that will make little to no money, but I can make it work on minimal hardware (£35 a month VPS server)
The only problem is the DB size restrictions of ...
4
votes
3answers
268 views
How to optimize WPF app launch on Windows startup
I implemented a WPF app and had it registered to launch at windows startup. My app is a simple logon app which when the user is logged on appears in the icon tray.The problem is that it takes about 30 ...
4
votes
2answers
193 views
Programmatically adding Java app to startup
We're making a login client in Java for a school project.
It uses SSH to connect a local server to allow for internet connection, for the convinience of our users we would like to be able to make an ...
4
votes
3answers
418 views
Minimize startup time for asp.net
I have multiple web services (WCF) running in IIS. When the services are warm (loaded), typical requests take about 0.5 seconds to complete. However, when the application is not warm (cold start), the ...
4
votes
5answers
13k views
Cannot run Eclipse; JVM terminated. Exit code=13
I just append
-vm
C:\Program Files\Java\jre6\bin\javaw.exe
in eclipse.ini then I try to start eclipse again and got this error. Give me how to solve or link that actually solve it.
this is my ...
4
votes
1answer
292 views
Speed up application start by adding own application classes to classes.jsa
To speed up the startup time of the JVM, the Sun developers decided it is a good idea to precompile the standard runtime classes for a platform during installation of the JVM. These precompiled ...
4
votes
4answers
254 views
saving configs in qt linux
i wrote a qt application for linux. The application is supposed to run at startup- which i
did with a desktop entry.
but i need it to be more complicated:
there is a checkbox that the user supposed ...
4
votes
4answers
554 views
Anyway to Boost java JVM Startup Speed?
Well , it is said that Java is 10x faster than python in terms of performance, thats what i see from benchmarks too. But what really brings down java is its startup time of JVM which is quite stupid.
...
4
votes
5answers
811 views
Java Backend and Rails Frontend
I have a startup considering building a Java backend and a Rails frontend. The Java backend will take care of creating a caching layer for the database and offer other additional services. The Rails ...
4
votes
4answers
5k views
android classcastexception on activity startup
i have a simple activity program in android.
basically the class just extends Activity.
But when i start it i get a ClassCastException in the constructor of my class.
i dont even have a constructor ...
4
votes
3answers
449 views
Java Window paint problem
My application does not paint itself on startup. When resizing it or minimizing/maximizing it, the window of the application is painted.
This problem only appears on Windows machines (I tested XP, ...
4
votes
1answer
121 views
Adding stuff to run on startup of Pharo Image
I'd like to add stuff to run at the beginning of a pharo image start-up. Nothing fancy just a call to a class method that is an entry point to my application.
I can't find any guides to making ...
4
votes
2answers
207 views
iPhone: Load Queue on Startup
I've not found a answer to this question anywhere, but this seems like a typical problem:
I would like to send some POST-Requests (with ASIHTTPRequest, what I already do), but if something goes ...
4
votes
2answers
290 views
cost of scaling and running a web site
This is a rather broad question..but throwing it out there. So let's say someone comes up with a decent web service idea, build an app on open source framework. Hosts it on a VPS for less than ...
4
votes
4answers
172 views
How safe is code hosted elsewhere
I was at a meeting recently for our startup. For half an hour, I was listening to one of the key people on the team talk about timelines, the market, confidentiality, being there first and so on. But ...
4
votes
5answers
118 views
Perform lengthy initialization in Windows Service
What's the best way to do some lengthy initialization when a Windows service starts up (or resumes from being paused) without blocking the Service Control Manager?
4
votes
1answer
261 views
how to get 12 for joel test working in a small team of 3-4 on php website?
I read this and I was inspired. I am asking for specific help to achieve a 12 for my current project. I am working in a team of 3-4 on a php project that is based on cakephp. I only have a ...
4
votes
4answers
2k views
How to roll the log file on startup in logback
I would like to configure logback to do the following.
Log to a file
Roll the file when it reaches 50MB
Only keep 7 days worth of logs
On startup always generate a new file (do a roll)
I have it ...