Skip to content

Commit

Permalink
2018 first update, record my working process
Browse files Browse the repository at this point in the history
  • Loading branch information
jueqingsizhe66 committed Jan 31, 2018
1 parent fc353f3 commit ff4384b
Show file tree
Hide file tree
Showing 24 changed files with 1,155 additions and 282 deletions.
62 changes: 43 additions & 19 deletions .orgConf.el
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,6 @@ Captured %<%Y-%m-%d %H:%M>

;;相当于设置 #+tags: 在每一个org文件中
(setq org-tag-alist '((:startgroup . nil)
("@work" . ?w)

("@errand" . ?e)
("@office" . ?o)
("@home" . ?H)
("@Dormitry" . ?D)
Expand All @@ -424,28 +421,45 @@ Captured %<%Y-%m-%d %H:%M>
(:endgroup . nil)
(:newline)
(:startgroup . nil)
("laptop" . ?l)
("WAITING" . ?w)
("HOLD" . ?h)
("PERSONAL" . ?P)
("ORG" . ?O)
(:endgroup . nil)
(:newline)
(:startgroup . nil)
("EnglishPaper" . ?l)
("java" . ?j)
("perl" . ?p)
("matlab" . ?m)
("Mysql" . ?M)
("Oracle" . ?O)
("clojure" . ?c)
("scheme" . ?s)
("WAITING" . ?w)
("HOLD" . ?h)
("PERSONAL" . ?P)
("WORK" . ?W)
("ORG" . ?O)
("crypt" . ?E)
("NOTE" . ?n)
("CANCELLED" . ?C)
("FLAGGED" . ??)
("python" . ?y)
("ruby" . ?r)
("emacslisp" . ?e)
("crypt" . ?C)
(:endgroup . nil)
(:newline)
(:startgroup . nil)
("芝麻" . ?z)
("橘子" . ?J)
("西瓜" . ?x)
("大象" . ?X)
("大山" . ?M)
("地球" . ?E)
("太阳" . ?T)
("银行系" . ?Y)
("宇宙" . ?Z)
(:endgroup . nil)

(:newline)
(:startgroup . nil)
("++multiAxis" . ?t)
("++the-parens-of-dead" . ?z)
("++graduation" . ?g)
("multiAxis" . ?t)
("graduation" . ?g)
(:endgroup . nil)

(:newline)
(:startgroup . nil)
("紧急重要" . ?a)
Expand Down Expand Up @@ -563,9 +577,9 @@ Captured %<%Y-%m-%d %H:%M>




;;; the minimum time is one tomato time: 0:30
(add-to-list 'org-global-properties
'("Effort_ALL". "0:10 0:15 0:30 1:00 2:00 3:00 4:00 6:00 8:00 12:00 15:00 20:00"))
'("Effort_ALL". " 0:30 1:00 2:00 3:00 4:00 6:00 8:00 12:00 15:00 20:00"))



Expand Down Expand Up @@ -1182,7 +1196,7 @@ e.g. Sunday, September 17, 2000."
)

(if (< lo 20864) ; if the low word is too small for subtracting
(setq hi (- hi 2) lo (+ lo 44672)) ; take 2 from the high word and add to the low
(setq hi (- hi 2) lo (+ lo 44672)) ; take 2 from the high word and add to the low
(setq hi (- hi 1) lo (- lo 20864)) ; else, add 86400 seconds (in two parts)
)
(list hi lo msecs) ; regurgitate the new values
Expand Down Expand Up @@ -1225,3 +1239,13 @@ e.g. Sunday, September 17, 2000."
;; "~/.emacs.d/GTD/orgBoss/newgtd.org" ;;
;; "\\* Articles"))) ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq browse-url-browser-function 'eww-browse-url)


(defvar my/espeak-command "c://eSpeak/command_line/espeak.exe")
(defun my/say (string &optional speed)
(interactive "MString: ")
(setq speed (or speed 175))
(call-process my/espeak-command nil nil nil string "-s" speed))


9 changes: 9 additions & 0 deletions GTD/orgBoss/IDEA/idea.org
Original file line number Diff line number Diff line change
Expand Up @@ -238,3 +238,12 @@ CLOCK: [2017-11-28 周二 14:39]--[2017-11-28 周二 14:39] => 0:00
:END:

液压式风力机
** TODO [#A] 记录服务于目的 <2018-01-29 周一 10:44>
:LOGBOOK:
CLOCK: [2018-01-29 周一 10:44]--[2018-01-29 周一 10:48] => 0:04
:END:
正如主题服务于你的目的一样

你每一次的记录也得服从于你的目的才有意义

记录一定能够反复的帮你完成计划的执行
2 changes: 1 addition & 1 deletion GTD/orgBoss/Journal/20171008
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ HELLO TODAY

** 02:14 hello

** 10:25 fien
** 10:25 fien :clojure::multiAxis:
11 changes: 11 additions & 0 deletions GTD/orgBoss/Journal/20180129
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
星期一, 2018/1/29


* keep work with jounal (Good for you)
[[https://github.com/howardabrams/dot-files/blob/b2e8a36832d4b9964042aca839f3ff0a3e6724a7/emacs-org.org]]

[[https://github.com/jueqingsizhe66/ranEmacs.d]]

** 10:29 Wake structure of Wind Turbines :紧急不重要:

** 10:31
158 changes: 158 additions & 0 deletions GTD/orgBoss/Journal/20180130
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
星期二, 2018/1/30


* keep work with jounal (Good for you)
[[https://github.com/howardabrams/dot-files/blob/b2e8a36832d4b9964042aca839f3ff0a3e6724a7/emacs-org.org]]

[[https://github.com/jueqingsizhe66/ranEmacs.d]]

** 15:40 perl writing :perl:

*** scalar context

*** list context(array)

*** hash context(hash)

*** reference

*** module

*** test

*** class

*** module starter

#+BEGIN_SRC perl
Perl Build.pl ------------------- to create the Build script

Build ------------------build the distribution
Build test ------------------test past
Build dist --------------------create tar.gz distribution with the dist action


#+END_SRC

**** PAUSE :perl:

JUEQINGSI 457866zi'mu

http://pause.perl.org/pause/query

** 15:49 org-mode relearning :emacslisp:

When you open the emacs again, it will agenda the newer journal files.

#+BEGIN_SRC elisp
(setq org-agenda-files (append (file-expand-wildcards "~/.emacs.d/GTD/OrgBoss/Journal/2*") org-agenda-files))

#+END_SRC


** 16:13 org-mode key technique :emacslisp:

#+BEGIN_SRC elisp
C-c a m ------- to check the tag name ,such as perl, emacslisp
C-c / T ------- to get the information from current file(not the same with agenda)

#+END_SRC

** 21:58 mojolicious.org :perl:

http://mojolicious.org/
https://github.com/kraih/mojo Mojolicious - Perl real-time web framework

** 23:05 module-starter :perl:


#+BEGIN_SRC perl
现在需要其他模块的帮助,Module::Starter::AddModule能满足这个需求.

通过CPAN安装模块Module::Starter::AddModule,安装成功后在配置文件中加入plugins一行.

author: xxx
email: xxxxxx@163.com
builder: Module::Build
verbose: 1
plugins: Module::Starter::AddModule



现在使用如下命令添加新模块

$ module-starter --module=Dog,Sheep --distro=ANIMALS


module-starter --module=Web::Dog, Web::Fox --distro=Animals



如果工作目录在ANIMALS目录中,修改参数--distro=.
其中dot 标识的是当前目录的意思。

#+END_SRC

#+BEGIN_SRC shell
E:\PERL_HOME\Animal>tree /f
文件夹 PATH 列表
卷序列号为 22BF-83A9
E:.
│ Animal-0.01.tar.gz
│ Build
│ Build.bat
│ Build.PL
│ Changes
│ MANIFEST
│ META.json
│ META.yml
│ MYMETA.json
│ MYMETA.yml
│ README
├─blib
│ ├─arch
│ └─lib
│ │ Animal.pm
│ │ Duck.pm
│ │ Fox.pm
│ │ Horse.pm
│ │ Sheep.pm
│ │
│ └─Web
│ Duck.pm
│ Fox.pm
├─lib
│ │ Animal.pm
│ │ Duck.pm
│ │ Fox.pm
│ │ Horse.pm
│ │ Sheep.pm
│ │
│ └─Web
│ Duck.pm
│ Fox.pm
├─t
│ 00-load.t
│ manifest.t
│ pod-coverage.t
│ pod.t
├─xt
│ boilerplate.t
└─_build
auto_features
build_params
cleanup
config_data
features
magicnum
notes
prereqs
runtime_params


#+END_SRC
59 changes: 59 additions & 0 deletions GTD/orgBoss/Journal/20180131
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
星期三, 2018/1/31


* keep work with jounal (Good for you)
[[https://github.com/howardabrams/dot-files/blob/b2e8a36832d4b9964042aca839f3ff0a3e6724a7/emacs-org.org]]

[[https://github.com/jueqingsizhe66/ranEmacs.d]]

** 08:50 perl oo has function :perl:

has是perl oo 模块moose moo等的函数,用于构建对象属性的

** 09:00 oracle安装 :java:

1. 安装企业版3.27 字符集Unicode(Al32UTF8 口令自己设置
2. 需要解密HR 和Scoott两个数据库
3. cmd运行 sqlplus HR/123 或者sqlplus scott/123 是否进入
4. OracleServiceORCL是主服务,不能关掉,其他均可停掉,然后把启动类型从自动改为手动即可
s使用SQLServer需要打开TNSLinstener服务,否则打不开


** 09:03 oracle常用命令 :java:

Sqlplus username/password 登陆

Desc tablename 查看表结构

Host cls 清屏

Col tname for a15 (15个空格 相隔,print format 设置列宽度 tname表示列名,字段名,每个字段都可以设置的,然后for代表format意思,a代表一个字符,15代表15个字符 为了显示更加好看)
设置行宽 set linesize 400;

Col tname for 99999 设置为默认。。。

Set pagesize 20
/ 表示执行上一条命令
@文件名 执行sql文件(文件名前面加上一个@即可 类似mysql的source)

** 09:03 oracle卸载 :java:

1. 停止Oracle服务相关
2. 运行安装目录下的deinstall.bat
3. 删除Oracle的注册表
4. 环境变量删除

** 09:08 oracle解锁用户

2 解锁用户scott

alter user scott account unlock

3 一般解锁后同时修改密码

alter user scott identified by 123

** 09:15 oracle orcl user :java:

usertale: orcl
管理口令 : root(密码过于简单会警告 忽略即可)
1 change: 1 addition & 0 deletions GTD/orgBoss/Journal/journal.org
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

* 2017
** 2017-10 十月
*** 2017-10-07 星期六
Expand Down
8 changes: 7 additions & 1 deletion GTD/orgBoss/Private/privnotes.org
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

* 2017

** 2017-09 九月
*** 2017-09-13 星期三
**** file <2017-09-13 周三 00:55>
Expand Down Expand Up @@ -42,3 +42,9 @@ eJuJKOToxhUS7l/J1/xK/gUDMpT8r9GiZirvi5KLvbtm7sJEB9UpkKRp1xY=
http://www.howardism.org/Technical/Emacs/spreadsheet.html
#+END_EXAMPLE



#+BEGIN_SRC java -n
String phoneLine = reader.readLine();

#+END_SRC
Expand Down
Loading

0 comments on commit ff4384b

Please sign in to comment.