r~~
A quiet enigma. We don't know anything about r~~ yet.
Posts
The term is cultural, not technical. From Wikipedia: There is no standard for defining the term, and some difference of opinion is possible as to the degree to which a given operating system or ...
posted 2y ago by r~~
For writing pseudocode? No. BNF is a notation—in practice, a family of similar notations, like how Markdown is a family of similar markup languages—for defining grammars. In software development a...
posted 11mo ago by r~~
It's because of this rule: *{ background: rgb(3, 28, 87); } That applies the darker blue background to every element individually, and that isn't overridden when you change the background o...
posted 6mo ago by r~~
There are a few reasons for wanting to move computation closer to data. One is performance, which you've mentioned. Another is security. Databases enforce their own security boundary, and data that...
posted 1y ago by r~~
There is no fixed number of days in a MONTH interval. DATE_SUB is mostly just decrementing the number in the months position of the date provided. So DATE_SUB('2020-09-14', INTERVAL 3 MONTH) is '20...
posted 2y ago by r~~
From the command line, the following command will give you a list of all authors who have made local-only commits to a branch some-branch: git log some-branch --not --remotes --format="%an" And...
posted 2y ago by r~~
See this comment: https://forum.qt.io/topic/60546/qpushbutton-default-windows-style-sheet#3 Stylesheets are a totally different beasts. The default native drawing doesn't use stylesheets. They ...
posted 4mo ago by r~~
In my opinion, all of the downsides boil down to two objections: It isn't idiomatic (in C# and VB.NET) It's slightly less performant The fact that it isn't idiomatic means that, as you note...
posted 1y ago by r~~
fn x [] = [] means that if the second argument to fn is an empty list, return an empty list. fn x (True:ys) = x : fn x ys means that if the second argument to fn starts with True, return a list th...
posted 4mo ago by r~~

Reputation | 2133 | |
Number of top-level posts | 3 | |
Number of answers | 45 | |
Sum of received votes (up minus down) | 212 | |
Number of edits made | 27 |
Earned Abilities
Statistics
Posts | ||
---|---|---|
Count | 48 | |
Questions | 3 | |
Answers | 45 | |
Articles | 0 |
Votes cast | ||
---|---|---|
Count | 187 |
Flags raised | ||
---|---|---|
Count | 2 |