Search:

Found 284 videos

What is PeerTube by Main tanzeem channel
01:53

What is PeerTube

Main tanzeem channel   |   1 views   |   2020-10-10

my_evilwm_desktop by starwars
12:13

my_evilwm_desktop

starwars   |   0 views   |   2020-09-12

A tour of my evilwm desktop and how it setup

New Add-on: Post Signatures by Write.as Updates
02:34

New Add-on: Post Signatures

Write.as Updates   |   71 views   |   2020-06-23

Now you can easily add a consistent signature to all of your blog posts on Write.as (and soon, WriteFreely). [Get the Write.as add-on here](https://write.as/extend/signature).

Teams and Submit.as updates (June 2020) by Write.as Updates
05:18

Teams and Submit.as updates (June 2020)

Write.as Updates   |   30 views   |   2020-06-05

Some recent updates to [Write.as](https://write.as) and [Submit.as](https://submit.as): * Team management * Schedule submission prompt publishing * Archive prompts * Per-blog submission notification settings * Filter submissions by current state

Contact tracing in the background on iOS by Dodgy Coding
05:56

Contact tracing in the background on iOS

Dodgy Coding   |   59 views   |   2020-04-28

A short demonstration of the Australian COVIDSafe app and how its Bluetooth connectivity is affected by putting the app in the background.

OBS loves AppImage by Default root channel
30:26

OBS loves AppImage

Default root channel   |   11 views   |   2020-04-18

Providing desktop applications to multiple Linux-based target systems (distributions) can be cumbersome. Whereas upstream application authors have always had the possibility to offer downloads for Windows and macOS, distributing packages for Linux...

Simultaneous open - TCP without a server by Dodgy Coding
13:58

Simultaneous open - TCP without a server

Dodgy Coding   |   64 views   |   2020-04-13

A fun quirk of TCP/IP is that you can create a connection without a listening socket. In this video we briefly review how that works, then write a Rust program to trigger the unusual behaviour on real Linux hosts. Code: [https://github.com/thom...

ontodot  usage by cnngimenez_sw
65:11:35

ontodot usage

cnngimenez_sw   |   2 views   |   2020-03-22

ontodot is a SWI Prolog library. It creates a dot formatted graph from a Turtle (or RDF) file. This video shows how to load and use it to create the dot and a PNG file from a simple .ttl file. Repositories: - Bitbucket: https://bitbucket.o...

ontodot-el by cnngimenez_sw
62:32:30

ontodot-el

cnngimenez_sw   |   1 views   |   2020-03-22

ontodot-el usage example for Emacs. Repositories: - Bitbucket : https://bitbucket.org/cnngimenez/ontodot-el/ - Gitlab: https://gitlab.com/cnngimenez/ontodot-el ---- Listening at that moment: Law' - Terre de coluleurs (Lic. CC-By-SA) [...

Async/await server pt.4 - timeouts by Dodgy Coding
07:30

Async/await server pt.4 - timeouts

Dodgy Coding   |   8 views   |   2020-03-21

A gentle exploration of building a identd for Linux using async/await and tokio 0.2. This part demonstrates halting an await after a configurable time limit, both using tokio's timeout() helper and with the select! macro from the futures crate.

Async and its alternatives by Dodgy Coding
14:23

Async and its alternatives

Dodgy Coding   |   7 views   |   2019-10-19

Rust libraries come in a variety of API styles and futures are just one option. In this video we compare and contrast four styles from three crates: 1. Synchronous blocking functions (websocket) 2. Single thread reactor (ws-rs) 3. Non-blockin...

Cancelling Tokio Intervals by Dodgy Coding
12:03

Cancelling Tokio Intervals

Dodgy Coding   |   11 views   |   2019-09-21

A discussion of how futures are given to an async executor and later dropped. Examples of cancelling an Interval stream by erroring out of for_each, and by selecting against another future.

Bitcoin Unlimited Vs BSVers [Compressor Retake] by Main cryptoshoppe channel
04:37

Bitcoin Unlimited Vs BSVers [Compressor Retake]

Main cryptoshoppe channel   |   1 views   |   2019-09-20

Covers why Norway should have been removed on first BUIP. Retaliatory BUIPs and drama. Retaken version with compressor and new microphone.

Fight for Bitcoin Cash (BCH) Because it's Ours [Compressor Audio] by Main cryptoshoppe channel
06:28

Fight for Bitcoin Cash (BCH) Because it's Ours [Compressor Audio]

Main cryptoshoppe channel   |   1 views   |   2019-09-20

Why we must stand and fight for Bitcoin Cash (BCH). Bitcoin was always Libre Software Licensed under the MIT License. No one is taking it away from us, we will stand and fight for what we believe in. https://bitcoincashers.org/

Fraizilla, the big and hungry openhardware CNC by Chaine de Chantierlibre
02:05

Fraizilla, the big and hungry openhardware CNC

Chaine de Chantierlibre   |   5 views   |   2019-08-30

This is a short description of our openhardware CNC Fraizilla. If you want us to publish all the files (freecad 3D files and building instructions) of this CNC, you can support our crowdfunding campaign: zeste.coop/en/explore-the-projects/detail...

Type erasure in Rust/C FFI — structs, generics, trait objects by Dodgy Coding
21:20

Type erasure in Rust/C FFI — structs, generics, trait objects

Dodgy Coding   |   22 views   |   2019-08-18

Exploring how to create data structures that are owned by C and pass pointers back to Rust to operate on them. This is easy for a basic struct but when you introduce generics or traits, things get interesting. Content warning: inadvisable C code.

Tokio I/O futures by Dodgy Coding
11:33

Tokio I/O futures

Dodgy Coding   |   12 views   |   2019-07-07

Experiments with tokio’s lines() function, fold(), and a custom multi-stage future with inner futures and the try_ready macro. With this episode, we are now up to four sub-optimal ways to count the number of lines in a file.

Making a leaf future for tokio by Dodgy Coding
14:55

Making a leaf future for tokio

Dodgy Coding   |   16 views   |   2019-06-30

I play around with a standalone future to see how the tokio executor’s polling works in practice. I then adapt a callback-based API to work with futures, including a full implementation of a leaf future that transitions from NotReady to Ready.