I began in 1998 offering photography services to Commercial businesses. Over the years, our focus has become the practice of Commercial photography. During this time, we have developed a diverse list of clients in our southern states.
My objective is to listen to your needs and deliver work that meets your objectives. You may have budgetary constraints that also need to be taken into account. I will work with you to determine what we can achieve within your budget.
Bookmark & Share
- http://www.photos2geaux.com/2010/11/commercial-photography-2/&source=shareaholic" title="Tweet This!" rel="nofollow" target="_blank">
Get Your Dezine On
A blog about dezining not designing but dezine, there is a difference!
Thursday, November 4, 2010
Commercial Photography | Lafayette, LA. | Offshore, Oilfield Photographer | Photos 2 Geaux
webdeziner - Best practices for modern Javascript development
Use the correct <script> tag
When you have to use some Javascript in an html file, you should always use the following
<script>
tag:1.
<
script
type
=
"text/javascript"
>
2.
... some JS code
3.
</
script
>
But instead, how many times have you seen this when looking at the source code?
1.
<
script
type
=
"text/javascript"
language
=
"javascript"
>
2.
... some JS code
3.
</
script
>
In HTML, the
language
attribute is deprecated due to its redundancy with thetype
attribute. You should never use it anymore.Keep your code in an external file
Using an external
.js
file for your Javascript code is a lot cleaner than writing it in your html document, and it also allows the browser to cache the file, which will result in a faster website.Put your Javascript code in a
.js
file, then use the<script>
tag in your html document to import the file:1.
<
script
type
=
'text/javascript'
src
=
'http://www.catswhocode.com/myscript.js'
></
script
>
Don’t wrap code in HTML comments
In the 90′s some very old browsers weren’t able to interpret Javascript. In order to prevent unwanted results on those browsers, it was considered good practice in 1994-1997 to wrap Javascript code within html comments, so browsers with no Javascript support will simply ignore it.
Here is an example of some code wrapped within html comments:1.
<
script
language
=
"JavaScript"
>
2.
<!--
3.
...some code
4.
//-->
5.
</
script
>
However, in 2010, all browsers (Even IE6, that means a lot) can interpret Javascript, so there’s absolutely no need to wrap code within comments anymore. Even worse, if code is wrapped within comments and use the decrement symbol
--
, you’ll expect some weird problems due to the fact the browser may think it’s the end of the html comment.Use a framework
Unless your Javascript code is really short and easy, you should always avoid reinventing the wheel by using a framework of your choice. In my opinion, jQuery is the best and has an awesome community, so you should give it a try if you haven’t already.
Always declare your variables using var
You should introduce any variable you create with the
var
statement, otherwise it gets to the global scope. Also, usingvar
makes your code more readable and self-explanatory.
Example of variable created using thevar
statement:1.
var
name =
"Jean"
;
2.
var
size = data.length;
Keep your code unobtrusive
Some years ago, when a programmer wanted to add an event to an html element (for example, if you want to validate a date when the user typed something) he simply put Javascript code in the html, using a special attribute such as
onblur
,onchange
,onclick
, etc.
Example:1.
<
input
type
=
"text"
name
=
"date"
onchange
=
"validateDate()"
/>
This works great, but it is a bit dirty. HTML should only contain the document description. Just like it’s bad practice to use inline CSS styles, it’s bad practice to use inline Javascript.
Instead, what about using some unobtrusive Javascript? Using jQuery, it is pretty easy to do, as you can see in the following example:
1.
$(document).ready(
function
(){
2.
$(
'input[name=date]'
).bind(
'change'
, validateDate);
3.
});
Include your scripts at the bottom of your HTML files
Not so long ago, it was generally considered good practice to insert your Javascript files within the
<head>
and</head>
tags of your html document.
But browsers read html files from top to bottom, and load external files dynamically. Which mean that inserting scripts within the<head>
and</head>
tags will make your Javascript load before some of the page content.
In order to always load scripts after the content, Javascript files should always been included at the bottom of your html files, as shown below:1.
<
script
src
=
"myscript.js?"
type
=
"text/javascript"
></
script
>
2.
</
body
>
3.
</
html
>
Use JSLint
JSLint is a web-app which takes a JavaScript source and scans it. If it finds a problem, it returns a message describing the problem and an approximate solution.
JSLint is great to find bugs in your code, and also things that may be written in a better way. This site is definitely my favorite coding buddy when developing some Javascript.Don’t use document.write
The good old
document.write
method has been deprecated for years, however it is still very common to see it while browsing code.1.
document.write(
"hello world"
);
Instead of using this deprecated method, you should use the DOM and the
innerHTML
function to insert text on a page:1.
document.getElementById(
'hello'
).innerHTML(
'hello world'
);
via catswhocode.com
Case Study: Increasing conversion rate using Google Website Optimizer | Everything Web Design
Rankmill is a great service which would be popular with young social media users. The kind of people who like to use Facebook applications to share their thoughts with the world.
A typical user might have a relatively short attention span, so it needs to be clear that it’s really quick and simple to use Rankmill.
Here is the Rankmill home page before we started working on it
Bearing in mind the target market, and the goal of getting a visitor to create their own Top List, let’s see if there are any areas where visitors might be prevented from reaching their goal.
The page is very dull and grey, it doesn’t seem like it would be fun to use.The term “Create a Top” is probably meaningless to a first time visitor.The “Create a Top” link at top right is part of the main tabbed navigation, which doesn’t really make sense, and it doesn’t stand out.The “Create your own Top” blue box isn’t very appealing or user friendly.The list of Tops is very cluttered and doesn’t make you want to browse them.Aside from the word ‘share’, there is no mention of the ability to share your Top Lists on Facebook etc.In short, it’s not clear what you can do here, or why you would want to do it. If we can make the benefits of speed, simplicity and sharing more obvious, then we should be able to get more people interacting with the site and creating Top Lists of their own.
Here’s an example of a Top List embedded on a website. It would be good to show this on the home page so you can see how it works.
For our purposes, we chose to do a split test (or A/B test). This is a good test to use when you have an overall redesigned page, rather than just testing several different combinations of text changes.
Here is the redesigned home page
What we changed:
Less grey, more colour, the page is brighter and more appealing.Changed ‘Create a Top’ to ‘Create a Top List’ throughout for clarity.Made the tabbed navigation neater, and removed ‘Create a Top’ from the main nav, making it into a button instead.Moved the ‘Create a Top’ box to the main column and made it the main feature of the page. It is now a three step process that lets you create a Top List right from the home page.The benefits are clear – ‘Share them on Your Own Pages’, ‘Create in seconds’, and the social media icons make it clear what you can do here.The list of Top Lists is much clearer, with more white space and less text.We expect that the changes we have made will increase the number of visitors who go on to create their own Top Lists. We will look at the test results over the coming weeks to see if our prediction is correct, and use these results to formulate possible follow-on tests to further increase conversion rate.
Results of the test will be posted here once we can see a clear winner.
In the meantime, check out Rankmill.com, and start sharing your own Top Lists.
View the original article here
SEO Traffic Spider | What is SEO | Numa Design
SEO Traffic Spider | What is SEO
Search engine optimization is the activity of improving the volume and quality of real time traffic to web pages or whole sites from search engines through natural search results for targeted keywords. Most often a website that gets a higher position or ranking in the search results is the one which the searchers will visit more frequently. Therefore, it is important that a site is optimized to get real time traffic the right way to make it more search-engine friendly and get a higher rank in the search results.
Though SEO helps in boosting real time traffic to a website, it should not be considered as the marketing of the site. It may be easy for one to pay and appear in the paid search results for a set of keywords, however, the concept behind the SEO technique is to get the topmost ranking without paying since your site is relevant to the search query entered by the user.
The amount of time that can be spent on optimizing a website to get real time traffic can range from a few minutes to a long term activity. If your product or service is such that the keywords used are uncommon, then some general SEO would be sufficient to get a top rating. However, if your product or service industry is competitive or is in a saturated market, then it is important to dedicate considerable amount of time and effort for SEO. Even if one decides on simple SEO solutions, it is necessary to understand how search engine algorithms work and which items are crucial in SEO to get real time traffic.
The marketing approach that SEO adopts for increasing a site’s relevance is consideration of how search engines work and what searches are performed by users. The SEO process attempts to concentrate its efforts on a site’s coding, presentation, structuring, and also resolving issues that prevent search engine indexing program from spidering a website entirely.
Additionally, SEO efforts also include inserting unique content to web pages to make it more attractive to users and also to ensure that the search engine robots can easily index the content. Optimizing a site to get real time traffic can either be done by in house personnel or outsourced to professional optimizers who carry out SEO projects as a stand-alone service, like us – SEO Traffic Spider.
SEO tactics can be varied to achieve top ranking in search results. These fall into three categories (White-Hat SEO, Grey-Hat SEO, and Black-Hat SEO) depending on legitimacy and ethics.
White Hat SEO uses strategies which are considered ethically correct and legitimate by SEO’s as well as search engines while spidering a site. It would be best to use this tactic as a means of achieving top ranking in the search results for real time traffic. These tactics will not lead to penalties which are generally imposed when Black Hat SEO is used and even though it may take some amount of time to reap the rewards of this process, it will surely bring in promising results in terms of high rakings.
Grey Hat SEO uses tactics which may be considered legitimate if they are used correctly. However, these have been subjected to misuse by unethical SEO’s and webmasters. It is possible that your website will not get penalized or banned for using this strategy and it may be necessary to use this process at times, however, webmasters are careful in the use of these tactics. This is because search engines may penalize tactics that are subjected to abuse even though they are used in legitimate forms.
Black Hat SEO employs techniques that are considered illegitimate and ethically incorrect and which have been or will surely be penalized and cause your website to be banned by search engines. Since Black Hat SEO is subject to abuse widely because it tends to harm search engine user experience, it is highly recommended to avoid using it as a means of attaining high ranking.
SEO Traffic Spider, is a global provider offering its customers a full suite of SEO solutions ranging from Indexing, Optimization – On Page/Off Page, Linking, SEO Copywriting, Site Overhauling, Traffic Analytics, etc.
Article from articlesbase.comBookmark & Share
- http://www.numawebdesign.com/266/seo-traffic-spider-what-is-seo/" title="Add to a lense on Squidoo" rel="nofollow" target="_blank">
- http://b2l.me/a3k5u2&source=shareaholic" title="Tweet This!" rel="nofollow" target="_blank">
Giveaway: iPhone Stickers
Aug 26
Tagged in: freebies Comments:Add
Giveaway: iPhone Stickers
First, I would like to thank everybody for reading Web Designer Wall and following me (@nickla) on Twitter. Today, I have iPhone stickers to give out to my followers only. I will be giving out 20 iPhone stickers (sponsored by Sticker Mule) with my illustration printed on it . All you have to do is tweet a message to me. For example: "@nickla, I like the Koi or Peacock or Phoenix sticker. #wdw_stickers". Winners will be selected randomly on Aug 27, 2010 and contacted by Twitter’s Direct Message.
About The Stickers
The stickers are printed and sponsored by Sticker Mule. They are for iPhone 3G / 3Gs.
Due to the limit quantity, please let me know your first and second choice. If your first choice runs out, I will give you the second choice. Below are the stickers.
How to get a free iPhone sticker?
- This giveaway is for my Twitter followers only.
- Tweet the following message:
@nickla - I like the [first choice sticker] or [second choice] or [third choice]. #wdw_stickers- 20 winners will be picked randomly on Aug 27, 2010 and contacted by Twitter’s Direct Message. If I can not send direct message to you, the next person will repace you.
Flashloaded Component Giveaways 960 Grid System is Getting Old
Comments
Pages: 10 9 8 7 6 5 4 3 2 1 » Show All
There are 99 comments (+Add)
99 Premier pixels http://www.premierpixels.com/
November 3rd, 2010 at 3:27 amGREAT! Its really very good.I like it..
98 怎样减肥 http://www.shoutuila.com/
October 31st, 2010 at 10:15 pmThe 3D Effects look awesome!!!
97 malaysia web design http://www.pixalwebdesign.com/
October 31st, 2010 at 2:36 amnice work man…thanks for sharing…..
96 Tech2connect http://tech2connect.com
October 30th, 2010 at 4:02 amnice sticker its looking awesome
thanks95 宝宝早教 http://www.lvyoucu.com/
October 28th, 2010 at 8:26 pmSorry I missed the deadline
94 意美 http://www.ymclean.net/
October 28th, 2010 at 8:26 pmWOW! These are truly amazing designs. If I may ask what app did you design these in? Photoshop or Fireworks?
93 ิBistro http://ibistro.phuketinnova.com
October 27th, 2010 at 2:29 amVery cool………
92 Icci http://www.apples2apples.us.com
October 22nd, 2010 at 9:34 amSuper cool stickers! Very catchy to the eye.
91 Bohyme Hair http://cheapbohymehair.com/
October 19th, 2010 at 6:44 amElegant stickers.. Love em!
90 Julie http://arttoon.wordpress.com
October 13th, 2010 at 8:09 pmwonderful design! So sad to miss this opportunity. Are you thinking to sell these designs printed on other supports?
By the way, thanks for all the CSS3 tips!
Pages: 10 9 8 7 6 5 4 3 2 1 » Show All
Post Your Comments
Category
Tag Cloud
Coding CSS design design process Design Trends event Flash freebies Guest Posts Illustrator inspiration Javascript jobs photoshop Photoshop tutorials review SEO software talented people updates WordPress
Ads
Design Jobs on the Wall
- Web Developer
at Comediva, LLC (Burbank, CA)- wordpress design and coder
at Success Is Sweetest (Anywhere)See all Design Jobs
Follow @nickla
- @chrissharp Yup. We all doing all the development work involved. Basically, we just need a PSD design. 5 hours ago
- @themify is inviting designers to join theme development. http://bit.ly/93TS0p 5 hours ago
- New on the Wall: 80+ creative & unique business cards. http://bit.ly/bzktSS 6 hours ago
- Very nice WP theme finder http://themefinder.wpcandy.com by @wpcandy 2010/11/03
Polls
Loading ...