Tom asks: What sites like digg/reddit/techmeme do you use that you find truly useful and pleasant to use?
If you like digg, reddit and techmeme, you will most likely find the following useful and pleasant to use:
popurls is the dashboard for the latest web-buzz, a single page that encapsulates up-to-the-minute headlines from the most popular sites on the internet.
The main purpose of the site is to provide a quick glance on what’s happening without using your desktop/web RSS reader. New headlines (since your last cookied visit) come in pretty red, visited ones are grey.
Original Signal currently aggregates the 15 most popular sites in each of the following categories: Web 2.0, Tech, Gadgets, Jobs and Buzz. They even have a Most Popular page, and a very nicely aggregated Digg page.
I like these sites, they give you an instant overview of what’s buzzing on the net right now. It’s even very easy to create one of your own.
Comments Off | Filed in Interesting Stuff, Technology | Tags: aggregate, aggregatorAfter reading “Why I’ m asking for full-text RSS feeds” by Constantin Basturea, and “Only Generous Bloggers Influence” by Steve Rubel, I have decided to publish my blog’s feed as a full text instead of just a summary.
As a blogger, why wouldn’t you publish a full-text feed? I can think of the following reasons:
I switched to a full-text feed because:
So, fellow bloggers, why don’t you unleash your full-text feeds?
2 Comments | Filed in Interesting Stuff, WordPress | Tags: blog, dapper, feedI have just finished listening to a very interesting podcast interview with Pete Finnigan (via SearchOracle.com). Pete discusses the problems with Oracle PL/SQL wrapping and hopes that Oracle releases all the built-in PL/SQL packages unwrapped as clear text, as in open source, so that everyone can help with finding bugs. Pete also advises DBAs to think like hackers in order to improve the security of the database.
Listen to the podcast.
1 Comment | Filed in Oracle, Security | Tags: podcast, SecurityIn addition to the Oracle documentation Firefox plugin and extension, you now have another easy and quick way to search Oracle documentation and other Oracle and non-Oracle related web sites.
A bookmarklet is a small JavaScript program that can be stored as a URL within a “bookmark” (or a “favorite”) in your browser. Bookmarklets are simple one-click tools that can add substantial functionality to the browser. Below you will find Oracle specific bookmarklets as well as other useful bookmarklets. They work in Firefox and Internet Explorer.
In Firefox:
Alternatively, you can just drag and drop the bookmarklet on the Bookmarks Toolbar.
In Internet Explorer 6:
In Internet Explorer 7:
I have successfully tested the bookmarklets in Internet Explorer 7 (RC1). The installation is similar to IE6. However, for the bookmarklets to work properly you may need to disable IE7′s built in pop up blocker and tweak the default security settings, otherwise you will have to explicitly allow the bookmarklet script to run everytime you use it.
The bookmarklets below can be used in two ways:
If you select (highlight) text on the web page you are browsing and then click on the bookmarklet on your toolbar, the corresponding search for the selected text will be performed and the result displayed in a new window (or tab).
If you do not select (highlight) any text on the web page you are browsing and click on the bookmarklet on your toolbar, you will be asked to type in your search terms and then the corresponding search for the entered text will be performed and the result displayed in a new window (or tab).
OraDocs Global Search across all documentation.
OraDocs 11gR1 Search the 11g Release 1 (11.1) documentation library.
OraDocs 10gR2 Search the 10g Release 2 (10.2) documentation library.
OraDocs 10gR1 Search the 10g Release 1 (10.1) documentation library.
OraDocs 9iR2 Search the 9i Release 2 (9.2) documentation library.
OraDocs 9iR1 Search the 9i Release 1 (9.0.1) documentation library.
OraDocs 8iR3 Search the 8i Release 3 (8.1.7) documentation library.
Oracle (SES) Search OTN, docs, blogs and more using the Oracle Enterprise Search.
AskTom Search asktom.oracle.com.
OTN Forums Search the OTN Forums.
Oracle-l Search the Oracle-l mailing list archives.
Google Blog Search Search blogs using Google blog search.
Technorati Search blogs using Technorati.
Answers Find information using Answers.com.
del.icio.us Search del.icio.us.
Add to GReader Subscribe with Google Reader.
I have created these bookmarklets and used them to research a topic I want to blog about or a work related problem I want to solve. I hope you will find them useful as well.
2 Comments | Filed in Firefox, Oracle | Tags: bookmark, del.icio.us, Documentation, Firefox, internet-explorer, searchWe are looking for a full time developer with Oracle and ColdFusion experience. To be qualified, you need to have a minimum of three years experience in:
Experience in Microsoft BizTalk and SQL Navigator is strongly desired.
It also helps if you live or are willing to work in the Portland Metro area and like to have me as your coworker
If you’re interested please contact me.
Update: This position has been filled and the job opening has been closed.
Comments Off | Filed in ColdFusion, Oracle | Tags: jobHere is a list of 10 programming quotes I picked from this longer list, and what I learned from each:
It’s hard enough to find an error in your code when you’re looking for it; it’s even harder when you’ve assumed your code is error-free.
Lesson: Always assume that your code is buggy and code accordingly.
Be careful about using the following code — I’ve only proven that it works, I haven’t tested it.
Lesson: Always test your code.
Good code is its own best documentation. As you’re about to add a comment, ask yourself, “How can I improve the code so that this comment isn’t needed?”.
Lesson: Write clear maintainable code.
Incorrect documentation is often worse than no documentation.
Lesson: Make sure your documentation really reflects what your code is doing and vice verse.
Measuring programming progress by lines of code is like measuring aircraft building progress by weight.
Lesson: The number of lines of code is irrelevant in measuring software development progress, measure by what the code does and how fast it does it.
Just because the standard provides a cliff in front of you, you are not necessarily required to jump off it.
Lesson: Do not blindly follow any standard, understand first.
The most important single aspect of software development is to be clear about what you are trying to build.
Lesson: Understand the problem first, then build the solution.
Good programmers use their brains, but good guidelines save us having to think out every case.
Lesson: Understand and use software design patterns whenever possible.
Simplicity is the ultimate sophistication.
Lesson: No comment.
The primary duty of an exception handler is to get the error out of the lap of the programmer and into the surprised face of the user. Provided you keep this cardinal rule in mind, you can’t go far wrong.
Lesson: Apply exception handling liberally across all your programs.