0
votes
2answers
23 views
VIM: Automatically adding menu-items for scripts from a particular directory
I have a number of scripts (Ruby as it happens) I run from VIM, by setting up the startup file to contain (for instance):
amenu Ruby.script1 :%!ruby C:\ruby_scripts\script1.rb< …
1
vote
1answer
29 views
JPA - saving changes without persist() invoked
Hi,
we are using Toplink implementation of JPA + Spring + EJB. In one of our EJBs we have something like this:
public void updateUser(long userId, String newName){
User u = e …
0
votes
2answers
47 views
Automatic Email Notifications
Hello,
I wrote an asp.net program that is designed to retrieve user data. The process, in which the user can log in to the system and input his data, has a Start Date and an End D …
0
votes
1answer
80 views
SQL Server Automatic Partitioning of Large Database Tables
I am dealing with database tables with tens of millions of rows (with the potential to go to the hundreds of millions over time), and am looking at implementing database partitioni …
1
vote
2answers
35 views
C# : How to stop streaminig media on flash content ?
Hello,
I'm coding an application in C# that enters a site which contains flash embedded content. But every time a site is entered, the streaming movie starts to play automatically. …
0
votes
1answer
71 views
HTML scroll to bottom on a table
So I have a table set up that has a cutsy little javascript running in it, however it will not auto scroll to the bottom. So my question is, how the heck do I have it automaticall …
1
vote
3answers
121 views
SVN: How to commit without entering password?
Hi there,
I need to create a script that backups a couple of files on a SVN repository during the night, since the files are secure I can commit them without entering a username ( …
0
votes
1answer
42 views
How to automatically upload a file once it has been “Browsed” without submitting the form
I have a website were users can create a profile and upload an image for their avatar. The way I have it set up now is a simple HTML form one with an upload box where you Browse t …
5
votes
8answers
215 views
Is there a way to run a process every day in a .Net web application without writing a windows service or SQL server jobs
We require that in a ASP.Net application, a .Net process should be invoked every day at a specified time automatically. This process needs to interact with the database (SQL Server …
0
votes
2answers
74 views
I want to compare the current date of my server with a date stored in a mySQL database
How can I compare the current date of the web server with a date I have stored in the mySQL database and 3 days before that that in the database to send a notification email ?
0
votes
3answers
327 views
How to compare a date from mysql with current date and send a notification email
I have database entrys that have a date column ( mySQL date type ). I want to compare that date with the current server date and with 3 days before that day, every month, to automa …
0
votes
1answer
477 views
Calculating automatic IFrame height in IE/Firefox/Safari - what is the correct way?
Hi,
I've browsed through many websites and in here, and could not find a final answer as each one has its errors.
I need to have an automatic IFrame height, meaning if the content …
0
votes
0answers
42 views
How to login in LinkedIn automatically from asp.net application?
I have dummy username and pasword to enter in linkedin. From an asp.net application, when the button is clicked i need to login automatically used the username and password in link …
0
votes
2answers
137 views
unable to run postgres as windows service
I had this in my windows services:
C:/Program Files/PostgreSQL/8.4/bin/pg_ctl.exe runservice -N "postgresql-8.4" -D "D:/PostgreSQL/8.4/data" -w
It never finishes executing. But i …
1
vote
7answers
159 views
Uninitialized values being initialized?
In C, automatic variables, if uninitialized, hold a garbage value. However, consider the following program:
int main(){
signed char term;
(char)term--;
printf("%d\n",term);
}
…
