background preloader

Web development

Facebook Twitter

Amazon AWS: Setting up FTP on EC2 Windows Instances. Introduction After reading this article, you will be able to successfully FTP to a running Amazon AWS EC2 Windows instance without an elastic IP.

Amazon AWS: Setting up FTP on EC2 Windows Instances

Background Amazon AWS offers a year of free instances to some great Windows 2008 virtual machines. This tool is awesome for anyone wanting to test code in the Windows 2008 environment but would rather not utilize their production machines. The documentation for some critical tasks in AWS leave a little to be desired though. Using the article First, create a windows instance in Amazon AWS Management Console. In AWS, select “Security Groups” from the left-hand menu. We are now done setting up the security groups in AWS, let’s setup FileZilla Server. Install FileZilla Server on the Amazon Instance (after remoting in) and log into the server interface. How to install MySQL on Ubuntu/Debian — ariejan de vroom. It may seem easy for some, but for others, installing MySQL on Ubuntu or Debian Linux is not an easy task.

How to install MySQL on Ubuntu/Debian — ariejan de vroom

This article explains to you how to install the MySQL Server and Client packages on a Ubuntu/Debian system. First of all, make sure your package management tools are up-to-date. Also make sure you install all the latest software available. sudo apt-get update sudo apt-get dist-upgrade After a few moments (or minutes, depending on the state of your system), you're ready to install MySQL. ~ By default, recent Ubuntu/Debian systems install a MySQL Server from the 5-branch. First, install the MySQL server and client packages: FTP Server. How to get local ip address USE BOOST.ASIO ?_Xshl5-Lab. Graphics.cs.williams.edu/courses/cs371/f10/G3D/samples/remoteRender/source/App.cpp. Simple HTTP: Sending Images (jpeg/gif) - C And C++ Any examples of posting from mongoose to an https site with mg_download.

Webflow - Responsive Web Design Tool. Thoughts on RESTful API Design. Why LinkedIn dumped HTML5 & went native for its mobile apps. LinkedIn has just launched the latest versions of its mobile apps, and in a stunning reversal, it’s gone from mobile web-based apps back to fully native.

Why LinkedIn dumped HTML5 & went native for its mobile apps

Less than a year ago, the company was touting its iPad app as fully mobile-web based, with just one screen, the homescreen, running natively. Now, all that’s gone, as is some of the optimism about the current capabilities of the mobile web. In a revealing chat with Kiran Prasad (pictured), LinkedIn’s senior director for mobile engineering, we learned exactly why — and it’s not what you think. Prasad said performance issues weren’t causing crashes or making the app run slowly. What he did say shows that HTML5 for the mobile web still has a bright future — but only if developers are willing to build the tools to support it. Here’s the bulk of our chat with Prasad on engineering topics around the new apps: VentureBeat: [interrupting interview about the app launch] Wait, let’s go back a second. GeoIP JavaScript Web Service. Opentutorials.org. PythonLearn - Self-paced learning Python. PHP/MySQL. Node.js | Javascript - Platforms. C++ Web Programming. What is CGI?

C++ Web Programming

The Common Gateway Interface, or CGI, is a set of standards that define how information is exchanged between the web server and a custom script.The CGI specs are currently maintained by the NCSA and NCSA defines CGI is as follows:The Common Gateway Interface, or CGI, is a standard for external gateway programs to interface with information servers such as HTTP servers. The current version is CGI/1.1 and CGI/1.2 is under progress. Web Browsing To understand the concept of CGI, let's see what happens when we click a hyperlink to browse a particular web page or URL. Your browser contacts the HTTP web server and demand for the URL ie. filename.Web Server will parse the URL and will look for the filename. However, it is possible to set up the HTTP server in such a way that whenever a file in a certain directory is requested, that file is not sent back; instead it is executed as a program, and produced output from the program is sent back to your browser to display.

Java Script" 검색결과. A Deadfire Program Master. JavaScript , jQuery , AJAX 강의 모음. Posted by 구루 @xguru on 2009/02/06 AJAX 가 웹 기술의 대세로 떠오르면서, Javascript 언어에 대해 새로운 접근들이 시도되고 다양한 AJAX 및 자바스크립트 라이브러리들이 출시되었습니다.

JavaScript , jQuery , AJAX 강의 모음

많이 쓰이니까 쉽게 쓸 수 있도록 하는 방법들이 나오는 건 당연하겠죠. Script.aculo.us, Prototype.js , MooTools , jQuery, YUI ( Yahoo UI Library ) 등등.. HTML5 Video Face Detection with Canvas and Javascript. This morning I saw this link on youtube which was a little mashup of some HTML5 technologies.

HTML5 Video Face Detection with Canvas and Javascript

I thought it would be funny if I could do the same, but with goofy pair of glasses. I’ve also been itching to put the CCV JavaScript Face Detection library to use. This library shows a few examples on static images, but after a quick look at the code, it shows that the underlying element to the script is a canvas element. 40+ New HTML5/CSS3 Articles and Tutorials. Vert.x- Effortless asynchronous application development for the modern web and enterprise. Node.js.

Uploading Files To MySQL Database - PHP MySQL Tutorial. Using PHP to upload files into MySQL database sometimes needed by some web application.

Uploading Files To MySQL Database - PHP MySQL Tutorial

For instance for storing pdf documents or images to make som kind of online briefcase (like Yahoo briefcase). For the first step, let's make the table for the upload files. The table will consist of. id : Unique id for each filename : File nametype : File content typesize : File sizecontent : The file itself When you click the download link, the $_GET['id'] will be set. Example : if(isset($_GET['id'])) { // if id is set then get the file with the id from database.