码迷,mamicode.com
首页 > 2016年08月25日 > 全部分享
MyEclipse简介
...
分类:系统相关   时间:2016-08-25 23:59:49    阅读次数:685
Ubuntu apache2 wsgi 部署django
在ubuntu上部署django其实还算简单直观,最重要的问题就是路径设置正确。 一,安装python 和django。这个很简单,django用pip安装就可以。就不解释了。 二,安装apache2 和 wsgi。 这里用的是apt-get. sudo apt-get insall apache2 ...
分类:Web程序   时间:2016-08-26 00:01:29    阅读次数:384
HDU 1520 树形dp裸题
1、HDU 1520 Anniversary party 2、总结:第一道树形dp,有点纠结 题意:公司聚会,员工与直接上司不能同时来,求最大权值和 #include<iostream> #include<cstring> #include<cmath> #include<queue> #inclu ...
分类:其他好文   时间:2016-08-25 23:59:30    阅读次数:356
帮助类4
#region 构造URL GET请求 2 /// <summary> 3 /// 获取请求的反馈信息 4 /// </summary> 5 /// <param name="url">地址</param> 6 /// <returns></returns> 7 public static stri ...
分类:其他好文   时间:2016-08-25 23:58:59    阅读次数:389
InventSumDelta表的作用
https://groups.google.com/forum/#!topic/microsoft.public.axapta.programming/rRfbJo9M0dk The purpose of the InventSumDelta table is to avoid locking on ...
分类:其他好文   时间:2016-08-26 00:01:29    阅读次数:410
Django1.9开发博客(12)- i18n国际化
国际化与本地化的目的为了能为各个不同的用户以他们最熟悉的语言和格式来显示网页。 Django能完美支持文本翻译、日期时间和数字的格式化、时区。 另外,Django还有两点优势: 参考官方文档:https://docs.djangoproject.com/en/1.9/topics/i18n/ 配置 ...
分类:其他好文   时间:2016-08-26 00:00:13    阅读次数:379
Newtonsoft.Json(Json.Net)学习笔记-高级使用(转)
1.忽略某些属性 2.默认值的处理 3.空值的处理 4.支持非公共成员 5.日期处理 6.自定义序列化的字段名称 7.动态决定属性是否序列化 8.枚举值的自定义格式化问题 9.自定义类型转换 10.全局序列化设置 一.忽略某些属性 类似本问开头介绍的接口优化,实体中有些属性不需要序列化返回,可以使用 ...
分类:Web程序   时间:2016-08-25 23:58:19    阅读次数:822
29:字符串分割
题目描述 连续输入字符串(输出次数为N,字符串长度小于100),请按长度为8拆分每个字符串后输出到新的字符串数组, 长度不是8整数倍的字符串请在后面补数字0,空字符串不处理。 首先输入一个整数,为要输入的字符串个数。 例如: 输入:2 abc 12345789 输出:abc00000 1234567 ...
分类:其他好文   时间:2016-08-26 00:00:13    阅读次数:340
汉字转拼音
#region 汉字转拼音 2 3 #region 数组信息 4 private static int[] pyValue = new int[] 5 6 { 7 -20319, -20317, -20304, -20295, -20292, -20283, -20265, -20257, -202 ...
分类:其他好文   时间:2016-08-25 23:59:23    阅读次数:2125
python下编译py成pyc和pyo
其实很简单,用python -m py_compile file.py python -m py_compile /root/src/{file1,file2}.py编译成pyc文件。也可以写份脚本来做这事:Code: 用python -O -m py_compile file.py 编译成pyo文 ...
分类:编程语言   时间:2016-08-25 23:57:28    阅读次数:555
LeetCode OJ 4. Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh ...
分类:其他好文   时间:2016-08-25 23:58:26    阅读次数:342
十分钟入门pandas数据结构和索引
十分钟入门pandas数据结构和索引
分类:Web程序   时间:2016-08-25 23:56:49    阅读次数:621
web相应式布局一些经验之谈
响应式布局常用技术 第一步:meta标签的应用。 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 第二步:使用media-queries.js 或 respond.js 。 <!--[if lt IE 9] ...
分类:Web程序   时间:2016-08-25 23:58:49    阅读次数:460
redis常用知识(二)
Redis相关知识总结(二) Php操作redis常用的方法 1、 String类型 (1) Get(key) 获取设置的值 (2) Set(key,value) 设置相应的key值 (3) getSet(key,value) 修改key值 (4) append(key,value2) 在指定的ke ...
分类:其他好文   时间:2016-08-25 23:59:29    阅读次数:342
LeetCode37 Sudoku Solver
题目: Write a program to solve a Sudoku puzzle by filling the empty cells. Empty cells are indicated by the character '.'. You may assume that there wil ...
分类:其他好文   时间:2016-08-25 23:57:10    阅读次数:287
让一个小Div(子)在大Div(父)中垂直水平都居中
方法1: 方法2: 方法3: 方法4: ...
分类:其他好文   时间:2016-08-25 23:59:07    阅读次数:287
leetcode修炼之路——83. Remove Duplicates from Sorted List
哈哈,我又来了。昨天发现题目太简单就没有放上来,今天来了一道有序链表的题。题目如下: Given a sorted linked list, delete all duplicates such that each element appear only once. For example, Giv ...
分类:其他好文   时间:2016-08-25 23:56:12    阅读次数:230
677条   1 2 3 4 5 6 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!