sebastienayotte.wordpress.com sebastienayotte.wordpress.com

sebastienayotte.wordpress.com

Sébastien's Coding Journey | The Timeless way of Coding

The Timeless way of Coding (by Sébastien Ayotte)

http://sebastienayotte.wordpress.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR SEBASTIENAYOTTE.WORDPRESS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Thursday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.7 out of 5 with 10 reviews
5 star
7
4 star
3
3 star
0
2 star
0
1 star
0

Hey there! Start your review of sebastienayotte.wordpress.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1.5 seconds

FAVICON PREVIEW

  • sebastienayotte.wordpress.com

    16x16

  • sebastienayotte.wordpress.com

    32x32

CONTACTS AT SEBASTIENAYOTTE.WORDPRESS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Sébastien's Coding Journey | The Timeless way of Coding | sebastienayotte.wordpress.com Reviews
<META>
DESCRIPTION
The Timeless way of Coding (by Sébastien Ayotte)
<META>
KEYWORDS
1 filed under mood
2 cheers
3 comments 1
4 filed under scriptaculous
5 prototype
6 scriptaculous
7 the list
8 the librairies
9 applying the effect
10 the complete example
CONTENT
Page content here
KEYWORDS ON
PAGE
filed under mood,cheers,comments 1,filed under scriptaculous,prototype,scriptaculous,the list,the librairies,applying the effect,the complete example,filed under prototype,moving the rows,javascript library,move up,move down,refocusing,now what,comments 3
SERVER
nginx
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Sébastien's Coding Journey | The Timeless way of Coding | sebastienayotte.wordpress.com Reviews

https://sebastienayotte.wordpress.com

The Timeless way of Coding (by Sébastien Ayotte)

INTERNAL PAGES

sebastienayotte.wordpress.com sebastienayotte.wordpress.com
1

Scriptaculous Sortable List Example | Sébastien's Coding Journey

https://sebastienayotte.wordpress.com/2010/12/28/scriptaculous-sortable-list-example

Sébastien’s Coding Journey. December 28, 2010. Scriptaculous Sortable List Example. 8212; Tags: JavaScript. 8212; Sébastien Ayotte @ 3:24 pm. In my previous article. What are we doing. In this article I will use Scriptaculous. To make the items of a list draggable. I will make the following list draggable. Ul id=list li List item 1 /li li List item 2 /li li List item 3 /li li List item 4 /li /ul. To make the items in the list draggable I also need Prototype. 1 Comment ». Feed for comments on this post.

2

VBScript’s default keyword | Sébastien's Coding Journey

https://sebastienayotte.wordpress.com/2010/03/31/vbscripts-default-keyword

Sébastien’s Coding Journey. March 31, 2010. VBScript’s default keyword. 8212; Tags: VBScript. 8212; Sébastien Ayotte @ 6:50 am. While I’m digging more and more into VBScript, I learned that you can use the default keyword. To mark a default method in a class. First, we define a class MyClass. Where is default sub. Public class MyClass public default sub myDefaultSub(p value) response.write p value end sub public sub notADefaultSub(p value) response.write p value end sub end class. And we use it. Enter yo...

3

Taking out the trash | Sébastien's Coding Journey

https://sebastienayotte.wordpress.com/2010/09/10/taking-out-the-trash

Sébastien’s Coding Journey. September 10, 2010. Taking out the trash. 8212; Tags: Thoughts. 8212; Sébastien Ayotte @ 8:10 am. I always wanted to be my own boss. So I refined my skills by buying books on programming. I also added a lot of blogs about programming to my Google Reader. My day job is about programming. With all that I became a pretty descent programmer. But what are my goals? Why do I wanted to build my own business? I discovered the blog of Tim Ferriss and I bought his book. I’m reliev...

4

Looping in a form’s elements in JavaScript | Sébastien's Coding Journey

https://sebastienayotte.wordpress.com/2009/11/05/looping-in-a-forms-elements-in-javascript

Sébastien’s Coding Journey. November 5, 2009. Looping in a form’s elements in JavaScript. 8212; Tags: JavaScript. 8212; Sébastien Ayotte @ 11:33 am. Sometime you need to prevalidate some inputs in a form. You could do this by looping in all the elements of the form. Here is a quick example of doing just that. What happen here is when I submit the form, the. Method get called. This function loop in all the form’s elements and show the name and the value of the inputs. I thought it could be handy. Document...

5

Change is in the air | Sébastien's Coding Journey

https://sebastienayotte.wordpress.com/2011/08/15/change-is-in-the-air

Sébastien’s Coding Journey. August 15, 2011. Change is in the air. 8212; Sébastien Ayotte @ 9:32 pm. Here’s a quick post to let you know that I moved my blog. So it will be my last post on this blog. I want to experiment with AdSense. I wanted to keep things simple so I started a new one on Blogger where AdSense is easy to activate. 1 Comment ». I constantly emailed this blog post page to all my friends, for the reason that if like. To read it after that my friends will too. 8212; March 15, 2014 @ 7:01 am.

UPGRADE TO PREMIUM TO VIEW 4 MORE

TOTAL PAGES IN THIS WEBSITE

9

LINKS TO THIS WEBSITE

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: November 2011

http://sebastienonsoftware.blogspot.com/2011_11_01_archive.html

Tuesday, 22 November 2011. Submit is not a function. How do you submit a form in JavaScript? It's simple. You get the form object and you use the submit method on it. But wait! Why do I get an error saying Submit is not a function. Let's say you have this form on your page:. Value="Submit" onclick="submitMyForm();" /. You want to submit this form using JavaScript:. Function submitMyForm() { document.myForm.submit(); }. The problem is our form has an input named submit. Wednesday, 16 November 2011. You ha...

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: How to write in a file in VBScript

http://sebastienonsoftware.blogspot.com/2012/02/how-to-write-in-file-in-vbscript.html

Monday, 20 February 2012. How to write in a file in VBScript. Dim objFileSystem set objFileSystem = server.createObject(Scripting.FileSystemObject). This object is used to access the file system. CONST WRITING = 2 dim objTextStream set objTextStream = objFileSystem.openTextFile( server.mapPath(text-stream.output), WRITING, true) objTextStream.writeLine Hello World! In the text-stream.output. To the text-stream.output. File Now we have two lines. We read all the lines. In the file. We used the readLine.

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: ASP Classic Scripting.Dictionary

http://sebastienonsoftware.blogspot.com/2012/02/asp-classic-scriptingdictionary.html

Monday, 13 February 2012. ASP Classic Scripting.Dictionary. Sometimes you need more than an array. In your code because you want keys to indentify the items. Here are some of my notes about the Scripting.Dictionary. Dim col : set col = server.createObject(Scripting.Dictionary) col.add 1, Number 1 col.add 4, Number 4 col.add 3, Number 3 col.add 2, Number 2. Note that a key must be unique. Method will throw an error. Iterating through the Dictionary. You can get a value by is key with the item. Subscribe t...

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: February 2012

http://sebastienonsoftware.blogspot.com/2012_02_01_archive.html

Wednesday, 29 February 2012. I was looking to make a CSS dropdown menu and I stumbled upon this post. I tried his solution and it works well. Harry makes a good job at explaining every lines he puts in the CSS. I invite you to go read Harry's post for all the details. Here is a sample I gathered from Harry's post. Menu {list-style:none;float:left;width:100%;margin-bottom:10px;} #menu li {float:left;position:relative;margin-right:10px;} #menu a {display:block;text-decoration:none;padding:5px;} #menu a:hov...

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: August 2011

http://sebastienonsoftware.blogspot.com/2011_08_01_archive.html

Thursday, 4 August 2011. How to disable an element with jQuery. Here's a quick post that shows how to disable and enable an element with jQuery. Save").attr("disabled", "disabled");. For example, I'm using this when I want to disable a submit button upon a form submission. Subscribe to: Posts (Atom). Le château des frimousses. How to disable an element with jQuery. Awesome Inc. template. Powered by Blogger.

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: Using System.Collections.SortedList in ASP Classic

http://sebastienonsoftware.blogspot.com/2012/01/using-systemcollectionssortedlist-in.html

Monday, 30 January 2012. Using System.Collections.SortedList in ASP Classic. Here is a quick example on how you could use .NET System.Collections.SortedList class in ASP Classic. Dim col set col = server.createObject(System.Collections.SortedList) col.add C, CC col.add B, BB col.add A, AA dim i for i = 0 to col.count - 1 response.write col.getKey(i) and = and col.getByIndex(i) and br / next. A = AA B = BB C = CC. It seems that we can use other .NET classes. You could also try some of those:.

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: Measuring execution time in VBScript

http://sebastienonsoftware.blogspot.com/2012/01/measuring-execution-time-in-vbscript.html

Monday, 23 January 2012. Measuring execution time in VBScript. There is multiple techniques to measure the execution time of your code. Here is an example with the VBScript. Dim dblTimeStarted : dblTimeStarted = timer dim i for i = 0 to 100000000 next dim dblTimeEnded : dblTimeEnded = timer response.write "Time: " and formatNumber(dblTimeEnded - dblTimeStarted, 0). A profiler could probably help you achieve the same result. But if you need to do a quick check I think this technique is fine.

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: September 2011

http://sebastienonsoftware.blogspot.com/2011_09_01_archive.html

Friday, 9 September 2011. How did I installed Apache HTTP Server and PHP on my Windows XP box. It's not funny when your computer crashes and you have to reinstall everything from scratch. Last night I was installing Apache HTTP Server. On my Windows XP box because I'm currently making some websites with PHP. The process was a little bit bumpy so I decided to write this post to keep some notes about it. Apache HTTP Server Installation. Next I went to the PHP website to download the installer. How to fix it.

sebastienonsoftware.blogspot.com sebastienonsoftware.blogspot.com

Sebastien on Software: How to send an email in .NET

http://sebastienonsoftware.blogspot.com/2012/01/how-to-send-email-in-net.html

Tuesday, 17 January 2012. How to send an email in .NET. Here's a quick post on how to send an email in .NET. Using System.Net; using System.Net.Mail;. The hard coded way. MailMessage message = new MailMessage(); message.From = new MailAddress("from@email.com"); message.To.Add(new MailAddress("to@email.com") ; message.Subject = "Email subject"; message.Body = "Email body"; SmtpClient smtp = new SmtpClient(); smtp.Send(message);. In the config file. Thanks for the details! 17 January 2012 at 14:05.

UPGRADE TO PREMIUM TO VIEW 16 MORE

TOTAL LINKS TO THIS WEBSITE

25

SOCIAL ENGAGEMENT



OTHER SITES

sebastienaumonier.blogspot.com sebastienaumonier.blogspot.com

sebastienaumonier

Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.

sebastienaurelie51.skyrock.com sebastienaurelie51.skyrock.com

SebastienAurelie51's blog - Ma Famille - Skyrock.com

More options ▼. Subscribe to my blog. Created: 02/10/2011 at 4:17 AM. Updated: 27/10/2011 at 1:24 PM. Mon grand bébé grandit vite deja 3 mois petit loulou. Mon fils devien un grand garçon le mois prochain mon ange commence les petit pot papa va s'amuser avec son prince. Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.62) if someone makes a complaint. Posted on Thursday, 27 October 2011 at 1:24 PM.

sebastienaurelie59730.skyrock.com sebastienaurelie59730.skyrock.com

Blog de sebastienaurelie59730 - ma famille mes amis - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Ma famille mes amis. Mise à jour :. TESTE 1. Ecrit le nom d'une personne du sexe. Abonne-toi à mon blog! 1 Ecrit le nom d'une personne du sexe opposé . 2 Quelle est ta couleur préféré entre rouge, noir, bleu, vert et jaune? 3 La premièer lettre de ton nom? 4 Ton mois d'anniversaire? 5 Quelle couleur tu préfère entre noir et blanc? 6 Le nom d'une personne du même sexe que toi . 7 Ton chiffre favorit? 8 Aimes tu plus la Californie ou la Floride? Avril - Juin : ...

sebastienaurore.skyrock.com sebastienaurore.skyrock.com

Blog de sebastienaurore - Blog de sebastienaurore - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Mise à jour :. Abonne-toi à mon blog! Houla un petit moment que je n'avait pas mis les pieds sur le blog enfin beaucoup de changement et c'est devenue bien desert: Enfin je pense en crée un nouveux si je trouve le temps et le goût de venir. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Posté le lundi 20 décembre 2010 12:49. Ou poster avec :. Posté le jeudi 17 septembre 2009 06:54.

sebastienayotte.com sebastienayotte.com

Sebastien Ayotte .com - The Art & Science of Software Development

Sebastien Ayotte .com. The Art and Science of Software Development. In software development, when a programmer is introduce to a new language, it’s a tradition to write a simple computer program. Called “Hello World”. On a fresh installation of WordPress, a “Hello World” post is provided. I intend to keep that post for experimental purpose. It also mark the date when I launch this blog. I tend to be forgetful about dates. This post will be a great reminder. September 16, 2014. November 22, 2014.

sebastienayotte.wordpress.com sebastienayotte.wordpress.com

Sébastien's Coding Journey | The Timeless way of Coding

Sébastien’s Coding Journey. August 15, 2011. Change is in the air. 8212; Sébastien Ayotte @ 9:32 pm. Here’s a quick post to let you know that I moved my blog. So it will be my last post on this blog. I want to experiment with AdSense. I wanted to keep things simple so I started a new one on Blogger where AdSense is easy to activate. December 28, 2010. Scriptaculous Sortable List Example. 8212; Tags: JavaScript. 8212; Sébastien Ayotte @ 3:24 pm. In my previous article. What are we doing. December 23, 2010.

sebastienb-fan78.skyrock.com sebastienb-fan78.skyrock.com

Blog Music de sebastienb-fan78 - SEBASTIEN BENETT - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Mantes la jolie (78). Mise à jour :. Abonne-toi à mon blog! Sebastien Benett -Electric Wave. Numéro de la piste. Ajouter à mon blog. Sebastien Benett -Electric Wave. Ajouter à mon blog. Sebastien Benett - Jack The Repper. Ajouter à mon blog. Week End (Electro Radio Edit)-Sebastien Benett. Ajouter à mon blog. Tu n'as pas la bonne version de Flash pour utiliser le player Skyrock Music. Clique ici pour installer Flash. Ajouter ce morceau à mon blog. Ajouter ce m...

sebastienb.com sebastienb.com

Sebastienb.com

Monday, February 23rd, 2015. I’m working on a prototype aquarium controller and fish feeder, I keep updating this post with the progress. As of now the project is built using Node.js and Johnny-Five and has the following features: Automatic fish feeding with 8 slots Water level monitor Light scheduler Motion activate night lights Temperature sensor Current Hardware: Arduino Uno […]. Foosball Scoreboard using node and Johnny-Five. Wednesday, December 31st, 2014. Sunday, November 23rd, 2014. A few days wit...

sebastienb.skyrock.com sebastienb.skyrock.com

Blog de sebastienb - sebastienb.skyblog.com - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Sebastienb.skyblog.c om. Bonjour a tous , je m'apelle sébastien et j'ai 19 ans j'ai réussi mon diplome en art floral et maintenent je suis en 5ième horticulture a l'école de Gosselies pour moi avoir eventuellement un diplome d'horticulture au bout de la 6ième je vous souhaite une bonne vissite sur mon sky et vous pouvez i lessez plein de com sa me ferai supert bien plaisir . Mise à jour :. Abonne-toi à mon blog! Championnats de 1ère provincial. Retape dans le...

sebastienb21.skyrock.com sebastienb21.skyrock.com

sebastienb21's blog - bonjour slt ca va - Skyrock.com

More options ▼. Subscribe to my blog. Created: 25/08/2011 at 6:11 AM. Updated: 25/08/2011 at 6:11 AM. Bonjour slt ca va. Bonjour slt ca va. Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.3) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Thursday, 25 August 2011 at 6:11 AM. Bonjour slt ca va. Thu, August 25, 2011. Subscribe to my blog! Post to my blog.

sebastienbab.skyrock.com sebastienbab.skyrock.com

Blog de sebastienbab - Blog de sebastienbab - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Plus d'actions ▼. S'abonner à mon blog. Création : 27/03/2013 à 17:27. Mise à jour : 03/01/2014 à 19:58. L'auteur de ce blog n'accepte que les commentaires de ses amis. Tu n'es pas identifié. Clique ici pour poster un commentaire en étant identifié avec ton compte Skyrock. Et un lien vers ton blog ainsi que ta photo seront automatiquement ajoutés à ton commentaire. Posté le vendredi 03 janvier 2014 19:58. Tu n'es pas identifié. Tu n'es pas identifié. Y'a pas ...