-
-
Nearly every window manager has a concept of a "virtual desktop" in their operation.
i3 has the concept of "workspaces" and Awesome has "tags" which are nearly identical concepts. Each output has a…
-
Currently we have this unfortunate behavior (pointed out on Slack by @briochemc):
```jl
julia> mod(-1e-20, 360)
360.0
julia> mod(ans, 360)
0.0
```
There's a couple of issues:
1. The result…
-
-
Problems in "Math" are already kind of sorted by topics so I suggest splitting it into the following categories.
- Number theory
- Polynomials
- Combinatorics
- Modular Arithmetic
- Miscellaneo…
-
When a type parameter is specified to be `T type A{T A{1}
A{1}
julia> A{1.2}
A{1.2}
```
Although `1` and `1.2` are clearly not subtypes of `Top`
``` julia
julia> 1 (1...)[1]
1...
julia> typeof((…
-
# Background
Currently, Vec's documentation frequently contains the caveat that "more space may be reserved than requested". This is primarily in response to the fact that jemalloc (or any other al…
-
At present, the CSS is not responsive for mobile device screens, resulting in some spacing-related problems:
- The biggest one is the navbar at the top of each page: the spacing is wrong and the "Tag…
-
One optimization I miss in Julia compared to other GC-based language implementations are "tagged pointers".
## The problem
Consider the `BigInt` type: it is a *lot* slower than `Int` and takes u…
-
From a few conversations with @mikolalysenko I learned that languages like R and libraries like scipy which are known for amazing math are just binding to the same old Fortran libraries (and in a few …