這是我目前的工作情境與困擾:
公司是成立兩年的新創公司
本身是前端工程師職位
最近跟主管提 promotion
被主管說雖然你能力好,但假日都不會去處理群組上的問題
像誰誰誰 群組有問題就會馬上跳出來
ITHOME 鐵人賽 :: 主題競賽組觀戰區
目前這份資料是用年久失修的爬蟲在跑的,新版網址如下:
https://ithome-2021-ironman.s3.ap-northeast-1.amazonaws.com/index.html
import collections | |
import re | |
import urllib | |
from urllib.request import Request | |
_s1 = r""" | |
curl 'https://irs.thsrc.com.tw/IMINT/captImg/foobar.jpg' \ | |
-H 'Connection: keep-alive' \ | |
-H 'Pragma: no-cache' \ | |
-H 'Cache-Control: no-cache' \ |
task copyDepends { | |
doLast { | |
configurations.implementation.canBeResolved = true | |
configurations.implementation.each { | |
def suffix = it.absolutePath.split("/")[-5..-1] | |
def (group, artifact, version) = suffix[-5..-3] | |
def basePath = (it.absolutePath - suffix.join("/")) + suffix[-5..-3].join("/") | |
copy { | |
from fileTree(basePath).files | |
into "build/localMavenRepo/$group/$artifact/$version" |
qty:glab qrtt1$ cat ab
qty:glab qrtt1$ cat build.gradle
task abc {
doLast {
for (StackTraceElement e : Thread.currentThread().getStackTrace()) {
System.out.println(e);
}
}
先熟悉 anki 的操作,並匯出 apkg 及稍為研究一下文件 http://decks.wikia.com/wiki/Anki_APKG_format_documentation
基本 java 開發環境 jdk8, eclipse
複習 Java IO 與 JDBC
#!/usr/bin/python | |
DOCUMENTATION = ''' | |
--- | |
module: versioning_copy | |
short_description: Copies the file with datetime versioning name | |
description: | |
- The versioning_copy module copies a file on remote locations. It designed for the tomcat's parallel deploy feature | |
options: | |
war: |