Подборка книг git: https://yadi.sk/d/WZmZrFvbqMacq architecture: https://yadi.sk/d/iLUX4bCbqMXcp nodejs: https://yadi.sk/d/HsnqwcOwqMYEe maven: https://yadi.sk/d/qlKcGutVqMYk4 javascript: https://yadi.sk/d/aCbR47DzqMY4W html5/css 3: https://yadi.sk/d/nlQbR5XIqMXvo c/c++: https://yadi.sk/d/06rBch_AqMXth blender: https://yadi.sk/d/qv1mEzGLqMXiB apache nginx tomcat: https://yadi.sk/d/mEWMSVH0qMXWx Algo: https://yadi.sk/d/LfU1dXX_qMXHh Linux unix ubuntu: https://yadi.sk/d/esUrNMXwqMWKF Java: https://yadi.sk/d/zTTa19-6qMWKZ Bash: https://yadi.sk/d/Kgw7kU7eqMZ4r Python: https://yadi.sk/d/wuzMYQWyqMYFo 3d opengl: https://yadi.sk/d/SjxbOrFQqMYKc
На меня эта машина времени тоже действовала - она ломала время конкретного поста, откатывая в прошлое, а не поднимала старые. Это определенно новый пост.
daemon threads fifo pipe fork queue подборка материалов на разных языка http://2biz.net/forum/thread/view/id/388
Посмотрел классы на Джаве. Скажи в чем практический смысл кода Код (PHP): package basics; /** * https://docs.oracle.com/javase/tutorial/java/data/beyondmath.html * @author padaboo I.B Aleksandrov */ public class JavaMath { public static void main(String[] args) { /** Math.abs (n) - returns the unit number n. Math.round (n) - returns an integer closest to a real number n (rounds n). Math.ceil (n) - returns the closest number to the number n to the right of zero fractional part (e.g., Math.ceil (3.4) returns a result of 4.0). Math.cos (n), Math.sin (n), Math.tan (n) - trigonometric function sin, cos tg and the argument n, indicated in radians. Math.acos (n), Math.asin (n), Math.atan (n) - inverse trigonometric functions return the angle in radians. Math.toDegrees (n) - a measure of returns-degree angle in radians n. Math.toRadians (n) - returns radian measure of an angle in degrees n. Math.sqrt (n) - returns the square root of n. Math.pow (n, b) - returns the value of the power function of degree n b, the base and the exponent may be real. Math.log (n) - returns the natural logarithm of n. Math.log10 (n) - returns the logarithm of n. */ System.out.println(Math.abs(-2.33)); System.out.println(Math.round(Math.PI)); System.out.println(Math.round(9.5)); System.out.println(Math.round(9.5-0.001)); System.out.println(Math.ceil(9.4)); double c = Math.sqrt(3*3 + 4*4); System.out.println(c); double s1 = Math.cos(Math.toRadians(60)); System.out.println(s1); } } Типа я тупой не могу посмотреть как в джаве класс Math работает? Добавлено спустя 9 минут 28 секунд: Да, сервер сокет будет медленно работать если например так делать реализацию socks5, я делал прокси, через которые можно ютуб качать в 50 потоков через java nio
если что то писать то от начала до конца как во всех документациях, это jmonkeysdk там некоторые классы переопределены. А реализация осталась? - Код коллекционирую, потом соберу самплер.