mysql -u root -p
CREATE USER 'username'@'%' IDENTIFIED BY 'password'
1. Quản lý, xử lý và chia sẻ hình ảnh: 10 người | |
2. Streaming server (Video, Live streamming, music, ... ): 10 người | |
3. Website mạng xã hội: 10 người | |
4. Chat & Notification server: 10 người | |
5. Quản lý và xử lý dữ liệu đồ thị (graph database): 10 người | |
MÔ TẢ CÔNG VIỆC: | |
Với mỗi dự án đều cần PM, Tech lead, Team lead, Senior và Junior developer để xử lý các công việc sau: | |
- Xử lý database |
Hello! | |
Basic installed stuff: | |
- PHP (5.5.12) (see http://localhost/info.php) | |
- Node (0.12.2) | |
- MySql (5.5.41) | |
- Phalcon (2.0.0) | |
- PostgreSQL | |
- Mongo | |
- Android development environment (note that you cannot actually run android vm inside this vm, darn... I'll try to figure out this though) |
1. Count social sharing from API |
exports.randeats = function(req, res){ | |
var key = req.query.key; | |
var location = encodeURIComponent(req.query.location); | |
var radius = 16000; | |
var sensor = false; | |
var types = "restaurant"; | |
var keyword = "fast"; | |
var https = require('https'); | |
var url = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?" + "key=" + key + "&location=" + location + "&radius=" + radius + "&sensor=" + sensor + "&types=" + types + "&keyword=" + keyword; |
// ----------- | |
// Debugger that shows view port size. Helps when making responsive designs. | |
// ----------- | |
function showViewPortSize(display) { | |
if(display) { | |
var height = jQuery(window).height(); | |
var width = jQuery(window).width(); | |
jQuery('body').prepend('<div id="viewportsize" style="z-index:9999;position:fixed;top:40px;left:5px;color:#fff;background:#000;padding:10px">Height: '+height+'<br>Width: '+width+'</div>'); | |
jQuery(window).resize(function() { |
<?php | |
// PHP memory limit for this site | |
define( 'WP_MEMORY_LIMIT', '128M' ); | |
// Explicitely setting url | |
define( 'WP_HOME', 'http://domain.com' ); | |
define( 'WP_SITEURL', 'http://domain.com' ); | |
// Set url to... whatever. | |
define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] ); |