-
While we are at it, this is another issue we came accross while installing pylada on the new system. Pylada installs smoothly with gcc and gfortran, but when trying to install it using ifort and icc (…
-
```bash
#$ make
crystal deps install
Updating https://github.com/crystal-lang/crystal_lib.git
Installing crystal_lib (4c6082a8a6880ffc079db97f1503d04429ed6a48)
mkdir -p bin
crystal build --relea…
-
Hi Firedrake folk,
I've written a script to post-process data and save in h5 and xmf files for Paraview. It looks like the h5 install with firedrake is missing the zip library as I get this error:
…
-
Hello,
I'm trying to port a library that uses a `va_list` type (from [stdargs.h](https://en.wikipedia.org/wiki/Stdarg.h)) using crystal_lib.
The problem is that it generates an alias to `LibC::V…
olbat updated
6 years ago
-
## Terminal Stuff
* [x] `$ brew upgrade bat fzf git heroku hokusai hub macvim the_silver_searcher tmux yarn`
* [x] `$ replug`
* [x] `$ asdf update && asdf plugin-update --all && asdf reshim`
* […
-
as I mentioned in #57 I am in the process of modifying the cross-platform `fuse-bindings` node.js package (https://github.com/mafintosh/fuse-bindings) so that it uses WinFsp instead of Dokany on Windo…
-
Currently `NamedTuple` doesn't allow to have default arguments, i.e. this code won't compile:
```crystal
def foo(x : NamedTuple(a: Int32, b: Int32? = nil))
pp x
end
foo(x: {a: 42})
```
…
-
I was speaking to the devs in the Crystal IRC channel and they state that Crystal is absolutely, positively, *NOT* parallel. It is concurrent sure, but it will not use more than 1 core (the GC can ea…
-
_tl;dr: a very loosely structured overview of a bunch of mostly non-functional changes planned for the next little while._
# 2018 Spring Cleaning
In anticipation of GSoC and other upcoming work,…
-
Right now `Int32` is the default type for integer literals that don't have a type:
```crystal
x = 1
typeof(x) # => Int32
```
We also have #4011, where `Array` is limited to an `Int32` length.…