Business customers will be able to get their hands on the new office suite on May 12th, while consumers will have to wait until the boxes are ready for store shelves.
Google is creating a new algorithm based on a web user's browsing history. With these changes the only way to stay on top is to be consistently adding new content to your site. This is where a blog comes in.
is there any parameter i can set in hibernate so that temporary not allow persist anything but only allow read only (temporary) ? can i set in applicationcontext.xml?
I want to do the following with C# and Microsoft Excel:
1 - The user chooses a file.
2 - Micorosft Excel is shown to edit that file.
3 - As soon as the user clicks Excel's "Save" button Microsoft Excel should close.The user shouldn't have to click on exit.
Any idea on #3 ?
Regards,
Sebastian
When I install nVidia drivers from terminal with this command:
sudo apt-get install nvidia-current
... and I reboot, I get the max. resolution 800x600.
I added new mode successfully with xrandr, but my display is 480p.
My display is connected to my PC with HDMI and in Windows I was have VGA resolution on HDMI but after I installed in Ubuntu the drivers, the resolution is 480p.How to fix that?
And can I change the 420p to 720p or 1080i ? Because my display have option "HDMI Full PC mode" which is good because I can see my display fully, but the Full PC mode is not supported for 480p.
Ubuntu: 12.04
Hi, I'm using this XML classes for the first time and can't find this piece of info.
I'm doing:
xmlDoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"));
xmlDoc.Add(new XElement("Images"));
xmlDoc .Save("C:\\Backup\\images.xml");
But doesn't work. It only works if I use just the filename, like "images.xml", but of course, the file gets saved on the execution path.
I'm basically trying to save all current css properties of an element in a local var/array.
I tried :
el.css();
and
el.css("*");
With no luck.
Is there any quick tip do to so ?
i want to start a file share server. i need help on how to get it started and running. i plan on using thing a lot and also maybe run a small web page from the server. plz help me figure out what i should install for packages. also the file share i would like to have a account login and stuff.
also im running a 12.04 ubuntu server. it has a 1.4 gb of ram, with a 80gb harddrive (for now), and running a Pentium 4 possessor with like 1.2GHz not sure exactly but know it small.
Is there anyway to detect when a user logins if there is already another session with the same username, and block him from logging in again or send him a message?
Assume we have 3 physical servers and let's say we are only interested in performance, and not reliability. Is it better to give each server a specific function or make them all duplicates and split the traffic between them?
In other words dedicate 1 as DB server, 1 as web server, and 1 as reporting server/data warehouse, or better to put all three services on each server and use them as web farm?
I have a simple Blog model with a TextField.
What is the best way to save links in the TextField ?
1) Saving link in the database in this form: http://www.example.com
and then using some filter in the template to trasform it in form:
<a rel="nofollow" href="http://www.example.com>http://www.example.com</a>
2) Saving link in the database directly in this form:
<a rel="nofollow" href="http://www.example.com>http://www.example.com</a>
I was wondering if I could open a pdf in new browser window ,sign it with a smart card ,save it (without file download) and send it back (upload from new browser window ) by using javascript,ajax and php.I can also use javascript inside pdf(call javascript inside pdf).
I was thinking something like getElementsByTagName('body')[0].innerHTML of a pdf document,
then pass this to php using ajax and saving to server.Can I do this...
The user will have a static list of items to choose from. Using a Picker View they will choose one of the items and then select how many of them they want.
Whats the best way to save this in core data? A Struct?
struct order {
NSInteger item;
NSInteger numberOf;
};
Or some sort of relationship?
Many Thanks
Hey Guys,
How would I save JSON outputed by an URL to a file?
e.g from the Twitter search API (this http://search.twitter.com/search.json?q=hi)
Language isn't important.
Thanks!
edit // How would I then append further updates to EOF?
hi guys.
How do I disable the save password prompt in web browsers whenever I'm submitting a form. I've seen a few bank sites where this doesn't come up.
Are they doing it through JS or there any http headers or HTML meta tags available to achieve this?
I'm trying to do this for a mobile application. Please pour your ideas.
What is most important to Search engine ranking? There are three most important factors: the title appears keywords, keyword density, inside and outside links on the anchor text. To do this, please keep the tips below.
I have a very small bit of data that I would like to archive from my apps view. My question is, its far easier to save this data from the viewController, but should I really be pushing it back into my model and saving it there? BTW: I also need to do a quick load of this data when the app starts up.
Do I need a infinite key with fbml facebook app that resides on fanpage?
I am asking user to select user and posting it(facebook posts) to my server. On my server I want to get user_id and selected friends Id. Everything is fine with selected friend_ids, but have issues with getting id of a user. sometimes I can get it all fine, sometimes I am getting session expired exception, sometimes I get nothing.
any ideas why this is happening?
Basically i want to keep the transaction very simple but i should be able to rollback if any error in the later part.
Something like mentioned below,
BEGIN TRANSACTION
DELETE SET 1(this will delete first set of table)
COMMIT
DELETE SET 2 (will delete second set of table)
If any error occurs while deleting set 2 i should be able to rollback set 1 transaction as well.Let me know if we have any options to do like this. Appreciate for your help.
I need to save all ".xml" file names in a directory to a vector. To make a long story short, I cannot use the dirent API. It seems as if C++ does not have any concept of "directories".
Once I have the filenames in a vector, I can iterate through and "fopen" these files.
Is there an easy way to get these filenames at runtime?
<b>IT News Today:</b> "Linux is full of some amazing tweaks that go far and beyond other operating systems. Last week I wrote about using scripts to simplify shell commands, and today I'm going to take that a step further, but it takes a little bit more leg work"
Hi, I have a web application where I would like to pull user settings from a database and store them for Global access. Would it make more sense to store the data in a Singleton, or a Session object? What's the difference between the two?
Is it better to store the data as an object reference or break it up into value type objects (ints and strings)?
Thanks!
The requirement is as follows
1.) Upload the word file on website
2.) Display word file on website with the same formatting as we upload
3.) Edit and save the word file online on web
4.) Download the changed Wrod file from website (word file Format should not changed)
How to achieve this requirement.
I'm trying to create a very basic REST-ish web service with Grails and Postgres. I have the read() & delete() methods working, but I can't get create() to work. Hibernate just gripes, "HibernateException: No session currently bound to execution context." Here's my create method:
def create = {
def member = new Member(params)
member.save()
render(status: 201)
}
Any advice would be great. Thanks.