- echo $SHELL
- sh
- echo $0
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> | |
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%> | |
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> | |
<%@ attribute name="thispage" type="org.springframework.data.domain.Page" required="true" rtexprvalue="true" description="The current Page"%> | |
<c:set var="pageNumber" value="${thispage.number}" /> | |
<c:set var="maxPages" value="${thispage.totalPages}" /> | |
<c:set var="size" value="${thispage.size}" /> | |
<div class="span12"> |
1、SQL中的having子句用来干啥的? | |
2、group by 可以对多个列进行分组吗? | |
3、用group by是否可以实现机器学习中的聚类算法? | |
4、常用的对称加密算法、非对称加密算法、HASH算法有哪些? | |
5、机器学习中的过拟合是什么意思? | |
6、什么是指令周期?一秒可以执行多少条指令? | |
7、JAVA中的内存可见性是什么意思? | |
8、有哪些常见的编程范型? | |
9、常用的软件建模方法有哪些? | |
10、数据结构中常用的树有哪些?分别用来解决什么问题? |
@echo off | |
set /p binPath=input your new bin path: | |
echo. | |
echo The original path value : | |
echo. | |
echo %path% | |
echo. | |
echo The new path value : | |
echo. | |
setx path "%binPath%;%path%" -m |
@echo off | |
rem author: [email protected] / @Macrotea / macrotea.cn | |
:: get ip and site | |
set /p ip=ip: | |
set /p site=site: | |
:: write |
rem author: [email protected] / @Macrotea / macrotea.cn | |
@echo off | |
:: get user input content | |
set /p repoType=is it git@oschina repository? (y or n) : | |
set /p repoName=input your repository name : | |
:: set /p projectTypeNumber=input your project type number (1:java 2:web 3:nodejs) : |
我爱你中国 | |
sdfsdfsdfsd | |
sdfsdf | |
sdfsdfs |
在github上创建一个库: https://github.com/macrotea/nodejs-bower | |
进入本地文件夹: ndoejs-bower,然后提交本地文件到远程库的命令如下: | |
D:\workspace\javascript\nodejs-bower>git init | |
D:\workspace\javascript\nodejs-bower>git add . | |
D:\workspace\javascript\nodejs-bower>git commit -m "init" | |
D:\workspace\javascript\nodejs-bower>git remote add origin https://github.com/macrotea/nodejs-bower | |
D:\workspace\javascript\nodejs-bower>git push -u origin master |