Posts Tagged ‘Web’
Freelancing, Online jobs for professionals
Written by jf on June 2, 2008 – 6:00 am -Nowadays many professionals in different activity sector offers their services and expertise through freelance portals. These portals are websites were you can post job offerings and register as a freelance to take job offerings. In terms of business, you can bargain and get the work done at an affordable price with expert professionals.
So where is the catch ? Why doesn’t everyone go online and work as a freelancer ?
It’s quiet simple, before getting a Job online it can take quiet a while you must register to several websites either paid or non paid, then apply for job positions that fits your expertise, wait for an answer and if you are accepted start working. When working as a freelancer you are not bound by any long term contract many a time, you get to work on a module for 1 month and when the job is done, you simply have to get to the entire process again, which can sometimes take several weeks before you get another job. So being a freelance is a tedious and long process, but it is quiet a remunerative process, since you get to work on different project and gain much more experience.
Since I have expertise in Web Technology and Programming here are some websites that i am registered to.

Guru.com
Guru.com was launched August 2000 (as A2Zmoonlighter.com)
It’s Mission: To provide the most efficient platform to connect and perform transactions with freelance professionals locally, nationally, and globally.

Odesk.com
Odesk.com was created in 2003
It’s Mission: Build the world’s best network of technology service providers through screening, testing, and feedback
Offer the platform that lets buyers successfully hire, manage, and pay service providers from around the world
thecodingmachine.com
thecodingmachine.com was launched in late 2006
It’s Mission: offers you IT services. Thanks to a new approach, your projects can be delivered quicker and at lower cost.
Has created a web platform and linked together coders from all over the world.
![]()
There are many for website offering job posting and freelance work but, there are a the one i experienced with and i find them pretty good tools to deal with when you are searching for a job online to share your expertise.
Leave your comment on other sites that might be good, I’ll review them and update this post.
Annoying software: a rogues’ gallery
Written by jf on May 21, 2008 – 12:04 pm -Found this little article while reading some newsletter this morning:
Here is a little preview.
Adobe Reader
What does Adobe Reader do? Displays PDF pages. How does it do it? With as much bloody-minded bureaucracy, delay and needless interaction as possible. Perhaps it’s because we humans have been spoiled by books, where the gap between wanting to read something and reading it is as short as the time taken to lift the cover. But Reader’s incessant updates (demanding you reset your computer — why?), thundering great list of modules to load …Apple
Oh, Apple. You created a domain where humans came first. You took usability and distilled it into an art form. Now look at you. iTunes is a music player the size of a fat-bottomed whale that gobbles resources like krill. It spends half its time trying to sell us stuff and the other half trying to stop us using it. But that’s not as bad as your auto-update policy: slipping us stealth copies of Safari under the cover of important version updates to iTunes and Quicktime….Windows Update
Your machine will reset in four minutes. Your machine will not shut down until these five updates are installed. You must restart your machine now. You will install Microsoft Genuine Advantage. Please wait while these updates are installed. Please shut down all applications before applying this update. Pop! New updates are ready to be installed. And now that we’ve stopped you doing whatever it was you were doing (like we care)…
Read the entire article from zdnet: Annoying software: a rogues’ gallery
Padding is invalid and cannot be removed.
Written by jf on January 18, 2008 – 4:32 pm -Stop Google crawling WebResource.axd & ScriptResource.axd
As an ASP.NET developer i often get error message: “Padding is invalid and cannot be removed”. It’s a pretty annoying message that i have been trying to get rid of for days. It was caused by Google trying to index, crawl my WebResource.axd and session. But when the session expires you get this error message. Since Google caches the pages it visits the session on this page has already expired after it is crawled, when it tries to crawl the page again and request the WebResource.axd or ScriptResource.axd with an old key, an exception is raised.
Therefore to solve this problem the simple solution for that is to modify your robots.txt file in your root directory
and add the following at the end
Disallow: /ScriptResource.axd
Disallow:/WebResource.axd
With this no more issues regarding invalid padding.
If this does not solve your issue you can take a look at what other users propose here.
Some update on this issue, i found out while googling some days back:
On this post you can find out how to compress the webresource.axd and also somewhere in between prevent this error to occur.
http://mironabramson.com/blog/post/2007/10/New–Shiny–WebResourceaxd-compression-Module.aspx
Use the tool found at the website below to generate a machine key and a decryption key:
http://www.orcsweb.com/articles/aspnetmachinekey.aspx
Posted in .NET, ASP.NET, Javascript, Search Engine, Web, Work | No Comments »
Retrieving anchor value from URL
Written by jf on January 16, 2008 – 2:08 pm -Lately i have been trying to get a grasp of the anchor value from the URL using ASP.NET. From what i learned from the forum (This might be wrong since there is a way in PHP(http://www.php.net/manual/en/function.parse-url.php) to get the anchor value.)
Case study:
e.g http://www.somesamplebigsite.com/product.aspx?q=123&u=09#description
The url above send the user to a page product and then your browser interpret the anchor and scroll down way to the description anchor. But the question is why the heck would i want to get the anchor since it’s just an anchor ? There might be several reasons for that. Here is 2 of them:
- You might not want to pass an extra parameter in your URL query string because of Referencing issues
- You would like to perform an action when the page reaches the anchor: Example open an AJAX popup or load some information or Execute a JavaScript in the Description Section of the product.
There might be several other reasons, but these two give you and idea of what is to be achieved.
You can’t get access to the anchor value using server side ASP.NET, it will neither be seen in the Request.Url nor the Request.RawUrl. Therefore those who are trying in vain to get access to this information, don’t bother anymore. You can just use a simple javascript that will do that, and then if you want afterward to either make a new submit to the server or do it in AJAX.
var anchorValue;
var url = document.location;
var strippedUrl = url.toString().split(”#”);
if(strippedUrl.Length > 1)
anchorvalue = strippedUrl[1];
With these few lines of javascript you will be able to determine the value anchor that has been sent in your URL.
Goodbye Netscape Navigator
Written by jf on January 12, 2008 – 3:52 pm -10 years have now gone since the first apparition of Netscape Navigator and now it is time to say goodbye to this browser. As announced by AOL, the netscape browser support will end on the 1st of February 2008.
I still remember during my first days using internet i have been playing around with Navigator 3 or 4 i may think. It was kind of the impressive i may say the first time, but afterwards i switched to Internet Explorer, and now i am using both Internet Explorer and FireFox.




Shout Box RSS Feed



