2016年9月28日 星期三

2016/9/26~2016/9/30



2016/9/26

Drawing anime pictures

Re:ゼロから始める異世界生活
菲利克斯·阿盖尔 Ferris

フェリックス・アーガイル(フェリス)



*Unfinished product 


*(Finished product : at 2016/9/30 .) 



2016/9/27

Typhoon day-off :
Typhoon Megi Wikipedia :
https://en.wikipedia.org/wiki/Typhoon_Megi




2016/9/28
Typhoon day-off 
Typhoon Megi Wikipedia :
https://en.wikipedia.org/wiki/Typhoon_Megi



2016/9/29

Minecraft Wallpaper Maker
(minecraft.novaskin.me)




2016/9/30

1.
Minecraft Wallpaper Maker
(minecraft.novaskin.me)






2016年9月18日 星期日

2016/9/19~2016/9/23



2016/9/19


1.World Meters :
http://www.worldometers.info (English)
http://www.worldometers.info/cn/ (Chinese Simplified)
http://www.worldometers.info/tw/ (Chinese Traditional)

2.
Learn to code interactively :
https://www.codecademy.com

Start HTML Basic Lesson 1 ... 


Click "Save&Submit Code" bottom , to go Lesson 2.





2016/9/20

1.
在桌面上显示音乐同步字幕.
Lyrics on computer desktop .
http://music.baidu.com/pc/index.html
音乐播放软件推荐(适合华人)

百万曲库:海量丰富在线资源,百万正版曲库全面覆盖
均衡设置:超强均衡调节,给你最贴心精致的听歌享受
歌曲推荐:每周多个热门专题,精选歌曲及时推荐
多端同步:手机电脑,随时随地都有音乐陪伴不断线
格式支持:支持包括无损格式在内的多达20种音频格式
音效插件:支持多种音效提升插件,全面增强音乐效果
音频转换:自由转换mp3、wma等多种音频格式
歌词工具:强大的歌词制作工具,嵌入功能帮你词曲合一


3.
Learning Alan Mathison Turing ...
(艾伦·麦席森·图灵 计算机之父,人工智能之父)
https://wikipedia.org/wiki/Alan_Turing

Turing Machine :
https://wikipedia.org/wiki/Turing_machine


图灵机七元组:{Q,Σ,Γ,δ,q0,qaccept,qreject}

Q 状态集合
Σ 是输入字母表,其中不包含特殊的空白符
Γ 是带字母表,其中 □∈Γ且Σ∈Γ
δ:Q×「→Q×Γ×{L,R}是转移函数,其中L,R 表示读写头是向左移还是向右移
q0∈Q是起始状态
qaccept是接受状态
qreject是拒绝状态,qreject≠qaccept




2016/9/21

1. Practice piano sheet ... 【Re:从零开始的异世界生活】Ending - STYX HELIX . 



2016/9/22

1.
Still practice piano sheet , (2016/9/21):
【Re:从零开始的异世界生活】Ending - STYX HELIX .


2016/9/23

Photo Shop : Crop Face




Product : 




2016年9月11日 星期日

2016/9/12~2016/9/16



2016/9/12

1.
Rufus - Create a *BOOT USB.
*BOOT : 系统引导文件


2.
Re-install Windows OS with USB
使用USB重灌电脑
Using BOOT USB.


2016/9/13


Reading a story of Atlantis
读亚特兰提蒂斯的故事

By Plato.

(↑ Athanasius Kircher's map of Atlantis, 
in the middle of the Atlantic Ocean. 
From Mundus Subterraneus 1669, 
published in Amsterdam. 
The map is oriented with south at the top.)

Excerpt from "Critias" by Plato

Excerpt from "Timaeus" by Plato

Atlantis:(维基百科英文版)
Wikipedia-English
亚特兰蒂斯:(维基百科简体中文版)
Wikipedia-Simplified Chinese
亞特蘭提斯:(維基百科繁體中文版)
Wikipedia-Traditional Chinese



2016/9/14

Bass boost the musicAvid Pro Tools
Video - Power Director


Avid Pro Tools  (Taken from here)

Product :
https://www.youtube.com/watch?v=XEGrRF0rrW8



2016/9/15

Holiday

2016/9/15
Holiday


2016年9月5日 星期一

2016/9/5~2016/9/9



2016/9/05

Blogger (部落格) - 基础使用 + 设计 + 美编
Blogger Official : https://www.blogger.com
Blogger - Google AdSense , can make money.

Product : this website ↓ 
www.IsaacKeeAutodidact.blogspot.com


2016/9/06

1.
Learning "Google AdSense" ...
https://support.google.com/adsense
Google AdSense qualification :
https://support.google.com/adsense/answer/9724

2.
Audacity Effects (音效)
e.g.: Pitch,Speed,Tempo,Echo,Bass...and so forth.




2016/9/07

1.
Audio Card (Sound Card) : Sound Effects Maker
音效卡音效制作:云音效制作工具

Product : this mp3 sharing website
http://mu6.me/130306

2.
Youtube videos autoplay at blogger :
Copy share embed link
Paste embed link to Blogger > *Layouts > HTML/JavaScript
 *can put the layout in anywhere.

And if you want to make it auto play
please add  autoplay=1  in youtube link like this 
 

If you want to hide the video ,  just want to play the music ,
please change  width="0" height="0"  or 1.

If you want to repeat the playlist , let the videos don't stop ,
please add  loop=1  in youtube link.



2016/9/08

1.

Easy Folder Locker (Without any software) by MakaSa , v1.0

Just for Windows OS.


Copy those at the text.exe 

cls
@ECHO OFF 
title EasyFolderLockerV1_ByIsaacKee 
if EXIST "IsaacKeeLocker_v1" goto UNLOCK 
if NOT EXIST Private goto PRIVATE 
:CONFIRM 
echo Do you wanna lock the folder(Y/N) 
set/p "cho=>" 
if %cho%==Y goto LOCK 
if %cho%==y goto LOCK 
if %cho%==N goto END 
if %cho%==n goto END 
echo Invalid choice. 
goto CONFIRM 
:LOCK 
ren Private "IsaacKeeLocker_v1" 
attrib +h +s "IsaacKeeLocker_v1" 
echo Folder locked 
goto End 
:UNLOCK 
echo Enter password to unlock folder 
set/p "pass=>" 
if NOT %pass%== PASSWORD goto FAIL 
attrib -h -s "IsaacKeeLocker_v1" 
ren "IsaacKeeLocker_v1" Private 
echo Folder Unlocked successfully 
goto End 
:FAIL 
echo Invalid password 
goto end 
:PRIVATE 
md Private 
echo Private created successfully 
goto End 
:End

*Change the PASSWORD text to the password you want to set.
Save as Locker.bat

(if you have any questions , please leave it at the message board , I'll answer it if I saw yeh)
(if you found any bugs , please leave it at the message board. ,
 I'll update fixed version and put your ID at the Easy Folder Locker by IsaacKee.)

Thank you .


2.
Set files auto starup when windows turn on.
Put your files over here ↓ 
C:\Users\*xxx\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

(*xxx set your user name)




2016/9/09

1.

Revise web.config appSettings

<appSettings> xxx </appSettings>  
Want to revise xxx ,  key or value .

Configuration Config = Web configuration manager.open Web configuration ( "~");
AppSettingsSection app = config.app settings;
app.Settings ["A"].Value = "*xxx";

(*xxx set value )

2.
Learning OpenCV , Open VX , Itseez
(Open Source Computer Vision)
http://opencv.org/

OpenCV is released under a BSD license and hence it’s free for both academic and commercial use. It has C++, C, Python and Java interfaces and supports Windows, Linux, Mac OS, iOS and Android. OpenCV was designed for computational efficiency and with a strong focus on real-time applications. Written in optimized C/C++, the library can take advantage of multi-core processing. Enabled with OpenCL, it can take advantage of the hardware acceleration of the underlying heterogeneous compute platform. Adopted all around the world, OpenCV has more than 47 thousand people of user community and estimated number of downloads exceeding 9 million. Usage ranges from interactive art, to mines inspection, stitching maps on the web or through advanced robotics.

(Intel signed a definitive agreement to acquire Itseez, Inc.)


2016年9月4日 星期日

2016/8/29~2016/9/2

This is my first week learning report .

▲ 翻译会造成此篇文字排版错误
▲ Translation of the text will result typesetting errors


2016/8/29 
Examination (複習考試 / 复习考试 )


2016/8/30
Boot Camp - switching OS by using Mac OSX
直接在mac上切换双系统

if you have installed "NTFS-3G", disable it .
open "applescript"(Script Editor) in the mac , and copy this :


do shell script "bless -mount /Volumes/*your disk name/ -legacy -setBoot -nextonly" with administrator privileges
do shell script "shutdown -r now" with administrator privileges



*_example: My Boot Camp , Window10 ...


and save as .script
try testing on "Applescript editor", maybe you need to debug.

using "Quicksilver" (app) can switch OS faster.





2016/8/31
Parallels Desktop for mac (Windows10安裝/配置) by "Boot Camp"
Parallels Desktop for mac (Kali Linux安裝/配置) by .iso




2016/9/01
Playstation Portable (PSP) 3000 unblock 
firmware 6.61 pro blocked , 
using "Magic Memory Stick" and "Pandora battery"
can be used on blocked PSP1000/2000 ,
still can't unblock PSP 3000 .
maybe one day I can try agian. (other ways)

Magic Memory Stick (PSP Grader v8 on Windows10)
Pandora Battery Installer (can be used in unblocked PSP)


2016/9/02
1.
Apple Mac OSX widgets
and "Homebrew" things


2.
Learn mac keyboard shortcuts.
http://akmedia.digidesign.com/support/docs/Pro_Tools_74_Mac_Shortcuts_41782.pdf
All Mac shortcuts 

 Mac common shortcuts