网站

https://dev-ops-tools.zeef.com/richard.kraayenhagen#block_41685_process-management

http://www.devopsbookmarks.com/ci
http://blog.jobbole.com/80879/

https://segmentfault.com/a/1190000013660164
http://shenzekun.cn/
http://www.arccode.net/

http://theme-next.iissnan.com/platforms.html
重磅blog
https://blog.sunnyyoung.net/
http://simpleyyt.com/

http://blog.csdn.net/column/details/javaquality.html
http://blog.csdn.net/lx_yoyo/article/details/73332590
https://vzan.cc/f/s-1033826?typeId=0&auth_time_1=636555369673415723&auth_time=636555372644820141

https://vzan.cc/f/s-1033826?typeId=0&auth_time=636555369673415723

https://tv.idol001.com/video_live.php?id=5a336fcb7a11732b0b8b4e36

https://vzan.cc/f/s-1033826?vPageIndex=1&vSeeId=27802632

破解idea http://blog.csdn.net/yadicoco49/article/details/78737773
http://www.cnblogs.com/larryzeal/p/5799195.html
https://github.com/roncoo/spring-boot-demo
http://pan.baidu.com/s/1nvl11eL

package exam;

import java.util.HashMap;
import java.util.Map;

public class max {

public static void main(String[] args) {
    String[] list = { "wo", "ni", "ta", "wo", "ni", "ta", "wo", "ni", "ta",
            "wo", "ni", "ta", "wo", "ni", "ta","ta","ta","ta","ta","ta" };
    Map<String, Integer> result = new HashMap<String, Integer>();
    Map<String, Integer> resMap = find(result, list, 0, 1);
    String max = null;
    for (String s : resMap.keySet()) {
        if(max == null){
            max = s;
        }else {
            if(resMap.get(max) < resMap.get(s)){
                max = s;
            }
        }
    }
    System.out.println(max);
    System.out.println(resMap.get(max));
}

public static Map<String, Integer> find(Map<String, Integer> result,
        String[] list, int cur, int compare) {
    int init = cur;
    while (compare <= list.length - 1) {
        if (list[compare].equals(list[cur])) {
            String tmp = list[compare];
            cur++;
            list[compare] = list[cur];
            list[cur] = tmp;
        }
        compare++;
    }
    result.put(list[cur], cur - init);

    if (cur == list.length - 1) {
        return result;
    } else {
        compare = cur + 2;
        cur = cur + 1;
        return find(result, list, cur, compare);
    }
}

}

package exam;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class ThreadPoolExecutorTest {

static int ticket = 1;


public static void main(String[] args) throws InterruptedException {
    ExecutorService fixedThreadPool = Executors.newFixedThreadPool(4);
    while (ticket < 101) {
    fixedThreadPool.execute(new Runnable() {
        public void run() {
            synchronized (Ticket.class) {
                try {
                        System.out.println(Thread.currentThread().getName()
                                + " :卖出 " + ticket + "号票");
                        ticket++;
                    
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
        
    });
    }
    
    fixedThreadPool.shutdown();  
    while (true) {  
        if (fixedThreadPool.isTerminated()) {  
            System.out.println("结束了!");  
            break;  
        }  
        Thread.sleep(200);  
    }  

}

}

web-fragment.xml文件
http://blog.csdn.net/zl834205311/article/details/51135723

https://www.zhihu.com/question/19850186
https://www.zhihu.com/question/27201150/answer/137314380
https://www.zhihu.com/question/24272298/answer/142287889
https://www.zhihu.com/question/22321313
https://www.zhihu.com/question/21038468
http://blog.csdn.net/cenwenchu79
https://zen.coderdojo.com/register/profile
https://www.codecademy.com/en/courses/learn-html-css/lessons/structure/exercises/what-is-html

http://blog.csdn.net/uxyheaven/article/list/2

http://tech2ipo.com/
活动行http://www.huodongxing.com/

https://meia.me/course/list

http://www.cocoachina.com/industry/20130329/5914.html
http://www.bilibili.com/video/av3140230/

http://www.mifengtd.cn/articles/procrstination-and-perfectionism.html
http://www.mifengtd.cn/tags/

https://www.zhihu.com/question/19774219
https://www.zhihu.com/question/26072696?sort=created&page=1

code style:
https://codingstyle.cn/open_classes
https://codingstyle.cn/
http://seabornlee.cn/categories
软件匠艺社区
思维导图:
http://i.youku.com/i/UNTc0NDM5NDMy/videos?spm=a2hzp.8244740.0.0

githug :
http://blog.csdn.net/maxam0128/article/details/54354260
http://www.open-open.com/lib/view/open1452417687870.html#articleHeader15

cool站个人博客:
http://fusijie.github.io/about/

写个人博客:
http://wiki.jikexueyuan.com/project/github-page/environment.html

什么样的人不适合当程序员呢?
http://tech.sina.com.cn/i/2016-01-19/doc-ifxnqriz9860271.shtml
http://fusijie.github.io/archives/page/6/

开源项目:
https://www.oschina.net/project

ascii码动态生成图标:
http://www.network-science.de/ascii/
http://patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20
jsoup java爬虫
http://www.open-open.com/jsoup/
http://blog.csdn.net/column/details/jsoup.html

https://sarasayhi.gitbooks.io/marissaman
如何用Github构建知识体系
http://www.findjar.com/index.x
http://jeffjade.com/2015/12/15/2015-04-17-toss-sublime-text/#two
http://jingyan.baidu.com/album/90bc8fc87c58e2f653640cc8.html?picindex=14
http://www.admin10000.com/document/6436.html
http://jinnianshilongnian.iteye.com/blog/1752171
http://www.zuidaima.com/share/2839893648247808.htm
http://bbs.csdn.net/topics/390954942
http://edu.51cto.com/index.php?do=lession&id=19275
http://www.jeasyui.net/demo/380.html
http://tool.oschina.net/apidocs/apidoc?api=nodejs%2Fapi
http://www.helloweba.com/view-blog-224.html
http://www.tuicool.com/articles/BJFbQfe
http://www.jianshu.com/p/4cb326c03e3f
http://www.jianshu.com/p/b97820c8fdcd
http://www.jianshu.com/p/6f21738e4b7b
https://github.com/xueZhiXiaWeiLiang/Books
https://github.com/nimojs/blog/issues/13#hash_ajaxjson4
http://www.2cto.com/kf/201605/506533.html
http://www.2cto.com/kf/201408/323875.html

https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd=RESTful%20API%20java&oq=R%2526gt%253BSTful%2520API&rsv_pq=90f1afb000037573&rsv_t=ee91fCtc2Jd8YddUesJmHByCLHR1tXX%2FjVIwrEe7iuPnL9g%2BznowzyWbEzs&rqlang=cn&rsv_enter=1&rsv_sug3=19&rsv_sug1=8&rsv_sug7=100&rsv_sug2=0&inputT=4733&rsv_sug4=4733

https://www.baidu.com/s?tn=baidu&rsv_idx=1&wd=java%E5%BC%80%E5%8F%91rest%E6%8E%A5%E5%8F%A3%E5%AE%9E%E4%BE%8B&rsv_crq=6&bs=RESTful%20API%20java

https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&ch=11&tn=98012088_5_dg&wd=ajax%20%E8%A7%86%E9%A2%91%E6%95%99%E7%A8%8B&oq=ajax%2520java%2520%25E4%25BA%25A4%25E4%25BA%2592%2520html&rsv_pq=ae6b2fd60003c3ad&rsv_t=8a49q2v%2BgOnW704yLojkkFN%2F5CnIGXT0ki%2FeyL7akL6ZUd7W%2BBD1Ymad6HTlBDqDjY2SZA&rqlang=cn&rsv_enter=1&inputT=1579&rsv_sug3=23&rsv_sug1=4&rsv_sug7=100&bs=ajax%20java%20%E4%BA%A4%E4%BA%92%20html

https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&ch=11&tn=98012088_5_dg&wd=JavaWeb%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93-05%20Servlet%20%E4%B8%8E%E9%A1%B5%E9%9D%A2%E7%9A%84%E4%BA%A4%E4%BA%92&oq=JavaWeb%25E5%25AD%25A6%25E4%25B9%25A0%25E6%2580%25BB%25E7%25BB%2593-05%2520Servlet%2520%25E4%25B8%258E%25E9%25A1%25B5%25E9%259D%25A2%25E7%259A%2584%25E4%25BA%25A4%25E4%25BA%2592(02)&rsv_pq=c714c9f300042a02&rsv_t=7248MK8nZgz7xrSF%2FrUqG7%2BZNh1kaicDcWcbaYA%2FMyWTgqWPme3NrfT8Wqr0g4HXBAQErg&rqlang=cn&rsv_enter=1&rsv_sug3=5&rsv_sug2=0&inputT=737&rsv_sug4=772

博客园:
http://www.cnblogs.com/mq0036/p/3715024.html
http://www.cnblogs.com/wuhuacong/p/4846775.html
http://www.cnblogs.com/Fndroid/p/6105482.html
http://www.cnblogs.com/nrm1/p/6048988.html
http://www.cnblogs.com/wangshuo1/p/5862884.html
http://www.cnblogs.com/qjqcs/archive/2016/09/07/5850282.html
http://www.cnblogs.com/springyangwc/archive/2012/01/18/2325784.html
http://www.cnblogs.com/bigdataZJ/p/springmvc1.html
http://www.cnblogs.com/yeer/archive/2009/07/23/1529460.html

csdn:
http://blog.csdn.net/xinghuo0007/article/details/53432954
http://blog.csdn.net/lixhongwu/article/details/9229267
http://blog.csdn.net/guojiakang/article/details/60150106
http://blog.csdn.net/zxw136511485/article/details/51437115
http://blog.csdn.net/zxw136511485/article/details/51434102
http://blog.csdn.net/zhaowen25/article/details/52937441
http://blog.csdn.net/h416756139/article/details/52015854
http://blog.csdn.net/rznice/article/details/43561645
http://blog.csdn.net/garfielder007/article/details/52053617
http://blog.csdn.net/noaman_wgs/article/details/53893948
http://blog.csdn.net/h3c4lenovo/article/details/8453542
SSM框架——详细整合教程(Spring+SpringMVC+MyBatis):http://blog.csdn.net/gebitan505/article/details/44455235/
使用IDEA部署Myeclipse项目:http://blog.csdn.net/u010570551/article/details/51510447

文章

https://www.freehao123.com/fastmail/

jetbrick-template:
http://subchen.github.io/jetbrick-template/2x/overview.html
xwiki:
http://www.xwikichina.com/xwiki/bin/view/Main/
2017指引:https://segmentfault.com/a/1190000008050891
2017 年你应该学习的编程语言、框架和工具 : http://www.jianshu.com/p/a6f61bc3266c
JavaScript 代码整洁之道 : http://www.zcfy.cc/article/clean-code-javascript-readme-md-at-master-ryanmcdermott-clean-code-javascript-github-2273.html#table-of-contents

查找jar maven仓库: http://mvnrepository.com/
http://www.findmaven.com/
http://search.maven.org/

bootcdn : http://www.bootcdn.cn
git 工具 : https://www.sourcetreeapp.com/
git发布网站 : http://www.ruanyifeng.com/blog/2012/08/blogging_with_jekyll.html
免费技术书籍库 : 中文版 vhf/free-programming-books
githubhttps://github.com/
git http://gitref.justjavac.com
游戏编程http://freecodecamp.cn/home
前端成神之路http://mt.sohu.com/20160131/n436475646.shtml
git 发布网页:http://www.ruanyifeng.com/blog/2012/08/blogging_with_jekyll.html
书籍docker:https://yeasy.gitbooks.io/docker_practice/content/

标准手册

jquery文档: http://www.css88.com/jqapi-1.9/
jquery apihttp://www.runoob.com/manual/jquery/
css 手册http://www.css88.com/book/css/css3-quicksearch.htm

工具网站

极客学院wiki : http://wiki.jikexueyuan.com/
转义符对照表 : http://tool.oschina.net/commons?type=2
在线api文档 : https://www.showdoc.cc/
Json在线解析 : http://www.json.cn/
在线工具(程序员的工具箱) : http://tool.lu/
在线markdown工具 : http://mahua.jser.me
在线转换 md <--> html : http://www.atool.org/html2markdown.php
前端设计网站大全:http://hao.uisdc.com
图片网站大全
http://m.digitaling.com/articles/18333.html

funny

美团点评技术团队 : http://tech.meituan.com/
少数派 : http://sspai.com/
IBM开发者社区 : http://www.ibm.com/developerworks/cn/
http://designforhackers.com

并发编程网 : http://ifeve.com/

blog

hollischuang : http://www.hollischuang.com/
在线转换 html md :http://xpenxpen.iteye.com/blog/2085341
git : https://github.com/Nilhcem/markdown2html
https://henrik.nyh.se
http://tutorialzine.com/2016/12/the-languages-frameworks-tools-you-should-learn-in-2017/

教程网站

FreeCodeCamp : http://freecodecamp.cn/home
极客标签 : http://www.gbtags.com/gb/gbwikilist.htm
前端代码演示 : http://thecodeplayer.com/
codecademy : https://www.codecademy.com/
Mozilla 开发者网络(MDN) : https://developer.mozilla.org/zh-CN/
webplatform:http://docs.webplatform.org/wiki/Beginners/zh
菜鸟教程 : http://www.runoob.com/
w3school : http://www.w3school.com.cn/index.html
codecademy:https://www.codecademy.com/zh/

前端网站 效果 插件

站长素材 : http://sc.chinaz.com/
懒人图库 : http://www.lanrentuku.com/
dowebok : http://www.dowebok.com/
jquery之家 : http://www.htmleaf.com/
jquery插件库 : http://www.jq22.com/
Web 开发中 20 个很有用的 CSS 库 : http://www.oschina.net/translate/css-libraries-for-developers

技巧

将软件添加到右键菜单 最简单的方法

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 157,198评论 4 359
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 66,663评论 1 290
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 106,985评论 0 237
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,673评论 0 202
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 51,994评论 3 285
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,399评论 1 211
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,717评论 2 310
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,407评论 0 194
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,112评论 1 239
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,371评论 2 241
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,891评论 1 256
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,255评论 2 250
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,881评论 3 233
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,010评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,764评论 0 192
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,412评论 2 269
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,299评论 2 260

推荐阅读更多精彩内容