Обзор можно разделить на 3 части:
- Контент - что я читал, слушал и смотрел, самая полезная часть, отсюда можно что-то утянуть себе
- Технические итоги - для инженеров
- Про жизнь - кому интересно лично про меня
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
<?php | |
$filename = 'planfix-tasks.json'; | |
if($_POST['tasks']) { | |
file_put_contents($filename, $_POST['tasks']); | |
return; | |
} | |
$lists = json_decode(file_get_contents($filename)); | |
foreach($lists as $listName => $data) { |
'''Trains a simple deep NN on the MNIST dataset. | |
Gets to 98.40% test accuracy after 20 epochs | |
(there is *a lot* of margin for parameter tuning). | |
2 seconds per epoch on a K520 GPU. | |
''' | |
from __future__ import print_function | |
import os | |
# os.environ['CUDA_VISIBLE_DEVICES']='-1' |
#!/usr/bin/env node | |
// replace all UTC dates to local dates in pipe | |
// usage: docker logs -t container_name | docker-logs-localtime | |
// install: | |
// curl https://gist.githubusercontent.com/popstas/ffcf282492fd78389d1df2ab7f31052a/raw/505cdf97c6a1edbb10c3b2b64e1836e0627b87a0/docker-logs-localtime > /usr/local/bin/docker-logs-localtime && chmod +x /usr/local/bin/docker-logs-localtime | |
// alternative: https://github.com/HuangYingNing/docker-logs-localtime | |
const pad = d => (d > 9 ? d : '0' + d); |
[ | |
{ | |
"name": "Ubuntu AppIndicators", | |
"url": "https://github.com/ubuntu/gnome-shell-extension-appindicator" | |
}, | |
{ | |
"name": "Ubuntu Dock", | |
"url": "https://micheleg.github.io/dash-to-dock/" | |
}, | |
{ |
// ==UserScript== | |
// @name Gitlab project favicon | |
// @author Stanislav Popov | |
// @version 0.1 | |
// @namespace popstas.ru | |
// @description Use og:image as favicon on Gitlab pages | |
// @unwrap | |
// @noframes | |
// @run-at document-end | |
// @updateURL https://gist.github.com/popstas/9d17c1b0e1772a84581b3af8a342ad73/raw/1f2c562a128568e1b220457bdab1e9d60dc1467d/gitlab-project-favicon.user.js |
server { | |
listen 443 ssl http2; | |
server_name git.home.popstas.ru; | |
access_log off; | |
ssl_certificate /etc/letsencrypt/live/git.home.popstas.ru/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/git.home.popstas.ru/privkey.pem; | |
ssl_dhparam /etc/ssl/certs/dhparam.pem; | |
location / { | |
proxy_pass http://localhost:10080; | |
proxy_set_header Host $http_host; |
list_terms (){ | |
uuids=$(gsettings get org.gnome.Terminal.ProfilesList list | tr -d \' | tr -d \[ | tr -d \] | tr -d ,) | |
for uuid in $(echo $uuids); do | |
gsettings get org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:${uuid}/ visible-name | tr -d \' | |
done | |
} | |
select_term (){ | |
selected="$(list_terms | sort -n | fzf)" | |
if [ -n "$selected" ]; then |