http://askubuntu.com/questions/109404/how-do-i-install-different-upgrade-or-downgrade-php-version-in-still-supported
http://askubuntu.com/questions/761713/how-can-i-downgrade-from-php-7-to-php-5-6-on-ubuntu-16-04
Friday, February 17, 2017
Monday, January 23, 2017
Tuesday, December 27, 2016
Model checking safety properties
Regular model checking
Regular Model Checking Made Simple and Efficient
Regular Model Checking Without Transducers
Model Checking of Safety Properties
Finite presentations of infinite structures: Paper / Slide
Regular Model Checking Made Simple and Efficient
Regular Model Checking Without Transducers
Model Checking of Safety Properties
Finite presentations of infinite structures: Paper / Slide
Friday, November 25, 2016
DOA Tools and Mods
Documents
- Overview - http://bbs.3dmgame.com/thread-4791938-1-1.html
- Editing texture - https://www.ptt.cc/bbs/AC_In/M.1429727192.A.74B.html
- Using AutoLink - http://w11.zetaboards.com/SFxT_Mods/topic/11582418/1/
DLC Tools
Mods
Monday, November 14, 2016
Tuesday, November 8, 2016
C# performance notes
- for v.s foreach
1. for loops on List are a bit more than 2 times cheaper than foreach loops on List.
2. Looping on Array is around 2 times cheaper than looping on List.
3. As a consequence, looping on Array using for is 5 times cheaper than looping on List using foreach.
4. LinkedList only allows foreach loops, as it would take quadratic time to loop a LinkedList through indices.
5. Looping overheads: for < foreach; Array ~ List < ArrayList < LinkedList - Everything stored in an ArrayList is an object. So be careful of the boxing/unboxing overhead.
- String concatenation overheads are negligible outside loops.
Monday, October 3, 2016
Subscribe to:
Posts (Atom)