Pages
-
Recent Posts
- Revolving Door: MPAA Hires Chief USTR Negotiator Behind ACTA And TPP’s IP Chapter
- Copyright Maximalists’ Incredible Sense Of Entitlement: If It Challenges The Biz Model We Chose, It Must Be Illegal
- Turkey’s Prime Minister Sues His Own Country Over Twitter
- Picturefill 2
- Police File On Student ‘Bullied Into Committing Suicide’ Strangely Lacking In Evidence Of Bullying
Archives
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- December 2008
- November 2008
- October 2008
Meta
Monthly Archives: May 2010
PHPHOST BLOG
Web Hosting Related Articles You May Need
How Google Voice got me out of a bind
For this editor, a broken cell phone plus Google Voice adds up to a quick, smart way out of a communications dead zone.
Posted in Syndicated
Comments Off on How Google Voice got me out of a bind
Skype 2.0 for iPhone: Is the subscription worth it?
An update to Skype’s iPhone app opens the door to 3G calling, but after a trial period, callers will have to pay up.
Originally posted at iPhone Atlas
Posted in Syndicated
Comments Off on Skype 2.0 for iPhone: Is the subscription worth it?
Winners of OReilly and Manning EBooks GiveAway
I had recently posted on Win the Latest Manning EBooks and Win the Latest O’Reilly EBooks. This GiveAway was from http://www.dotnetcurry.com/ to celebrate its 3 years.
Here are the winners of the DotNetCurry 3rd Anniversary GiveAway. Congratulations to all the winners! You will be contacted via Twitter within the next 48 hours. Make sure you check your Twitter Direct Messages from @DotNetCurry. For those who could not win, there will be contests in the near future too. So continue to Follow DotNetCurry on Twitter .
EBooks
Cover Image | Sponsor | Winner(s) |
![]() |
C# in Depth – Second Edition by Manning | pooran, ogoellner |
![]() |
jQuery in Action – Second Edition by Manning | aspenangwin, frankstepanski |
![]() |
ASP.NET MVC 2 in Action by Manning | cxfx, ddurose |
![]() |
SQL Server MVP Deep Dives by Manning | kensimmons, SQLPrincess |
![]() |
SharePoint 2007 Developer’s Guide to Business Data Catalog by Manning | SharePointWhiz, jlangdon |
![]() |
Programming Windows Azure by O’Reilly | dholamahesh, mvisser |
![]() |
C# 4.0 in a Nutshell – Fourth Edition by O’Reilly | JungchanHsieh, Elsheimy |
![]() |
Developing Large Web Applications by O’Reilly | VikramPendse, malcolmsheridan |
![]() |
Effective UI by O’Reilly | voidnothings, MelindaMarsh |
![]() |
97 Things Every Programmer Should Know by O’Reilly | tim_church, samnangchhun |
![]() |
Windows 7 Annoyances by O’Reilly | gcaughey, reelmccoy |
![]() |
RESTful Web Services Cookbook by O’Reilly | darrelmiller, devKhalid |
Congratulations once again to all the winners! You will be contacted via Twitter within the next 48 hours. Make sure you check your Twitter Direct Messages from @DotNetCurry
Posted in Contests, Free EBook, Free Learning, Syndicated
Comments Off on Winners of OReilly and Manning EBooks GiveAway
Firefox for Windows starts 64-bit transition
Programmers have begun releasing early versions of 64-bit Firefox. It’s scheduled to be mature later this year.
Originally posted at Deep Tech
Posted in Syndicated
Comments Off on Firefox for Windows starts 64-bit transition
CSS3 Button Maker
Drag things, pick colors, make a nice class for your buttons… introducing the Button Maker. Boy, that’s a nice button right there. I’m saying “CSS3″, because these make use of gradients, shadows, and rounded corners which contribute greatly to their button-ness. In older browers that don’t support these properties, the fallback is solid-color background, no […] Continue reading
Posted in Article, Syndicated
Comments Off on CSS3 Button Maker
Using the jQuery Validation Plugin to choose atleast one CheckBox before submitting the Form
Let us see how to use the jQuery Validation Plugin to choose atleast one checkbox before submitting the form
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style type="text/css">
label.error {
float: none; color: red;
padding-left: .3em; vertical-align: top;
}
</style>
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js">
</script>
<script type="text/javascript" src="
http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js">
</script>
<script type="text/javascript">
$.validator.addMethod('onecheck', function(value, ele) {
return $("input:checked").length >= 1;
}, 'Please Select Atleast One CheckBox')
$(document).ready(function() {
$("#form1").validate({
rules: {
bev: {
onecheck: true
}
},
errorPlacement: function(error, element) {
error.appendTo('#err');
}
});
});
</script>
<title></title>
</head>
<body>
<form id="form1">
<div id="chkboxes">
<input type="checkbox" name="bev" value="cream" />With cream<br />
<input type="checkbox" name="bev" value="sugar" />With sugar<br />
<input type="checkbox" name="bev" value="sugar" />With sugar<br />
</div>
<div id="err"></div>
<input id="btnSubmit" type="submit" value="submit" />
</form>
</body>
</html>
When the user tries to submit the form without selecting a checkbox, the validation fires and the following error message gets displayed
The error disappears when a checkbox is selected and the user can now submit the form
Posted in ASP.Net, jQuery, Syndicated
Comments Off on Using the jQuery Validation Plugin to choose atleast one CheckBox before submitting the Form
Grab big pics off Google Images the easy way
Use Google’s Images search to grab big pictures for desktop wallpapers and the like? A new Firefox extension might save you some time.
Originally posted at Web Crawler
Posted in Syndicated
Comments Off on Grab big pics off Google Images the easy way
Share the same Visual Studio Settings between Team Members
If you have customized your VS 2008/2010 environment with a new font size , color, theme etc. and now want to share these settings with other team members on your network to maintain consistency, then Visual Studio allows you to create a single .vssettings file and share it with your team members.
Here are the steps to do so:
Open Visual Studio 2010 > Go to Tools > Options > Environment > Import and Export Settings. Save the file to a local folder or a UNC share. I have called the file VSCsharpSettings.vssettings
Importing the Settings
Now to apply these settings to a workgroup, go to a workgroup machine, open Visual Studio 2010 > Go to Tools > Options > Environment > Import and Export Settings > Check the checkbox saying use team settings file and enter the path where the original VSCsharpSettings.vssettings file was saved (UNC or local path) and click Ok. You will now see that all the IDE’s on the workgroup that imported this setting file have the new settings applied.
In future, whenever you update this setting file, all the other IDE’s on the workgroup that are using this settings file will automatically use the updated category specified in the .vssettings file.
Note: The settings file imported through the Team Settings File option allows developers to keep the customizations they have made to the IDE. It only overrides the category specified in the .vssettings file.
Posted in Syndicated, Visual Studio
Comments Off on Share the same Visual Studio Settings between Team Members
Joe Konrath Explains Why Authors Shouldn’t Fear File Sharing
Simon was the first of a few of you to send over a blog post by author Joe Konrath discussing why he doesn’t worry much about his books being available online via unauthorized file sharing avenues. The whole blog post is so reasonable and well argued that you really should just go read the whole thing, so here are a few snippets to get you interested:
People want to share files. There is this much file sharing going on for a reason. It’s what people want. Fighting piracy is fighting human nature. This is a battle no one can win. Getting your undies in a bunch at the thought of someone copying your ebook is a waste of a good ulcer. Worry about some problem that eventually will be solved. Like world hunger. Or cancer. Or war. Those will be conquered before file sharing is….There is ZERO reliable evidence that file-sharing hurts sales. A shared file does not equal a lost sale, any more than someone reading a library book is a lost sale.
The best part is a bit later in the post, where he tries to pre-empt the usual “but it’s theft!!!!” arguments with a series of Q&As that read something like many of the comment exchanges we end up having here at Techdirt, by pointing out that it’s not the same as stealing a tangible object, and even so it doesn’t matter. He also takes on another popular argument made in our comments: but what if artists don’t want to embrace new business models:
Q: But Joe, if everyone steals your ebooks, how will you make money?A: Show me an artist bankrupted by piracy, and we’ll revisit this question.
Q: No, seriously, in a future where everything is free, how will…
A: We’re not in a future where everything is free. But I’ll play the “let’s pretend” game. Let’s pretend that all ebooks are free. How will writers make money? The same way all media makes money. Advertising, merchandising, and licensing.
Q: But I don’t want ads in ebooks.
A: I don’t want ads in anything. But that’s how capitalism works. Deal with it.
Again, the whole thing is a worthwhile read, but highlights a key point that we keep trying to make over and over again. So many keep focusing in on the whole “piracy!” aspect, and that’s such a huge waste of time. Why focus on trying to stop something you don’t like, when you can put your energy into creating a positive situation that you do like? Why focus on trying to punish people you don’t like, when you have so many opportunities to happily engage with people you do like?
Posted in Syndicated
Comments Off on Joe Konrath Explains Why Authors Shouldn’t Fear File Sharing
ABA Journal Highlights How The Music Industry Is Thriving And How Copyright Might Not Be That Important
Michael Scott points us to one of the best summaries I’ve seen of the state of the music business today — published in the ABA Journal. It’s an incredibly balanced piece, that really does carefully present both sides of the story on a variety of issues, and presents actual evidence, which suggests the RIAA is blowing smoke on a lot of its claims. The piece kicks off by highlighting that the music industry appears to be thriving, and then noting that it’s not the same as the recording industry, which has been struggling.
Much of the piece does present the RIAA’s viewpoint on things, such as the idea that the legal strategy the labels have taken has been a “success.” However, it follows it up by questioning what kind of success it has been when more people are file sharing and more services are available for those who want to file share. From there it segues into a discussion on “three strikes” and ACTA, which includes the jaw-dropping claim from an RIAA general counsel that “three strikes” was “never even put on the table.” I’ve heard from numerous ISP folks who say that’s not true at all. However, the article does a good job (gently) ripping apart the RIAA’s claims, with evidence to the contrary, and does a beautiful job digging deep into ACTA to show how the text might not explicitly require three strikes, but is worded in such a way as to make it hard to qualify for safe harbors without implementing three strikes.
The latter part of the article then focuses on how the music industry really is booming, and how more people are making music, and there are lots of opportunities for musicians to do well these days, even without relying on copyright law. The arguments made (and the people and studies quoted) won’t be new to regular Techdirt readers, but it really is a very strong piece, targeted at lawyers (many of whom may not have realized some of these details). For example:
If the ultimate goal is to promote the creation of new works, then perhaps it isn’t really necessary to take stronger legal actions against illegal file-sharing because the evidence does not suggest that it is hindering the creation of new works by musicians
I certainly don’t agree with everything in the article, and there are a few statements from the RIAA folks that could have been challenged more directly. But, on the whole, it’s definitely one of the better articles I’ve seen looking at the music industry from the perspective of the legal profession that doesn’t automatically drop into the “but we must protect copyrights!” argument from the outset.
Posted in Syndicated
Comments Off on ABA Journal Highlights How The Music Industry Is Thriving And How Copyright Might Not Be That Important