Friday, March 31, 2006
Thursday, March 30, 2006
Monday, March 27, 2006
sleeping less
sleeping less
Friday, March 24, 2006
book about Software Engineering for Internet Applications
link to book
Thursday, March 23, 2006
Amazon Web Services
Amazon S3 - Simple Storage Service
Pricing
* Pay only for what you use. There is no minimum fee, and no start-up cost.
* $0.15 per GB-Month of storage used.
* $0.20 per GB of data transferred.
Useful SQL Server DBCC Commands
good dba tips on how to optimize queries
to clean the cache in sql query analyzer:
CHECKPOINT
DBCC DROPCLEANBUFFERS
make search engines better!
basic site design with php html css
a basic php , html , css web page ...good bare bones
how to do rounded corners
rounded corners on a web page with css and html
Tuesday, March 21, 2006
Monday, March 20, 2006
Friday, March 17, 2006
Thursday, March 16, 2006
Wednesday, March 15, 2006
MySQL backup script
open source script to do a mysql backup dump
here is an explanation / tutorial on how to use the sql backup script:
http://www.debianhelp.co.uk/mysqlscript.htm
Tuesday, March 14, 2006
seo research tool
find out your site's pr
count backlink information
count indexed pages
mac iphoto - setting the library location
iPhoto has a default that can be used to change the location of the photo library in a fashion similar to the way iTunes can change the location of the music library.
For iPhoto, this is of critical importance in that any image added to iPhoto is copied into the library (unlike iTunes, which simply stores a pointer to the original file). Considering what can be done with an image in the library, this makes a lot of sense -- it will make more sense once Apple supports multiple libraries in a more traditional multi-document application approach.
To change the default file store location, go to terminal and type:
defaults write com.apple.iPhoto RootDirectory /path/to/desired/locationTo remove the change default:
defaults remove com.apple.iPhoto RootDirectory
Monday, March 13, 2006
Friday, March 10, 2006
free icons, and neat javascript trick
It also has some javascript that provides a really nice fade interface that shows icons on the same screen.
Web Design from Scratch .com
http://www.webdesignfromscratch.com/
Thursday, March 09, 2006
T-SQL Group by Week query
Group by Week
SELECT Week = DateAdd(day, -1 * datepart(dw, ReviewDate), ReviewDate ),
Avg_Score = Avg(convert(float, ReviewScore))
FROM Articles
GROUP BY DateAdd(day, -1 * datepart(dw, ReviewDate), ReviewDate )
to group by week and have the week start on Saturday:
DateAdd(day, ( -1 * datepart(dw, @startDate)) % 7 , @startDate )
Cast () and Convert () reference
Cast() and Convert() reference
http://doc.ddart.net/mssql/sql70/ca-co_1.htm
useful sql server t-sql date scripts
First Day of Month
select DATEADD(mm, DATEDIFF(mm,0,getdate()), 0)
Monday of the Current Week
select DATEADD(wk, DATEDIFF(wk,0,getdate()), 0)
First Day of the Year
select DATEADD(yy, DATEDIFF(yy,0,getdate()), 0)
First Day of the Quarter
select DATEADD(qq, DATEDIFF(qq,0,getdate()), 0)
Last Day of Prior Month
select dateadd(ms,-3,DATEADD(mm, DATEDIFF(mm,0,getdate() ), 0))
Last Day of Prior Year
select dateadd(ms,-3,DATEADD(yy, DATEDIFF(yy,0,getdate() ), 0))
Last Day of Current Month
select dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,getdate() )+1, 0))
Last Day of Current Year
select dateadd(ms,-3,DATEADD(yy, DATEDIFF(yy,0,getdate() )+1, 0))
First Monday of the Month
select DATEADD(wk, DATEDIFF(wk,0,
dateadd(dd,6-datepart(day,getdate()),getdate())
), 0)
Last Day of Prior Month
select dateadd(ms,-3,DATEADD(mm, DATEDIFF(mm,0,getdate() ), 0))
Wednesday, March 08, 2006
PHP script directory
directory of php scripts
(note: the site is in French)
Tuesday, March 07, 2006
watch your credit report for cheap price
credit watch / monitoring service
programmmer e-zine
has articles about: database, SOA, architecture, programming, and more.
Monday, March 06, 2006
self-publishing service
from the web site:
Founded in 2002, Lulu is the web's premier independent publishing marketplace for digital do-it-yourselfers. It's the only place on the web where you can publish, sell and buy any and all things digital — books, music, comics, photographs, movies and well, you get the idea. We simply provide the tools that leave control of content in the hands of the people who created the content. You see, Lulu is a technology company, not a publisher. So you can use Lulu to publish and sell any kind of digital content, and no one here is going to ask you to change anything. Ever. Your vision is entirely YOURS.
There is no set-up fee and no minimum order to publish and sell on Lulu. We manage the online business, including printing, delivery and customer service. You set your own royalty for each piece of content, and at the end of each quarter, we'll mail you a check for the royalties your content generates. Lulu makes a small percentage from each transaction, which means that we only make money if you succeed in selling your work.
Lulu was founded by Bob Young, who was also the co-founder of Red Hat, the world's leading open source company. We mention this only because, like Lulu, open source software is based on putting users in control of technology. In much the same way, Lulu believes in putting authors and independent publishers in control of their digital content, from content creation to pricing to royalties. Lulu simply brings creative content to the world and gives our talented publishers and web visitors the venue to buy and sell independent works. Publishing through Lulu leaves control of content in the hands of the people who created it. Pretty revolutionary, really.
What's In a Name?
For goodness sake, what is a lulu? Well it's not your grandmother's kitty, that's for sure. Ever hear the phrase "Boy, that's a real lulu"? Well, even if you haven't, we think of the word lulu as an old-fashioned term for a remarkable person, object or idea. And quite frankly, that's exactly what Lulu, the company, is. Think of us as an open marketplace for digital content. The web's version of a fresh air market. An on-demand publishing tool for books, e-books, music, images, movies and calendars. A remarkable idea, person or place. Most importantly, Lulu is you.
Saturday, March 04, 2006
free credit report
[note: some fake web sites try to steal your information. be sure that you're submitting your request to the REAL web site, and not a scammer site]
Friday, March 03, 2006
some interesting web sites...
http://phischkneghtx.blogspot.com/2006/02/wikipedia-doesnt-know-what-roof-is.html
offers physics courses via online video
Web 2.0 Directory : Top Web 2.0 Sites ( web2.0 )
http://www.econsultant.com/web2/index.html
37 Signals secret to success ($19 pdf file)
https://gettingreal.37signals.com/
instructional business book on web2.0 methods and processes