Skip to content

Instantly share code, notes, and snippets.

View mashintsev's full-sized avatar

Ivan Mashintsev mashintsev

View GitHub Profile
@mashintsev
mashintsev / config.toml
Created February 20, 2025 11:30
Nexus proxy repository for Cargo/Rust
# Create Nexus Proxy Reposity with Remote Storage = https://index.crates.io
# .cargo/config.toml should be placed accoding docs https://doc.rust-lang.org/cargo/reference/config.html
[registries.nexus]
index = "sparse+https://nexus.app/repository/cargo/"
[registry]
default = "nexus"
[source.crates-io]

Keybase proof

I hereby claim:

  • I am mashintsev on github.
  • I am mashintsev (https://keybase.io/mashintsev) on keybase.
  • I have a public key ASDsyS9HKnyl0kj85XHoFRHqgvIz7w_sh7WZdeqyqdTxMgo

To claim this, I am signing this object:

@mashintsev
mashintsev / dashcam-time-lapse.sh
Created May 24, 2018 08:58 — forked from geerlingguy/dashcam-time-lapse.sh
Create a time lapse video from a set of real-time dash cam clips.
#!/bin/bash
#
# Batch Time-Lapse creation script.
#
# This script can be used to speed up, trim, and finally concatenate tens or
# even hundreds of video clips, e.g. from a dash cam. You can do other things,
# too, but the main things this script does include:
#
# 1. Copy across and speed up video clips from an input dir to an output dir.
# 2. Trim off the first x frames of each of the copied/sped up clips.
@mashintsev
mashintsev / python_smtp.sh
Last active May 17, 2017 12:52
Run local SMPT server based Python
python -m smtpd -n -c DebuggingServer localhost:1025
@mashintsev
mashintsev / nginx_storage_spray.conf
Last active August 29, 2015 14:25 — forked from ilguzin/nginx_storage_spray.conf
spray + nginx: serve static with storage API endpoint
server {
listen 443 ssl;
server_name hostname;
ssl on;
ssl_certificate /etc/nginx/ssl_certs/hostname.bndl.crt;
ssl_certificate_key /etc/nginx/ssl_certs/hostname.key;
ssl_session_timeout 5m;