John VK2FAK (@john_vk2fak) 's Twitter Profile
John VK2FAK

@john_vk2fak

I enjoy tracking HF Balloons, Ocean Floaters, and Satellites. I learned Archery years ago and like the challenge. And a good movie is hard to beat.

ID: 800526457483071488

calendar_today21-11-2016 02:29:15

580 Tweet

250 Takipçi

153 Takip Edilen

The V Programming Language (@v_language) 's Twitter Profile Photo

Like Scala and Go, V recently switched to using [] for generics. Using <> resulted in parsing issues that couldn't be resolved without type information. Old code will keep working, vfmt automatically takes care of the change. You can read about the benefits of using [] here:

The V Programming Language (@v_language) 's Twitter Profile Photo

The V ecosystem is growing and our official scientific computing library (VSL) now provides different examples on how to use ML algorithms and combine them with the plot library to see the results. You can check out the examples in the VSL repo to find out more about it:

The V ecosystem is growing and our official scientific computing library (VSL) now provides different examples on how to use ML algorithms and combine them with the plot library to see the results. You can check out the examples in the VSL repo to find out more about it:
The V Programming Language (@v_language) 's Twitter Profile Photo

The long-awaited IntelliJ plugin for V is out! It has code completion, on-the-fly analysis, syntax highlighting, code generation, quick documentation on hover, and more.

The V Programming Language (@v_language) 's Twitter Profile Photo

A new major release of the V playground is out! v0.1: - Simple autocompletion - Ability to run multiple threads via `spawn` - Ability to run programs as tests - New examples - Improved highlighting - Bug fixes and minor improvements - Resizable terminal play.vlang.io

A new major release of the V playground is out!

v0.1:

- Simple autocompletion
- Ability to run multiple threads via `spawn`
- Ability to run programs as tests
- New examples
- Improved highlighting
- Bug fixes and minor improvements
- Resizable terminal

play.vlang.io
The V Programming Language (@v_language) 's Twitter Profile Photo

Vweb, V's official web framework, just got a lot more efficient. It now has a worker pool, which allows a controlled number of threads to be utilized for the http server: github.com/vlang/v/pull/1…

The V Programming Language (@v_language) 's Twitter Profile Photo

V now has a new wasm module with a pure V implementation of the wasm bytecode module format! It provides a builder to generate wasm modules in memory, enabling users to create functions, opcodes, and use the entire wasm specification without relying on large deps like binaryen.

V now has a new wasm module with a pure V implementation of the wasm bytecode module format!

It provides a builder to generate wasm modules in memory, enabling users to create functions, opcodes, and use the entire wasm specification without relying on large deps like binaryen.
The V Programming Language (@v_language) 's Twitter Profile Photo

V is now UB free! Previously the website used to say that overflowing could result in UB, but that was fixed today. No more undefined behavior.

V is now UB free!

Previously the website used to say that overflowing could result in UB, but that was fixed today.

No more undefined behavior.
The V Programming Language (@v_language) 's Twitter Profile Photo

V now has a pure `sorted()` method, which sorts an array and returns the result, without modifying the original array. `array.sort()` still exists and modifies the receiver.

V now has a pure `sorted()` method, which sorts an array and returns the result, without modifying the original array.

`array.sort()` still exists and modifies the receiver.