Skip to content

Instantly share code, notes, and snippets.

View dalisoft's full-sized avatar
😀
Happy to code

Davlatjon Sh dalisoft

😀
Happy to code
View GitHub Profile
@AriTheElk
AriTheElk / gpg_key_backup.md
Last active June 4, 2022 11:53
Backup/Restore GPG key

The following is the procedure I use on UNIX systems:

First, export all public certificates into a public keyring:

$ gpg --armor --export > pub.asc

Second, export all secret certificates into a secret keyring:

@jthomas
jthomas / package.json
Last active September 24, 2023 21:58
Using TensorFlow.js with MobileNet models for image classification on Node.js
{
"name": "tf-js",
"version": "1.0.0",
"main": "script.js",
"license": "MIT",
"dependencies": {
"@tensorflow-models/mobilenet": "^0.2.2",
"@tensorflow/tfjs": "^0.12.3",
"@tensorflow/tfjs-node": "^0.1.9",
"jpeg-js": "^0.3.4"
@six519
six519 / opencv_test.js
Last active February 29, 2020 10:42
(Node.js Sample Code) Basic Motion Detection With OpenCV
var cv = require('./node_modules/opencv/lib/opencv');
var sleep = require('sleep');
var camera = new cv.VideoCapture(0); //open camera
//set the video size to 512x288
camera.setWidth(512);
camera.setHeight(288);
var window = new cv.NamedWindow('Camera');
var firstFrame, frameDelta, gray, thresh;
@tomasevich
tomasevich / nginx_nodejs.md
Last active September 17, 2024 17:17
Сервер в связке Nginx + NodeJs

Сервер в связке Nginx + NodeJs

Данная пошаговая инструкция поможет освоить основы на простом примере

Для справки

Сервер поднимался на Debian 8 c характеристиками:

CPU - 1 ядро x 500 МГц

@edsiper
edsiper / kubernetes_commands.md
Last active January 20, 2025 15:36
Kubernetes Useful Commands
@troyfontaine
troyfontaine / 1-setup.md
Last active April 5, 2025 10:21
Signing your Git Commits on MacOS

Methods of Signing Git Commits on MacOS

Last updated March 13, 2024

This Gist explains how to sign commits using gpg in a step-by-step fashion. Previously, krypt.co was heavily mentioned, but I've only recently learned they were acquired by Akamai and no longer update their previous free products. Those mentions have been removed.

Additionally, 1Password now supports signing Git commits with SSH keys and makes it pretty easy-plus you can easily configure Git Tower to use it for both signing and ssh.

For using a GUI-based GIT tool such as Tower or Github Desktop, follow the steps here for signing your commits with GPG.

@giordanocardillo
giordanocardillo / README.md
Last active October 10, 2024 04:26
Mounting Samba share on Ubuntu

Mounting Samba share on Ubuntu

  1. Install package cifs-utils

     sudo apt-get install cifs-utils
    
  2. Create folder to mount the share into

     sudo mkdir /media/Share
    
@zmts
zmts / tokens.md
Last active April 6, 2025 04:57
Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

Про токены, JSON Web Tokens (JWT), аутентификацию и авторизацию. Token-Based Authentication

Last major update: 25.08.2020

  • Что такое авторизация/аутентификация
  • Где хранить токены
  • Как ставить куки ?
  • Процесс логина
  • Процесс рефреш токенов
  • Кража токенов/Механизм контроля токенов
@awesomebytes
awesomebytes / simple_debian_repository.md
Last active March 30, 2025 17:31
How to create a simple debian repository with minimal dependences

Simple debian repository

How to have a simple debian repository to offer your packages.

Requirements

You probably have them already installed

  • Python (I used 2.7).
  • dpkg-scanpackages: sudo apt-get install dpkg-dev
  • gzip: sudo apt-get install gzip
@mrlesmithjr
mrlesmithjr / ansible-macos-homebrew-packages.yml
Last active January 21, 2025 16:34
Install MacOS Homebrew Packages With Ansible
---
- name: Install MacOS Packages
hosts: localhost
become: false
vars:
brew_cask_packages:
- atom
- docker
- dropbox
- firefox