<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
Press minus + shift + s
and return
to chop/fold long lines!
In this article, I will share some of my experience on installing NVIDIA driver and CUDA on Linux OS. Here I mainly use Ubuntu as example. Comments for CentOS/Fedora are also provided as much as I can.
/* | |
Copy this into the console of any web page that is interactive and doesn't | |
do hard reloads. You will hear your DOM changes as different pitches of | |
audio. | |
I have found this interesting for debugging, but also fun to hear web pages | |
render like UIs do in movies. | |
*/ | |
const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |
/// Prints and returns the value of a given expression for quick and dirty code | |
/// profiling. | |
/// | |
/// Example usage: | |
/// | |
/// ```rust | |
/// let s = "hello world"; | |
/// let all_caps = profile!(s.repeat(2).to_uppercase()); | |
/// ^-- prints: [src/main.rs:2] execution time: 2μs | |
/// |