See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| use std::{ | |
| fs::File, | |
| io::{Read, Write}, | |
| time::Instant, | |
| }; | |
| use tokio::task::{self, JoinHandle}; | |
| async fn compute() { | |
| let handles: Vec<JoinHandle<_>> = (0..1000) | |
| .map(|_| { |
| Author: Nilo Dantas - n1lo | |
| Based on: https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/518056 - helio-valente post | |
| How to use Cedilha on US Keyboard on ArchLinux | |
| 1) Put: English(US, internacional with dead Keys) on your system keyboard layout. | |
| 2) Editing the files: | |
| sudo vim /usr/lib/gtk-3.0/3.0.0/immodules.cache |
| extern mod sync; | |
| // str op trait | |
| use std::str::StrSlice; | |
| // for tcp listen | |
| use std::io::{TcpListener, TcpStream}; | |
| use std::io::net::ip::SocketAddr; | |
| // for trait | |
| use std::io::{Listener, Writer, Acceptor, Buffer}; | |
| // for spawn |
| <!DOCTYPE html> | |
| <!-- http://eli.fox-epste.in/rule110-full.html --> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>Rule 110</title> | |
| <style type="text/css" media="screen"> | |
| body { | |
| -webkit-animation: bugfix infinite 1s; | |
| font-family: "Courier New"; |