
alfy.me
Blog . Ahmad AlfyAhmad Alfy's Fun with Front-end development and WWW
http://www.alfy.me/
Ahmad Alfy's Fun with Front-end development and WWW
http://www.alfy.me/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Sunday
LOAD TIME
0.2 seconds
PAGES IN
THIS WEBSITE
4
SSL
EXTERNAL LINKS
21
SITE IP
96.30.1.128
LOAD TIME
0.25 sec
SCORE
6.2
Blog . Ahmad Alfy | alfy.me Reviews
https://alfy.me
Ahmad Alfy's Fun with Front-end development and WWW
Let's Talk About RTL
http://www.alfy.me/2014/07/26/lets-talk-about-rtl.html
Fun with Front-end development and. Let's Talk About RTL. Arabic is the 7. In the digital sphere. The number of the Arabic websites is increasing every day and the number of the websites localizing their content to attract more Arabic speaking users is growing. The techniques used to develop. Websites are still misunderstood or mysterious for some. I will try to shed some light on the problems I have been facing and the tricks I am using to build RTL websites. Tag with the value. Be aligned to the right.
Give Opera Some Time
http://www.alfy.me/2013/08/16/give-opera-some-time.html
Fun with Front-end development and. Give Opera Some Time. Like gestures so obviously it’s a matter of time before the browser you love give you back the features you have been using. Opera was the first browser to give us the plugin-free synchronization for history, bookmarks, passwords and everything. It’s called Opera Link. Opera allows you save multiple combinations of usernames and passwords per domain. Simply hit. Zooming, Images and Fit-to-Width. Opera was the first browser to provide true page zoo...
Porfolio . Ahmad Alfy
http://www.alfy.me/portfolio
Fun with Front-end development and. I have been involved in wide range of project including:. Front-end development for applications using libraries like Backbone.js, AngularJS and others. Front-end development for mobile websites. Hundreds of PSD to HTML - Joomla - Origami - . And a lot more. Case studies and list of the projects I worked on are coming soon. All licensed under Creative Commons CC0.
About . Ahmad Alfy
http://www.alfy.me/about
Fun with Front-end development and. Well there isn't much to say. My name is Ahmad Alfy and I had a passion for the web since I was young. Recently front-end development gained my interest and I started focusing on HTML5, performance and the new technologies coming to the web. I've built a lot of websites for people / companies across the globe and helped many with troubleshooting / consultations about problems they ran into. I am a full time technical assistant working for the World Health Organization.
TOTAL PAGES IN THIS WEBSITE
4
Add Random String Verification to Prevent CSRF - Code Mug
http://codemug.com/php/add-random-string-validation-to-prevent-csrf
Web Development Tutorials and Tips. You are here: Home. Add Random String Verification to Prevent CSRF. Add Random String Verification to Prevent CSRF. March 5, 2013. Cross-Site Request Forgery( CSRF. Is difficult to trace, it could cause great harm. The attacker can use CSRF to prank, send spam information, delete data and so on. So how do we prevent CSRF? To deal with increasing CSRF attacks, Yahoo added a random string called crumb. How to Create String Verification? How to Use String Validation?
Get URL Parameters with JavaScript - Code Mug
http://codemug.com/javascript/get-url-parameters-with-javascript
Web Development Tutorials and Tips. You are here: Home. Get URL Parameters with JavaScript. Get URL Parameters with JavaScript. March 5, 2013. With the wide use of AJAX, sometimes we need get values of parameters from current URL, the below function is an very handy way to do so. Function getQuery(name) { var reg = new RegExp("( &)" name "=([ &]*)(& $)"); var r = window.location.search.substr(1).match(reg); if (r! Null) return unescape(r[2]); return null; }. Leave a Reply Cancel reply. You may use these.
How to send mails with PHPMailer - Code Mug
http://codemug.com/php/how-to-send-mails-with-phpmailer
Web Development Tutorials and Tips. You are here: Home. How to send mails with PHPMailer. How to send mails with PHPMailer. March 5, 2013. PHPMailer is a PHP class for sending email. It has far more features than the regular mail() function, such as containing attachments and inline images. It is very useful for actions like “Contact Us” forms, and it avoids header injection and spamming. 1Download PHPMailer from its project page. The newest version is 5.2.4. 2Extract class.phpmailer.php. Get URL Paramet...
JavaScript Strict Mode in IE 10 - Code Mug
http://codemug.com/javascript/javascript-strict-mode-in-ie-10
Web Development Tutorials and Tips. You are here: Home. JavaScript Strict Mode in IE 10. JavaScript Strict Mode in IE 10. March 4, 2013. Has been introduced from ECMAScript 5.0. How to activate Strict Mode? It’s simple to enable strict mode, just include this statement before your scripts:. Function sayHello(){ use strict; alert(hello! This runs in strict mode }. What does Strict Mode do? Avoiding any accidental undeclared global variables. Var someObject = { prop: test, prop: test2 / error };. CSS Hacks...
HTML & CSS Archives - Code Mug
http://codemug.com/category/html
Web Development Tutorials and Tips. You are here: Home. Archives for HTML and CSS. CSS Hacks for IE6,IE7,IE8,IE9 and IE10. March 5, 2013. Here are the newest CSS hacks for IE all versions, compatible with Firefox and Chrome. #hack{ color:red; /* All browsers */ color:red! Important;/* All browsers but IE6 */ color:red; /* Only works in IE6 */ *color:red; /* IE6, IE7 */ color:red;/* Only works in IE7*/ * color:red; /* Only works in IE7 */ color:red 9; /* IE6, […]. Filed Under: HTML and CSS. March 4, 2013.
Flash plugin crashing problem in Firefox, finally solved! - Code Mug
http://codemug.com/computer-tricks/flash-plugin-crashing-problem-in-firefox
Web Development Tutorials and Tips. You are here: Home. Flash plugin crashing problem in Firefox, finally solved! Flash plugin crashing problem in Firefox, finally solved! March 30, 2014. Many people are confused when the Adobe Flash plugin keeps crashing in Firefox. Instead of showing some animations or videos, it keeps saying that The Adobe Flash plugin has crashed, Reload the page to try again. Or even worse, it pops up a Windows crash report with the error message. Adobe Flash Player 12.0 r77. Adobe&...
PHP Archives - Code Mug
http://codemug.com/category/php
Web Development Tutorials and Tips. You are here: Home. Enhance 404 Error Page, Make it Powerful. March 14, 2013. As a web developer, we’re so familiar with 404 error, and hate it so much. If the URL doesn’t exist, the server will return this page to browser to show. Normally, we use default 404 error message to tell visitors they’re looking for pages that don’t exist. Some designers make 404 pages pretty or humorous. […]. Add Random String Verification to Prevent CSRF. March 5, 2013. March 5, 2013.
web security Archives - Code Mug
http://codemug.com/tag/web-security
Web Development Tutorials and Tips. You are here: Home. Archives for web security. Add Random String Verification to Prevent CSRF. March 5, 2013. Cross-Site Request Forgery(CSRF) is difficult to trace, it could cause great harm. The attacker can use CSRF to prank, send spam information, delete data and so on. So how do we prevent CSRF? To deal with increasing CSRF attacks, Yahoo added a random string called crumb to the form. Facebook has similar solution, if you […]. Get URL Parameters with JavaScript.
Enhance 404 Error Page, Make it Powerful - Code Mug
http://codemug.com/php/enhance-404-error-page-make-it-powerful
Web Development Tutorials and Tips. You are here: Home. Enhance 404 Error Page, Make it Powerful. Enhance 404 Error Page, Make it Powerful. March 14, 2013. As a web developer, we’re so familiar with 404 error, and hate it so much. If the URL doesn’t exist, the server will return this page to browser to show. A Funny 404 Error. What can my 404 page do? 1Shows me a user from where, at what time, trying to visit what unavailable URLs. 3Shows me the IP address of the user. This also basic and easy, just retr...
Computer Tricks Archives - Code Mug
http://codemug.com/category/computer-tricks
Web Development Tutorials and Tips. You are here: Home. Archives for Computer Tricks. Flash plugin crashing problem in Firefox, finally solved! March 30, 2014. Many people are confused when the Adobe Flash plugin keeps crashing in Firefox. Instead of showing some animations or videos, it keeps saying that The Adobe Flash plugin has crashed, Reload the page to try again. Or even worse, it pops up a Windows crash report with the error message Adobe Flash Player 12.0 r77 […]. Filed Under: Computer Tricks.
TOTAL LINKS TO THIS WEBSITE
21
ALFY.com -- the Best Free Online Games
Jump to a Game - -. Angry Birds Bad Pigs. Angry Birds Hidden Numbers. Angry Birds Space Matching. Ballista Level Pack 1. Ballista Level Pack 2. Ballista Level Pack 3. Banana Sour Cream Bread. Ben 10 Chase Down. Ben 10 Humungousaur Memory. Ben 10 Mass Attack. Ben 10 Moto Ride. Ben 10 Super Bike. Ben 10 vs Zombies. Bike Mania On Ice. Born to be Big. Call of Duty 2. Caroline Goes to School. Cars vs. Guns. CatScratch - This Means War. Chicago Deep Dish Pizza. Counter Strike De Dust. Cupcake Tower of Yum.
Alfy (Alfred) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 10 Years. This deviant's full pageview. Last Visit: 71 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask? The big lebow...
GRATIS SPIL | ALFY Online Spil
Megastar Tarkan Dress up. Cherry Blossom Dress Up. Puzzle Horses – 1. Boxz game – Allhotgame.com. 1001 Arabian Nights 3. Votes, average: 5,00. Side 1 ud af 49. GRATIS SPIL ALFY Online Spil 2010, GRATIS SPIL ALFY Online Spil.
DOMAIN FOR SALE - GOLEM ® Domain Aftermarket
Contact us - Today. Alfyeu is for sale! Buying this domain means full control and ownership. Two hundred and ninety-five. Through GOLEM Domain Escrow Service. 100% Money Back Guarantee. If the seller fails to transfer the domain. Be immediate owner by contract. Through a Buy Now purchase. Through GOLEM Domain Escrow Service. 100% Money Back Guarantee. If the seller fails to transfer the domain. Be immediate owner by contract. Through a Buy Now purchase. Visitors last 31 days: n/a. And how does it work?
ALFY Agence immobilière à Meaux et Paris - Achat et vente de biens immobiliers, maisons et appartements
Agence ALFY Immobilier : achat et vente de maisons, appartements, terrains. ALFY Immobilier s'occupe de l'achat ou de la vente de votre bien immobilier. ALFY prend également soin de vous en proposant une offre de services complète, afin de vous simplifier la vie. Autres (Viagers / Terrains). Type de bien :. Soyez les premiers informés dès qu'un bien correspond à votre recherche. Créer une recherche. Déjà inscrit? La Sélection MEAUX. 5 MNS GARE TRILPORT. 130 000 €. GARE DE MEAUX 10 MNS EN BUS.
Blog . Ahmad Alfy
Fun with Front-end development and. Raquo; Let's Talk About RTL. Raquo; Give Opera Some Time. All licensed under Creative Commons CC0.
alfy.net -
Alfy
Alfy.ru - Прикольные анекдоты, картинки, приколы, карикатуры, истории и многое другое!
Загрузка. Пожалуйста, подождите. Фото замерзших мыльных пузырей. От 6 января 2014. Что будет, если мыльные пузыри пускать при морозе на улице? Результат нам показывает фотограф Анжела Келли в своих работах. Светящиеся портреты от Hid Saib. От 6 января 2014. Комиксы Wulff and Morgenthaler. От 21 ноября 2012. Не забываем, что картинки кликабельны. От 4 июня 2012. 1 Когда вы летите в самолете, ваши волосы растут в 2 раза быстрее. 2 ДНК человека на 30% совпадает с ДНК салата. 6 Пчёлы умеют считать до четырёх.
Gratis Spel | ALFY.se
Casinospel på nätet är realtivt nytt och många svenskar roar sig gärna med detta på sin fritid. Besök en casinoside och hitta de bästa bonusarna. Kiz – KizMemory. Jigsaw Puzzle - Platinum car R23. Completed and aranged the pieces of ufo picture. Dress up a beautiful cheerleader of Spain's team. She need to dress for the Spain team and make. GimmeMore – s02e01. Compare 2 images and find 25 differences! This one's hard - World's first seriesbased "find . Zombie soccer game - Allh. Sida 1 av 52.
I have a goldfish...
I have a goldfish. Oh I'm sorry. I thought we were talking about shit that doesn't matter. Monday, May 2, 2011. This is a taste of the excitement I feel for my upcoming move to Des Moines to be so close to JamFla! And also a little preview into our upcoming social events! Wednesday, March 9, 2011. The Dreaded Job Hunt. Any suggestions about how to snaggle that perfect job? Aka working 10 hours per week and getting paid $50,000/year). Friday, October 15, 2010. Fall DVR line up. This show is about a group ...