Search:

Found 995 videos

Learn Bitcoin Script with Super Testnet by PBS
49:36

Learn Bitcoin Script with Super Testnet

PBS   |   6 views   |   2022-09-18

Details: Learn Bitcoin Script Come learn about Bitcoin script. Super Testnet will be going over what Bitcoin script is and how to make your first smart contract using bitcoin script. Super will be going over the following: - What bitco...

SNL#33: The ending of a Scooby Doo episode by Stacker News Live
45:24

SNL#33: The ending of a Scooby Doo episode

Stacker News Live   |   4 views   |   2022-09-18

Join Car and Keyan discuss Stacker News top posts, Car & Keyan favorite posts of the week and top stackers. We discuss: - SpiralBTC is a public block explorer that gives you the privacy of a self-hosted node. - Tony Giorgio, Lightning develop...

I Wasted 30 Years NOT Creating by Hurricane Blonde
06:38

I Wasted 30 Years NOT Creating

Hurricane Blonde   |   46 views   |   2023-04-02

This is a personal story about music, ~30 years in the making. It's a cautionary, creative tale about creating. It's a warning that time is not on our side. This video is also here to motivate you, to fire you up, and to make you start DOING somet...

MAPS Drum Cover (1 week of drumming) by Drumming
03:34

MAPS Drum Cover (1 week of drumming)

Drumming   |   172 views   |   2023-03-29

I'm 47 years old, and as of this video, I've been playing "real" drums for 7 days. After being obsessed with this glorious instrument for more than 3 decades, I finally graduated from the fake plastic Rock Band video game toy to an eDrum kit: the ...

Rewild Sudoeste by Fernando Amaral_Antropologia Visual
19:30

Rewild Sudoeste

Fernando Amaral_Antropologia Visual   |   3 views   |   2024-01-10

A tour of the wild autochthonous forest of the south west Portugal, in Aljezur. Filmed in October 2022 while accompanying a tour of a delegation from Germany and Poland in a visit to regeneration projects in Europe.

The future internet regulation - Aral Balkan at the European Parliament by Chez les autres
17:16

The future internet regulation - Aral Balkan at the European Parliament

Chez les autres   |   1355 views   |   2019-11-20

Version with SLIDES and SUBTITLE : https://video.lqdn.fr/videos/watch/861c07f7-7e9b-4e64-9765-cf1de592c8a0 The future of internet regulation, a European Parliament meeting organised by the greens, on 2019-11-19 Aral Balkan is talking about the su...

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.

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...

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.

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.