Alan Dipert (@alandipert) and Micha Niskin (@micha)
for Boot, slides and help with Boot intel.
Juno Terepi (@deraen)
for slides and help with Lein pitfals
for Boot, slides and help with Boot intel.
for slides and help with Lein pitfals
#!/bin/bash | |
web_service='nginx' | |
config_file="/opt/letsencrypt/settings.ini" | |
le_path='/opt/letsencrypt' | |
exp_limit=30; | |
if [ ! -f $config_file ]; then | |
echo "[ERROR] config file does not exist: $config_file" |
I have tried a lot of solutions for IP-camera streams.
Vitamio.https://github.com/yixia/Vitamio-iOS
Result: random crashes and not working cameras
https://github.com/kolyvan/kxmovie
Result: compile time error. I haven't successfully integrated it to my project.
GStreamer. https://github.com/sdroege/gst-player
I recently upgraded to a new system, and instead of running Arch Linux natively I've decided to run it inside VirtualBox on Windows 10. Below I note down the steps I took, which closely follow the excellent wiki pages of archlinux. But along the way, I also noted a few other steps steps I took to make this system very comfortable, which you'll have to figure out for yourself if you like them or not!
There isn't much of preparation required, given that I started from scratch, but I did have to setup my windows environment a little bit.
choco install qbittorrent
(recommended to run the command line as an admIf your system is running slowly, perhaps a process is using too much CPU time and won't let other processes run smoothly. To find out which processes are taking up a lot of CPU time, you can use Apple's Activity Monitor.
The CPU pane shows how processes are affecting CPU (processor) activity:
;; Elisp session in REPL IELM | |
;; | |
;; | |
;; | |
ELISP> (defmacro inc (var) | |
(list 'setq var (list '1+ var))) | |
inc | |
ELISP> (setq x 0) | |
0 (#o0, #x0, ?\C-@) |
//Greg Lukosek 2015 | |
//[email protected] | |
using UnityEngine; | |
using UnityEditor; | |
public class TexturePostProcessor : AssetPostprocessor | |
{ | |
void OnPostprocessTexture(Texture2D texture) |
;; mac os x style | |
(global-set-key (kbd "s-S") 'write-file) | |
(global-set-key (kbd "s-s") 'save-buffer) | |
(global-set-key (kbd "s-i") 'dired-jump-other-window) | |
(global-set-key (kbd "s-l") 'goto-line) | |
(global-set-key (kbd "s-q") 'save-buffers-kill-emacs) | |
(global-set-key (kbd "s-x") 'kill-region) | |
(global-set-key (kbd "s-c") 'kill-ring-save) | |
(global-set-key (kbd "s-v") 'yank) | |
(global-set-key (kbd "s-a") 'mark-whole-buffer) |