start new:
tmux
start new with session name:
tmux new -s myname
| * | |
| !.gitignore | |
| !alternative.yaml | |
| !*.custom.yaml | |
| !kaomoji.*.yaml |
| import flyd from 'flyd' | |
| import h from 'snabbdom/h' | |
| import snabbdom from 'snabbdom' | |
| import render from 'ff-core/render' | |
| // Initialize the state object | |
| const init = ()=> { | |
| // Initialize input change event streams | |
| // Think of streams as values that change over time. | |
| // These two streams are input values that change over time, but start empty. |
| to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice | |
| stun: | |
| stun.l.google.com:19302, | |
| stun1.l.google.com:19302, | |
| stun2.l.google.com:19302, | |
| stun3.l.google.com:19302, | |
| stun4.l.google.com:19302, | |
| stun.ekiga.net, | |
| stun.ideasip.com, |
| import * as React from 'react' | |
| import {Observable} from 'rxjs/Observable' | |
| import {Subject} from 'rxjs/Subject' | |
| import {ISubscription} from 'rxjs/Subscription' | |
| import {Observables} from '../rxjs/Observables' | |
| import {Pipes} from '../rxjs/Pipes' | |
| import {Subjects} from '../rxjs/Subjects' | |
| import {EventHandlers} from '../utils/EventHandler' | |
| export abstract class ReactiveReactComponent<Props, State, Events> extends React.Component<Props, State> { |
The always enthusiastic and knowledgeable mr. @jasaltvik shared with our team an article on writing (good) Git commit messages: How to Write a Git Commit Message. This excellent article explains why good Git commit messages are important, and explains what constitutes a good commit message. I wholeheartedly agree with what @cbeams writes in his article. (Have you read it yet? If not, go read it now. I'll wait.) It's sensible stuff. So I decided to start following the
This is inspired by https://fasterthanli.me/blog/2020/a-half-hour-to-learn-rust/
the command zig run my_code.zig will compile and immediately run your Zig
program. Each of these cells contains a zig program that you can try to run
(some of them contain compile-time errors that you can comment out to play
with)