-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2018 first update, record my working process
- Loading branch information
1 parent
fc353f3
commit ff4384b
Showing
24 changed files
with
1,155 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ HELLO TODAY | |
|
||
** 02:14 hello | ||
|
||
** 10:25 fien | ||
** 10:25 fien :clojure::multiAxis: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(密码过于简单会警告 忽略即可) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
* 2017 | ||
** 2017-10 十月 | ||
*** 2017-10-07 星期六 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.