
cloudedcode.wordpress.com
Coded Cloud | So much to learn!So much to learn!
http://cloudedcode.wordpress.com/
So much to learn!
http://cloudedcode.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.4 seconds
16x16
32x32
64x64
PAGES IN
THIS WEBSITE
7
SSL
EXTERNAL LINKS
20
SITE IP
192.0.78.12
LOAD TIME
0.372 sec
SCORE
6.2
Coded Cloud | So much to learn! | cloudedcode.wordpress.com Reviews
https://cloudedcode.wordpress.com
So much to learn!
About | Coded Cloud
https://cloudedcode.wordpress.com/about
So much to learn! I am a generalist IT person. I can do a bit of everything, I code in PHP /MySQL, I also do IT Support and look after servers while managing a team of 3 people. This blog is about me learning some new skills while also tracking any problem solving. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. Notify me of new comments via email.
Cleaning tables of duplicates | Coded Cloud
https://cloudedcode.wordpress.com/2012/08/15/cleaning-tables-of-duplicates
So much to learn! Cleaning tables of duplicates. Cleaning tables of duplicates. August 15, 2012. Cleaning a MySQL database called presschoice that has combined duplicate values candidate id and press id columns. The table only has 3 columns, presschoice id (primary key, auto increment), candidate id (int), presschoice id (int). First checking how many duplicates you have. SELECT * FROM presschoice p;. Group by candidate id,press id. Creating a temp table to store the distinct values. Delete from same tab...
Learning about Nginx and PHP FPM | Coded Cloud
https://cloudedcode.wordpress.com/2012/07/25/start-nginx-php-fpm
So much to learn! Learning about Nginx and PHP FPM. Learning about Nginx and PHP FPM. July 25, 2012. As I am learning all this from the start I’m including instructions on how to create your VM Ubuntu server. If you don’t need to know this, you can skip down to the Nginx and PHP-fpm code. Virtual Machine and Installing nginx and PHP-fpm. To start from scratch you need a virtual machine, I prefer VM Player. For my VMs. To get an image for the VM player you can go to Thought Police. Run updates for Ubuntu:.
Delete from same table as select | Coded Cloud
https://cloudedcode.wordpress.com/2012/08/23/delete-from-same-table-as-select
So much to learn! Delete from same table as select. Delete from same table as select. August 23, 2012. Simple code to delete from same table as when selecting from it. MySQL doesn’t allow you to delete from same table as you select. So this is not possible:. DELETE FROM chess inner join tennis on chess.some id = tennis.some id where chess.some col = ‘great’. You will get an error saying: You can’t specify target table ‘chess’ for update in FROM clause. So you need to create a temp table and then delete.
August | 2012 | Coded Cloud
https://cloudedcode.wordpress.com/2012/08
So much to learn! Archive for August, 2012. Delete from same table as select. August 23, 2012. Simple code to delete from same table as when selecting from it. MySQL doesn’t allow you to delete from same table as you select. So this is not possible:. DELETE FROM chess inner join tennis on chess.some id = tennis.some id where chess.some col = ‘great’. You will get an error saying: You can’t specify target table ‘chess’ for update in FROM clause. So you need to create a temp table and then delete. Delete f...
TOTAL PAGES IN THIS WEBSITE
7
php | A Programmer's Blog
http://www.zalexblog.com/tag/php
A Programmer's Blog. Just another WordPress site. July 3, 2012. For a while I have not been using namespaces in PHP but the time has come. In this article I mostly explain namespaces to myself but if you find this useful that’s good as well. Working with several projects lately … Continue reading →. Fixing eAccelerator open basedir restriction. in Unknown on line 0 error. May 8, 2011. Installing PHP 5.3.3/5.3.4/5.3.5 on Ubuntu 10.04. January 7, 2011. Live dump of HTTP request/response headers. Ssm on Ins...
Making an SSH tunnel to a third machine behind the middle one | A Programmer's Blog
http://www.zalexblog.com/2014/03/08/making-an-ssh-tunnel-to-a-third-machine-behind-the-middle-one
A Programmer's Blog. Just another WordPress site. Behat: Setting cURL options with Guzzle and Goutte. Live dump of HTTP request/response headers →. Making an SSH tunnel to a third machine behind the middle one. March 8, 2014. Ssh -L 8080:host3:80 -N user@host2. Then you can use localhost:8080 to open host2:80. This entry was posted in Uncategorized. And tagged note to myself. Behat: Setting cURL options with Guzzle and Goutte. Live dump of HTTP request/response headers →. Leave a Reply Cancel reply.
A Programmer's Blog | Just another WordPress site | Page 2
http://www.zalexblog.com/page/2
A Programmer's Blog. Just another WordPress site. Newer posts →. October 2, 2010. Some tricks in Linux I find useful. One thing I’ve faced recently was getting the list of packages installed in Ubuntu. So to get a list of installed Debian/Ubuntu packages do. Zalex: # dpkg - get-selections. Apache deinstall apache-common install. To find out which package a file belongs to, do. Zalex: # dpkg -S /etc/php5/conf.d/pdo.ini. That works even for directories:. Zalex: # dpkg -S /etc/php5/conf.d. Newer posts →.
shell | A Programmer's Blog
http://www.zalexblog.com/tag/shell
A Programmer's Blog. Just another WordPress site. Find and replace contents of files recursively. November 10, 2010. Find / -name ‘*.pm’ -exec sed -i -e ‘s/oldtext/newxtext/’ {} ;. Live dump of HTTP request/response headers. Making an SSH tunnel to a third machine behind the middle one. Behat: Setting cURL options with Guzzle and Goutte. Fixing eAccelerator open basedir restriction. in Unknown on line 0 error. Lucas van Lierop on Installing PHP 5.3.3/5.3.4/5.3.5 on Ubuntu 10.04. A Programmer's Blog.
Uncategorized | A Programmer's Blog
http://www.zalexblog.com/category/uncategorized
A Programmer's Blog. Just another WordPress site. Live dump of HTTP request/response headers. March 8, 2014. Run on the machine in question: live HTTP response headers tcpdump -v -n -S -s 0 -A ‘tcp src port 80′ live HTTP request headers tcpdump -v -n -S -s 0 -A ‘tcp dst port 80′ In case of nginx … Continue reading →. Making an SSH tunnel to a third machine behind the middle one. March 8, 2014. Ssh -L 8080:host3:80 -N user@host2 Then you can use localhost:8080 to open host2:80. December 13, 2013. Files: f...
Fixing eAccelerator “open_basedir restriction. in Unknown on line 0″ error | A Programmer's Blog
http://www.zalexblog.com/2011/05/08/fixing-eaccelerator-open_basedir-restriction-in-unknown-on-line-0-error
A Programmer's Blog. Just another WordPress site. Chmod files but not directories and vice versa. Namespaces in PHP →. Fixing eAccelerator open basedir restriction. in Unknown on line 0 error. May 8, 2011. If you are using PHP eAccelerator with open basedir enabled you could have huge amount of these notices in your PHP log files:. Open basedir restriction. in. Unknown on line 0. I don’t know why it is not fixed yet in the next release of eAccelerator but there is a bug about it. Eaccelerator.c root @.
linux | A Programmer's Blog
http://www.zalexblog.com/tag/linux
A Programmer's Blog. Just another WordPress site. Fixing eAccelerator open basedir restriction. in Unknown on line 0 error. May 8, 2011. If you are using PHP eAccelerator with open basedir enabled you could have huge amount of these notices in your PHP log files: open basedir restriction. in Unknown on line 0 The reason behind it that at the moment eAccelerator tries to … Continue reading →. Live dump of HTTP request/response headers. Making an SSH tunnel to a third machine behind the middle one.
testing | A Programmer's Blog
http://www.zalexblog.com/tag/testing
A Programmer's Blog. Just another WordPress site. Behat: Setting cURL options with Guzzle and Goutte. December 13, 2013. If when running your Behat tests on a https website you ever seen these errors: [curl] 51: SSL: certificate subject name ‘ubuntu’ does not match target host name ‘mycoolwebsite’ or [curl] 60: SSL certificate problem, verify that the CA cert … Continue reading →. Live dump of HTTP request/response headers. Making an SSH tunnel to a third machine behind the middle one.
eaccelerator | A Programmer's Blog
http://www.zalexblog.com/tag/eaccelerator
A Programmer's Blog. Just another WordPress site. Fixing eAccelerator open basedir restriction. in Unknown on line 0 error. May 8, 2011. If you are using PHP eAccelerator with open basedir enabled you could have huge amount of these notices in your PHP log files: open basedir restriction. in Unknown on line 0 The reason behind it that at the moment eAccelerator tries to … Continue reading →. Live dump of HTTP request/response headers. Making an SSH tunnel to a third machine behind the middle one.
Behat: Setting cURL options with Guzzle and Goutte | A Programmer's Blog
http://www.zalexblog.com/2013/12/13/behat-setting-curl-options-with-guzzle-and-goutte
A Programmer's Blog. Just another WordPress site. Making an SSH tunnel to a third machine behind the middle one →. Behat: Setting cURL options with Guzzle and Goutte. December 13, 2013. If when running your Behat tests on a https website you ever seen these errors:. Curl] 51: SSL: certificate subject name ‘ubuntu’ does not match target host name ‘mycoolwebsite’. Curl] 60: SSL certificate problem, verify that the CA cert is OK. Details:. You will need to set. As well, otherwise the. Default: extensions: B...
TOTAL LINKS TO THIS WEBSITE
20
Clouded By Technology
Sunday, February 25, 2018. Embracing Your Inner Über-Geek! Okay, I'm not trying to imply that I am an Über-geek by any stretch of the imagination. But, and you knew there would be one, I am well on my way to becoming a member of said class of geek. How you ask? Gentle reader, please sit back and prepare to be amazed.or put to sleep. Either way, you win! So put on your jammies, sit down with a nice, soothing beverage, and read on. No, I am enamored with virtualization, cloud computing, and network security.
CloudedCheetah (Lacey) | DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 8 Years. March 10, 1996. Last Visit: 340 weeks ago. This deviant's activity is hidden. Deviant since Jan 26, 2010. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. You can drag and drop to rearrange. You can edit widgets to customize them. The bottom has widgets you can add! Why," you ask?
cloudedclarity.com - This website is for sale! - cloudedclarity Resources and Information.
This domain is expired. For renewal instructions please click here.
CloudedClearly | Going with the Ebbs and Flows!
Going with the Ebbs and Flows! Apparently my new elderly friend suffers from dementia and her daughter just moved her to the retirement home not to far from the plaza. She was told not to leave the home but she apparently left on her own. So the address she gave me was her old address. The whole time several thoughts went through my head. What if she has alzheimer’s? What if that’s not her address, but mostly what if I wasn’t the one who found her? So tell me what would you have done? Looking at the sky ...
Coded Cloud | So much to learn!
So much to learn! Delete from same table as select. August 23, 2012. Simple code to delete from same table as when selecting from it. MySQL doesn’t allow you to delete from same table as you select. So this is not possible:. DELETE FROM chess inner join tennis on chess.some id = tennis.some id where chess.some col = ‘great’. You will get an error saying: You can’t specify target table ‘chess’ for update in FROM clause. So you need to create a temp table and then delete. Cleaning tables of duplicates.
cloudedcolors (shanna) - 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 4 Years. This deviant's full pageview. March 28, 1997. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. You can drag and drop to rearrange.
cloudedcomputing.com - This website is for sale! - cloudedcomputing Resources and Information.
The domain cloudedcomputing.com. May be for sale by its owner! This page provided to the domain owner free. By Sedo's Domain Parking. Disclaimer: Domain owner and Sedo maintain no relationship with third party advertisers. Reference to any specific service or trade mark is not controlled by Sedo or domain owner and does not constitute or imply its association, endorsement or recommendation.
TransIP - Reserved domain
Is gereserveerd door een klant van TransIP. Has been registered by a customer of TransIP. Direct aan de slag met je domein? Getting started with your domain. Hoe begin ik een eigen website of blog? How do I start a website or blog? Hoe kan ik e-mail versturen vanaf mijn eigen domeinnaam? How can I send and receive email with my own domain? Hoe stuur ik mijn domeinnaam door? How do I forward my domain name? Hoe kan ik een domeinnaam van een andere eigenaar overkopen? 262 beoordelingen op Trustpilot.
cloud(ed) - Home
Module 1: Create a Website. Module 2: Video Creation and Editing. Module 3: Technology and Education. Module 5: Google Apps.