码迷,mamicode.com
首页 > 2014年10月27日 > 全部分享
阿里云 django的一次web维护记录
首先, 丢给我一个阿里云的服务器的账号/密码,之前没有玩过阿里云,想想应该也是ssh服务来远程登陆. 环境: centos+nginx+uwsgi+python2.7+django. 1. 首先看了下nginx和uwsgi的配置文件, 弄懂大概关系. 怎么使用可以参考django doc: 点击打开链接 . 而我主要参考帖子:http://www.jianshu.com/p/e6ff4a28...
分类:Web程序   时间:2014-10-27 01:49:08    阅读次数:378
JAVA学习第五十三课 — IO流(七)File对象练习 & Properties集合
一、深度遍历文件夹 撒...
分类:编程语言   时间:2014-10-27 01:47:58    阅读次数:261
cocos2dx实例开发之flappybird(入门版)
cocos2dx社区里有个系列博客完整地复制原版flappybird的所有特性,不过那个d...
分类:移动开发   时间:2014-10-27 01:47:27    阅读次数:264
hdu - 4974 - A simple water problem(贪心 + 反证)
题意:N个队(N 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4974 ——>>我们应该尽量使每场比赛的得分为1 : 1,这样可以达到最少的比赛场数(不小于单个队伍的分数)。 假设有2场比赛的比分为1 : 0, 1)a : b = 1 : 0,c : d = 1 : 0,这时可以安排a : c = 1 : 1,只需1场就可达到相同的分数。...
分类:其他好文   时间:2014-10-27 01:46:39    阅读次数:207
ORA-32001: write to SPFILE requested but no SPFILE specified at startup
SQL> alter system set sga_max_size=2048M scope=spfile; alter system set sga_max_size=2048M scope=spfile * ERROR at line 1: ORA-32001: write to SPFILE ...
分类:其他好文   时间:2014-10-27 01:45:12    阅读次数:179
A Tour of Go Slicing slices
---恢复内容开始---Slices can be re-sliced, creating a new slice value that points to the same array.The expressions[lo:hi]evaluates to a slice of the elemen...
分类:其他好文   时间:2014-10-27 01:46:25    阅读次数:215
c语言简单定时器
对于上篇博客的代码改进了一点,能一秒一秒的走动了,吼吼#include#include#include#include void time(){ struct tm *p; time_t T; char t[20]; time(&T); p= localtime(&T); sprintf(...
分类:编程语言   时间:2014-10-27 01:47:43    阅读次数:217
[Leetcode] Integer to Roman
Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.Solution: 1 public class Solution { 2 pu...
分类:其他好文   时间:2014-10-27 01:47:12    阅读次数:139
“学霸系统”之NABC
我们团队这次选择的是“学霸系统”客户端项目:1.需求(need)作为一款和网上教学问答系统具有相似功能的手机客户端,具体的功能已给出要求:用户管理、搜索、分类、上传下载、用户贡献与交互等功能。(1)用户管理:基本的用户信息实现,用户的注册,登录,账户管理。(2)搜索:根据用户给出的关键词搜索相关的文...
分类:其他好文   时间:2014-10-27 01:45:46    阅读次数:272
月入万元的SEO优化师:分享我几年接私单的经历
导读:优化师阿亮是一名具有十年SEO经验的优化师,从2004年踏入这个行业一直到2013年辞职下海自己做接私单优化,从刚开始的收入不错到后面步履维艰,2014年通过云客网接单,到现在已月入万元以上,下面就分享下主人翁这段酸甜苦辣的经历。我叫阿亮,我是一名SEO优化师,2004年跨入了SEO这个行业,...
分类:其他好文   时间:2014-10-27 01:44:36    阅读次数:216
thinkphp上传至服务器后模板无法解析原因
前几日做好的响应式静态页面上传至虚拟空间,打开网址地址出现:模板不存在:./app/Home/View/Index/index.html错误位置FILE: /home/u333385714/public_html/ThinkPHP/Library/Think/View.class.php LINE....
分类:Web程序   时间:2014-10-27 01:43:48    阅读次数:508
Xcon2014 && Geekpwn2014
Xcon2014 && Geekpwn2014
分类:其他好文   时间:2014-10-27 01:45:18    阅读次数:247
《Pro Git》学习笔记
这是小弟在阅读《Pro Git》时总结和记录的一些Git的基本原理和基本操作。
分类:其他好文   时间:2014-10-27 01:46:36    阅读次数:296
【nRF51822蓝牙开发笔记】点亮LED灯
/******************** (C) COPYRIGHT 2014 ???? ******************** * ÎļþÃû :main * ÃèÊö : * ÊÔÑéƽ̨: nRF51822À¶ÑÀ¿ª·¢°å * ÃèÊö : * ×&
分类:其他好文   时间:2014-10-27 01:43:20    阅读次数:151
求最大数,最小数
package my;public class MyJava { public static void main(String[] args) { // TODO Auto-generated method stub int[] num = {10,5,13,22,87,44}; int m...
分类:其他好文   时间:2014-10-27 01:46:18    阅读次数:180
A Tour of Go The new function
The expressionnew(T)allocates a zeroedTvalue and returns a pointer to it.var t *T = new(T)ort := new(T)package main import "fmt"type Vertex struct { ....
分类:其他好文   时间:2014-10-27 01:44:40    阅读次数:177
冒泡排序
package my;public class MyJava { public static void main(String[] args) { // TODO Auto-generated method stub int[] num = {10,5,13,22,87,44}; int t...
分类:编程语言   时间:2014-10-27 01:43:20    阅读次数:202
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!