new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Deno · Reference · all subjects

api/network

4 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Deno.TcpConn.prototype.rid and instance methods replacement

Deno.TcpConn.prototype.rid has been removed. Use Deno.TcpConn instance methods instead. Replace await Deno.read(tcpConn.rid, buffer) with await tcpConn.read(buffer), await Deno.write(tcpConn.rid, data) with await tcpConn.write(data), await Deno.shutdown(tcpConn.rid) with await tcpConn.closeWrite(), and Deno.close(tcpConn.rid) with tcpConn.close().

Deno.TlsConn.prototype.rid and instance methods replacement

Deno.TlsConn.prototype.rid has been removed. Use Deno.TlsConn instance methods instead. Replace await Deno.read(tlsConn.rid, buffer) with await tlsConn.read(buffer), await Deno.write(tlsConn.rid, data) with await tlsConn.write(data), await Deno.shutdown(tlsConn.rid) with await tlsConn.closeWrite(), and Deno.close(tlsConn.rid) with tlsConn.close().

Deno.TlsListener.prototype.rid and instance methods replacement

Deno.TlsListener.prototype.rid has been removed. Use Deno.TlsListener instance methods instead. Change Deno.close(listener.rid) to listener.close().

Deno.UnixConn.prototype.rid and instance methods replacement

Deno.UnixConn.prototype.rid has been removed. Use Deno.UnixConn instance methods instead. Replace await Deno.read(unixConn.rid, buffer) with await unixConn.read(buffer), await Deno.write(unixConn.rid, data) with await unixConn.write(data), await Deno.shutdown(unixConn.rid) with await unixConn.closeWrite(), and Deno.close(unixConn.rid) with unixConn.close().

Give your agent this brain