#一些互联网使用方法 ###目录:
- youtube下载视频(包括1080p).
- 翻墙.
- 不翻墙使用Google Search.
- 关于本文.
- 解释
###youtube下载视频
| function pmt(eleId, pmt) { | |
| if( document.getElementById("pmt") != null ){ | |
| return ; | |
| } | |
| var pmtLabel = document.createElement("div"); | |
| pmtLabel.id = "pmt"; | |
| pmtLabel.innerHTML = pmt; | |
| var pmtTriangle = document.createElement("div"); | |
| pmtTriangle.id = "pmtTriangle"; |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>JavaScript Test</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
| find /home/mindfine/下载/图片/ -name "*.bmp" -exec java ImgToArray {} {}.txt \; |
| RestTemplate tpl = new RestTemplate(); | |
| List cvts = tpl.getMessageConverters(); | |
| for (int i = 0; i < cvts.size(); i++) { | |
| List smts = ((HttpMessageConverter)cvts.get(i)).getSupportedMediaTypes(); | |
| for (int j = 0; j < smts.size(); j++) { | |
| System.err.println(smts.get(j)); | |
| } | |
| } |
| //attach http proxy | |
| System.setProperty("http.proxyHost", "127.0.0.1"); | |
| System.setProperty("http.proxyPort", "8087"); |
| <bean id="viewResolver" | |
| class="org.springframework.web.servlet.view.InternalResourceViewResolver" > | |
| <property name="prefix"> | |
| <value>/WEB-INF/pages/</value> | |
| </property> | |
| <property name="suffix"> | |
| <value>.jsp</value> | |
| </property> | |
| </bean> |
| @RequestMapping("/") | |
| public ModelAndView welcome (ModelMap model) { | |
| ModelAndView view = new ModelAndView("index"); | |
| model.addAttribute("introSelf", "I'm Spring, I'm Coming."); | |
| return view; | |
| } | |
| @RequestMapping("/") | |
| public String welcome (ModelMap model) { | |
| model.addAttribute("introSelf", "I'm Spring, I'm Coming."); |
| $(function () { | |
| $('#exercise-stat-chart-2').highcharts({ | |
| title: { | |
| text: '' | |
| }, | |
| xAxis: { | |
| title: { | |
| text: '课次' | |
| }, | |
| allowDecimals: false, |
| font: 12px "微软雅黑","黑体","Microsoft Yahei","SimHei",Arial,sans-serif; |
#一些互联网使用方法 ###目录:
###youtube下载视频