import,load syntax
load用來load source file,有點像include
This compiler is self contained, IDEs are not needed.
9:00
compile in command line: jai xxx.jai (目前副檔名是.jai,"宅"語言XD?)
目前backend 是cl
9:40
simple operations
14:48
no implicit type conversion
15:10
function declaration
struct syntax
memory ownership
initial value
no default value now
array declaration
16:53
enum(named/unamed/typed/type infered)
out of order reference:
VALUE = MIDDLE_VALUE
MIDDLE_VALUE :=8
20:16
testproc()
21:10
new/delete
22:48
defer (GO has it too.)
defer demo
25:34
memory ownership
26:35
printf (through FFI to C)
27:10
named lambda
28:7
for n: 1..count {...}
29:29
dynamic array
(temporary)
30:30
for loops over dynamic array
32:30
character '(single qoute)
string ""(double qouted)
more "fors"
33:40
invaders demo
No sound
Using OPENGL
35:15
It's a real compiler though it output C
Output our own errors instead of C compiler error.
Rely on "cl" to do optimization.
38: 30
Custom check call(compile time)
Compile-time checking call using same syntax as run time language.
40:55
also compile to byte code in addition to output C codes (two compile target)
43:35
string type has bugs now.
44:05
More compile time execution
#run syntax
Invaders at compile time!!
Everything you can do at runtime you can do in compile time.
Load dlls when compile to bytecode.
48:10
Pasting local function to global without changing anything
49:07
#run local function at compile time
Bugs now!
#run invaders() in local scope at compile time.
How many invaders you defeated at compile time?
51:20 (MUST WATCH!!)
#assert syntax
"You are terrible, You must defeat at least 10 invaders to compile!"
53:05
More #assert cases
ASCII map format checking
58:58
Dependency and Building
Compiler knows the dependency
1:02:00
Conditional building
Preprocessor in runtime/compile-time language
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
The flight control code for the Armadillo rockets is only a few thousand lines of code, so I took the main tic function and started inlining all the subroutines. While I can't say that I found a hidden bug that could have caused a crash (literally...), I did find several variables that were set multiple times, a couple control flow things that looked a bit dodgy, and the final code got smaller and cleaner.
John Carmack說他曾經嘗試把原本是小函數的Code inline寫進main tick function,結果雖然沒有找到隱藏的足以導致火箭爆炸的bug,但是他發現有些變數被多次賦值,還有一些隱晦的流程控制,並且最後Code變得更精簡明晰。
If something is going to be done once per frame, there is some value to having it happen in the outermost part of the frame loop, rather than buried deep inside some chain of functions that may wind up getting skipped for some reason.
John Carmack:如果有些事情你每個frame都要做,與其讓這些事情深埋在一連串基於某些原因可能跳過這些事情的函數中,倒不如就直接把這些事情inline在main loop中。
Besides awareness of the actual code being executed, inlining functions also has the benefit of not making it possible to call the function from other places. That sounds ridiculous, but there is a point to it. As a codebase grows over years of use, there will be lots of opportunities to take a shortcut and just call a function that does only the work you think needs to be done. There might be a FullUpdate() function that calls PartialUpdateA(), and PartialUpdateB(), but in some particular case you may realize (or think) that you only need to do PartialUpdateB(), and you are being efficient by avoiding the other work. Lots and lots of bugs stem from this. Most bugs are a result of the execution state not being exactly what you think it is.
John Carmack:除了能知曉目前實際上哪些Code會被執行,inline函數還有個優點:他們不能在其他地方被呼叫。這聽起來似乎很荒謬,但這是有理由的。開發過程中Codebase會經歷數年的增刪修改,有很高的可能性有些人會圖方便呼叫某些小函數去完成他覺得那個函數會做的事。例如在main loop中可能有個FullUpdate()函數,其中呼叫PartialUpdateA(),PartialUpdateB()...有時候你會覺得我只需要做PartialUpdateB()就好,那我就直接Call PartialUpdateB()來做我想做的東西,這樣會比較有效率。但其實像這種事根本是Bug的根源。大部分的Bug都是因為目前的執行狀態並非如你所想。
I know there are some rules of thumb about not making functions larger than a page or two, but I specifically disagree with that now -- if a lot of operations are supposed to happen in a sequential fashion, their code should follow sequentially.
John Carmack: 我知道有些經驗法則說不要讓函數超過一兩個頁面,但我現在並不同意。如果有些操作本來就是循序發生,那這些操作所對應的Code就應該是循序的。
Locally-scoped Functions, Blocks and Codebase Evolution
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
註2: Casey的實況會有Q&A時間,Jonathan Blow有時候會上去搞笑,上次Jon問了一個問題:"What is Variable? Can Variable run javaScript?" Casey: " No, javaScript is too high performance that Variable can't run it." 不論是問題還是回答都令人XD
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
我們用" :" 來宣告type,"="來表示assign。
如果想用type inference,就用第5行的寫法。
如果只是要assign值給已宣告的變數,就用最後一種寫法。
而第5行的寫法跟下面這個f: auto =1是一樣的。
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
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
而很多程式語言基於以上原因把函數跟lambda當作不一樣的東西來處理,例如C++中為了讓lambda可以支援類似closure的功能,而且又為了效能問題(不想把外部scope變數存在heap上,因為fragmentation跟較高的cache miss rate)讓你必須用[] capture外部scope的變數到lambda函數的stack上...這種作法只是為了效能的最佳化,為此而造成函數與lambda語法與實作都不一致,為程式語言引進兩種不同概念造成Programmer的負擔,這樣是不好的。
所以在我們的新程式語言中,函數的宣告語法目前是如此設想的:
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
之前提到在Codebase的演化過程中,local block可以成為之後重構函數的雛形,但是local block本來就可以存取外部scope的變數,有必要用Capture嗎?如果有Capture,這個Capture可以限制這個local block可存取的外部scope變數,這樣可以防止block內的東西汙染到其他code,而且如此一來block更像函數了,這對未來的重構也是有幫助的,正如上段Code中,我們可以發現,block可以在local block->local block with capture->local lambda ->local or global named function四個階段之間輕鬆的漸變,且格式一致。
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
Most of you have probably read various popular articles about the development process that produces the space shuttle software, and while some people might think that the world would be better if all software developers were that "careful", the truth is that we would be decades behind where we are now, with no PC's and no public internet if everything was developed at that snail's pace.
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
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
Add the following Directory settings to your httpd.conf
<Directory "your_mediawiki_path">
Options Indexes FollowSymLinks
DirectoryIndex index.php index.html
AllowOverride None
Order allow,deny
Allow from all
</Directory>
And then,
restart your apache
5.
make mediawiki/mw-config writable
cd /usr/local/www
chmod 777 mediawiki/config
Make sure all MediaWiki files belong to user www:
chown -R www mediawiki
Now open http://localhost/mediawiki/mw-config/index.php in your browser to start installation.
6. During Installation Set Mysql User account/pw to root/yourpw Make sure to include ParserFunction extension <- important 7. After Installation: copy LocalSettings.php to your mediawiki root 8.Download wiktionary xml from wikipedia sites I use enwiktionary-20121104-pages-articles.xml.bz2 9. unzip the bz2 file ---------------------------------------IMPORTANT--------------------------------- run the gfdl-wikititle program to strip out illegal titles in XML dumps provided by foundation: https://meta.wikimedia.org/wiki/Gfdl-wikititle (This program should be run on windows or linux.)
7.switch between tty and gnome
CTRL ALT +F1~F7 tty F9 GNOME
8.FTP PASSIVE MODE:
When logging into gnome with root
the terminal's environment will be cleaned.
Thus ftp passive mode is not set,
resulting the pkg_add -r fail...