需完成的事
- 1.eclipse java 开发环境搭建
- 2.git 合并 解决冲突以及之前自学忽略且公司看重的知识点
1.linux命令行查看隐藏文件 ls -a
2.字符串转换成二维码 how2j教程
- $(‘#qrcode’).qrcode({render:’canvas’,text:”http://12306.com",width:260,height:260});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<script src="js/jquery/2.0.0/jquery.min.js"></script>
<script src="js/qrcode/jquery.qrcode.min.js"></script>
</head>
<div style="width:800px;margin:50px auto;text-align:center">
<h1>把字符串: http://12306.com 转换为二维码</h1>
<div id="qrcode"></div>
</div>
<script>
$(function(){
$('#qrcode').qrcode({render:'canvas',text:"http://12306.com",width:260,height:260});
});
</script>
3.由于给的文档将得东西太多 挑一些重点记录下
- 1.对于任何一个文件,在 Git 内都只有三种状态: 已提交(committed) , 已修改(modified) 和 已暂存(staged) 。