码迷,mamicode.com
首页 > 其他好文
git分支合并到master
git支持很多种工作流程,我们采用的一般是这样,远程创建一个主分支,本地每人创建功能分支,日常工作流程如下:去自己的工作分支$ git checkout work工作....提交工作分支的修改$ git commit -a回到主分支$ git checkout master获取远程最新的修改,此时不...
分类:其他好文   时间:2015-11-17 10:39:13    阅读次数:502
POJ1979 Red and Black (简单DFS)
POJ1979DescriptionThere is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile....
分类:其他好文   时间:2015-11-17 10:36:52    阅读次数:198
[转载] 武汉海达数云技术有限公司 - 软件研发员工资详情(武汉,2015年)
武汉海达数云技术有限公司 - 软件研发员工资详情(武汉,2015年) 此信息由圈友于2015年10月分享,其分享的是2015年的经验及资料工资待遇(软件研发员)基本工资:7000元加班工资: 津贴补助:0元绩效工资:300元年终奖:15000元真人分享(武汉海达数云技术有限公司)12条工资待遇1条面...
分类:其他好文   时间:2015-11-17 10:34:40    阅读次数:161
一款 jetbrains系列软件的配色插件 Material Theme, 支持sublime
一款 jetbrains系列软件的配色插件 Material Theme, 支持sublime, stom Atom Editor ?IntelliJ IDEA Vim Terminal OSX? https://github.com/ChrisRM/material-theme-jetbrain https://packagecontrol.io/pac...
分类:其他好文   时间:2015-11-17 09:33:07    阅读次数:279
遮罩层模版
css样式:#export_page_cover { display:none; opacity: 0.7; background-color:#FFF; z-index: 1001; position: fixed; top: 0px; bottom: 0px; left: 0px; rig...
分类:其他好文   时间:2015-11-17 09:32:03    阅读次数:174
T041 矩阵最外圈减内心差
#includeint main(){ int N, M, i, j, s1=0, s2=0; int a[100][100]; scanf("%d%d", &N, &M); for(i=0;i<N;i++) { for(j=0;j<M;j++) ...
分类:其他好文   时间:2015-11-17 09:29:24    阅读次数:140
T016
#includeint main(){ char a, b, c; for(a='X';a<='Z';a++) for(b='X';b<='Z';b++) { if(a!=b) { for(c='X';c<='Z';c++) ...
分类:其他好文   时间:2015-11-17 09:29:52    阅读次数:166
EasyUI篇のico
所有图标位置:/themes/iconscss引用位置:/themes/icon.css可自行添加16*16的小图片放在icons中,icon.css代码添加即可例如:.icon-logo{ background:url('icons/logo.ico') no-repeat center cent...
分类:其他好文   时间:2015-11-17 09:30:10    阅读次数:453
J2EE环境搭建
WEB环境搭建 1、J2EE开发环境搭建(1)——安装JDK、Tomcat、Eclipse 2、JAVA运行环境和J2EE运行环境的搭建 3、jsp开发所需要的eclipse插件(lomboz、tomcatplugin)之安装、配置方法
分类:其他好文   时间:2015-11-17 09:28:45    阅读次数:126
T015 迭代求根
#include#includeint main(){ double a, x0, x1; scanf("%lf", &a); if(a1e-3); } printf("%.5lf\n", x1); return 0;}
分类:其他好文   时间:2015-11-17 09:29:02    阅读次数:104
T042 左下角
#includeint main(){ int n, i, j; int a[100][100]; scanf("%d", &n); for(i=0;i<n;i++) { for(j=0;j<n;j++) scanf("%d", &a[i][...
分类:其他好文   时间:2015-11-17 09:27:45    阅读次数:165
OSChina 周二乱弹 —— 上班被老板碰瓷
周二!大家壕,早上吃了个包子,想起了一段往事 小时候妈妈叫我去买包子,妈妈说包子一块四个,别弄错了!然后妈妈给了我一块钱,卖包子的看着我这小孩挺可爱,就给了我五个。 回来的路上,我心想回家没法交代,经...
分类:其他好文   时间:2015-11-17 08:25:05    阅读次数:149
SMART原则助你设定有效目标
目标就可以让人工作和生活充满动力,SMART原则指导我们如何设定有效目标……...
分类:其他好文   时间:2015-11-17 08:24:41    阅读次数:328
yii 验证码的使用和验证过程
如果要实现这个过程的话,需要几个步骤第一步就是controller的操作在要操作的控制器中添加如下代码:public function actions(){return array( // captcha action renders the CAPTCHA image displayed on t...
分类:其他好文   时间:2015-11-17 08:24:26    阅读次数:138
OC中的protocol
一、简单使用1.基本用途可以用来声明一大堆方法(不能声明成员变量)只要某个类遵守了这个协议,就相当于拥有这个协议中的所有方法声明只要父类遵守了某个协议,就相当于子类也遵守了2.格式协议的编写@protocol协议名称//方法声明列表@end某个类遵守协议@interface类名:父类@end3.关键...
分类:其他好文   时间:2015-11-17 08:22:46    阅读次数:122
[?*]Letter Combinations of a Phone Number
Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephon...
分类:其他好文   时间:2015-11-17 08:24:43    阅读次数:199
LeetCode 34 Search for a Range
Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the ord...
分类:其他好文   时间:2015-11-17 08:24:29    阅读次数:113
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!