I am going to get back into updating more regularly on here again. A lot of distractions have occurred that […]
Dizzy Coding
Multi-threading in PHP
Since, and unfortunately, multi-threading is not available in PHP I went on a search for find a solution to create […]
Problems with Curl result and file_get_contents
Coding Problem : I’m trying to get an image from a website to use imagecreatefrompng (), but the result was […]
Conhecendo o Ruby: Diferença entre include e extend
Quando falamos de módulos no Ruby, include e extend são usados para adicionar funcionalidades de um módulo em uma determinada […]
Vimify your command line
Say you entered pretty long command into your shell but noticed an error in the middle. How do you fix […]
“adding elements in a specified column or row in a two dimensional array java” Code Answer’s
In this article we will learn about some of the frequently asked TypeScript programming questions in technical like “adding elements […]
Format json output
Usage some-not-formated-json-string | python -mjson.tool Exemple Creation of a json.php script which outputs a JSON string: <?php $a = array( […]
“create block inside table html” Code Answer
In this article we will learn about some of the frequently asked HTML programming questions in technical like “create block […]
“justify xd” Code Answer
In this article we will learn about some of the frequently asked CSS programming questions in technical like “justify xd” […]
Apache htaccess redirect http/www to https/non-www [duplicate]
Apache htaccess redirect http/www to https/non-www [duplicate] – Problems with loading a website are often blamed on the Internet connection, […]
“factor in r” Code Answer
In this article we will learn about some of the frequently asked about R programming questions in technical like “factor […]
Share Postfix IMAP Calenders
A server stack is the collection of software that forms the operational infrastructure on a given machine. In a computing […]
“yaml reference library variable” Code Answer
In this article we will learn about some of the frequently asked ActionScript programming questions in technical like “yaml reference […]
Docker in development (with Node.js)
This post is going to help you find out how to setup docker in such a way that you can […]
crawlAmazon
Everyone can get source code from github(https://github.com/dome2322/crawlAmazon.git). the project are: 1.get product image and text from Amazon.com 2.built with Python […]
Observable objects in JavaScript
More here: http://eventargs.com/2012/11/30/lookout-js-and-observable-javascript-objects/ var watch = function(obj, prop, callback) { var oldValue = obj[prop] , newValue = oldValue , getter […]
Quickly view & execute previous commands
In Bash, you can execute the last command you ran starting with some prefix like so: # executes a previous […]
Get progress of an AJAX request
So you write a cool AJAX application, but you’re scared that people with über slow connections will get impatient and […]
Escape accent letters python
strescaped = urllib.quote(password, safe=’àèéìòù”£’).decode(‘utf-8’).encode(‘latin-1’) formdata = {‘jusername’: username, ‘jpassword’:str_escaped}