- High level overview https://yogthos.github.io/ClojureDistilled.html
- An Animated Introduction to Clojure https://markm208.github.io/cljbook/
- Interactive tutorial in a browser https://tryclojure.org/
- Interactive exercises http://clojurescriptkoans.com/
- Clerk notebooks with introductory examples https://github.clerk.garden/anthonygalea/notes-on-clojure
- More interactive exercises https://4clojure.oxal.org/
- Lambda Island tutorials https://lambdaisland.com/
- Functional Programming with Clojure resources https://practicalli.github.io/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python3 | |
| #-*- encoding: utf-8 -*- | |
| import cv2 | |
| import numpy as np | |
| # start this: | |
| # ffmpeg -i /dev/video0 -f mpegts udp://localhost:1337 | |
| # ffmpeg -i rtsp://... -f mpegts udp://localhost:1337 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <future> | |
| #include <iostream> | |
| #include <thread> | |
| #include <queue> | |
| template <typename T> | |
| class concurrent_queue { | |
| private: | |
| std::queue<T> _queue; | |
| std::mutex _mutex; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function int2ip (ipInt) { | |
| return ( (ipInt>>>24) +'.' + (ipInt>>16 & 255) +'.' + (ipInt>>8 & 255) +'.' + (ipInt & 255) ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| #encoding: utf-8 | |
| require "readline" | |
| require "yaml" | |
| require "drb/drb" | |
| module Todo | |
| class List | |
| def serve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "pdf-reader" | |
| dateiname = [] | |
| print "Bitte geben Sie die zu suchenden Worte ein: " | |
| words = gets.strip.split(/\s+/mi).collect { |w| | |
| dateiname << w | |
| Regexp.new(w.to_s, Regexp::MULTILINE + Regexp::IGNORECASE) | |
| } |
As configured in my dotfiles.
start new:
tmux
start new with session name: