My new blog posts
Edit a line of code and re-complie aria2 to unlock aria 2 connections limit
There’s a maximum number 16 connections hard code in aria2 so when I want to add more connections I need to edit a line of code and recompile it Edit max connections per server Edit number arguments in NumberOptionHandler for MAX_CONNECTION_PER_SERVER in file “OptionHandlerFactory.cc” from 16 to ...
Simple tricks to code-golf in Python
Operator Negating Boolean >if not C: if C<1: if~-C: And operator >if a and b: if a*b: if i==4 and j==4: if i==4and j==4: if(i,j)==(4,4): if i==j==4: Increment or decrement 1 in statement >c/(n-1) c/~-n c/(n+1) c/-~n while n-1: while~-n: or n+1 or-~n While n!=1 >while n!=1: while n-1: while~...
สร้างบอทเกมเพื่อเล่นเกมไพ่แข่งกับคนอื่น
Codingame เป็นเว็บที่มีเว็บโปรแกรมมิ่งแนว Bot Programming ที่ให้ผู้เล่นเขียนโค๊ดเพื่อให้บอทไปสู้กับบอทคนอื่น สามารถเล่นได้ที่นี่ Link สำหรับคนที่ยังไม่ค่อยเข้าใจระบบเกม ให้ลองเลื่อนลงไปดู Game loops and Input ก่อน Requirement skills Programming (Python Syntax) Basic Algorithms OOP นิดหน่อย LEGE...