- Spring 核心
- Sprint boot
- Sprint 最新动态spring
为什么是 spring
| #https://docs.ruby-lang.org/ja/latest/class/Method.html#I_PARAMETERS | |
| #ruby 的方法参数定义还是挺绕的, 足够灵活,足够困扰... | |
| #从定义到使用, 似乎在两边会出现一些`意想不到`的事情. | |
| #就是在定义这个方法的时候可能想是这样的, 结果后来在使用的时候却又忘记了初衷. | |
| def a_method(a, b = 1, c = 2, d = 3, *aa, cli: true) | |
| puts "......................." | |
| puts "a #{a} |" | |
| puts "b #{b} |" | |
| puts "c #{c} |" | |
| puts "d #{d} |" |
| require 'net/http' | |
| require 'uri' | |
| require 'json' | |
| require 'byebug' | |
| followers = [] | |
| 1000000.times do |t| | |
| target = "https://i.instagram.com/api/v1/friendships/35182405/following/?count=#{12 * t}12&max_id=#{0 + 12 * t}" |
| // ==UserScript== | |
| // @name New Userscript | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://ja.swarmapp.com/xiangzhuyuan/checkin/5b8ae76295a722002cc568d9 | |
| // @grant none | |
| // ==/UserScript== |
| # Spring 学习笔记 | |
| - Spring 核心 | |
| - Sprint boot | |
| - Sprint 最新动态 | |
| # Java 学习笔记 | |
| [INFO] --- maven-dependency-plugin:3.1.2:tre... | |
| [INFO] +- org.springframework.boot:spring-boot-starter-batch:jar:2.3.0.RELEASE:compile | |
| [INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.3.0.RELEASE:compile | |
| [INFO] | | +- org.springframework.boot:spring-boot:jar:2.3.0.RELEASE:compile | |
| [INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.3.0.RELEASE:compile | |
| [INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.3.0.RELEASE:compile | |
| [INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.3:compile | |
| [INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.3:compile |
| #!/bin/bash | |
| # | |
| printf "The complete list is %s\n" "$$" | |
| printf "The complete list is %s\n" "$!" | |
| printf "The complete list is %s\n" "$?" | |
| printf "The complete list is %s\n" "$*" | |
| printf "The complete list is %s\n" "$@" | |
| printf "The complete list is %s\n" "$#" | |
| printf "The complete list is %s\n" "$0" | |
| printf "The complete list is %s\n" "$1" |
| // ==UserScript== | |
| // @name filter event by aj club name | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @require http://code.jquery.com/jquery-3.3.1.min.js | |
| // @description add a club index in the head then you could get by event list by club! | |
| // @author Matt | |
| // @match https://www.audax-japan.org/* | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name filter aj club | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @require http://code.jquery.com/jquery-3.3.1.min.js | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.audax-japan.org/* | |
| // @grant none | |
| // ==/UserScript== |