Skip to content

Instantly share code, notes, and snippets.

View uzbekdev1's full-sized avatar
🌴
On vacation

Elyor Latipov uzbekdev1

🌴
On vacation
View GitHub Profile
@uzbekdev1
uzbekdev1 / denoise.sh
Created December 2, 2020 10:59 — forked from alecjacobson/denoise.sh
Remove background audio noise from a video clip via the command line (using ffmpeg and sox)
#!/bin/bash
if [ -z "$2" ];then
echo 'USAGE:
denoise input.mov output.mov
OR
denoise input.mov output.mov [ambient-noise-start-time] [ambient-noise-duration] [sox-noisered-amount] [sox-norm-param]
@uzbekdev1
uzbekdev1 / remote.md
Last active November 6, 2020 19:26 — forked from Arkham/remote.md
Remote, office not required

Remote, Office Not Required

The Time is Right for Remote Work

Why work doesn't happen at work

The office during the day has become the last place people want to be when then really want to get work done.

Offices have become interruption factories: it's just one interruption after

@uzbekdev1
uzbekdev1 / consoles.md
Created November 4, 2020 21:30 — forked from udif/consoles.md
CMD.exe replacements for Windows

http://mintty.github.io/ - Mintty is a terminal emulator for Cygwin, MSYS and Msys2.
https://sourceforge.net/projects/poderosa/ - A terminal emulator with tabbed user interface and various connectivity including Telnet, SSH1/2, and cygwin.
http://www.softwareok.com/?seite=Freeware/ColorConsole - ColorConsole brings a little color to your black and white world of Windows console (cmd.exe).
https://conemu.github.io/ - ConEmu-Maximus5 is a Windows console emulator with tabs, which presents multiple consoles and simple GUI applications as one customizable GUI window with various features.
http://www.powercmd.com/ - PowerCmd: A Better Command Prompt Replacement Tool.
http://cmder.net/ - Portable console emulator for windows.
https://sourceforge.net/projects/console/ - Console is a Windows console window enhancement.
https://jpsoft.com/tccle-cmd-replacement.html - TCC/LE Windows CMD Replacement Shell : Upgrade Your CMD Commands.
http://www.gammadyne.com/cmdline.htm#gs - GS.EXE is an alternative DOS

Enterprise

Task Url: https://gitcoin.co/issue/ethhub-io/ethhub/299/3159

What ethereum offers to Enterprises

Ethereum offers tools which empower developers to build collaboratively and confidently. These tools enables businesses to create, test, and deploy enterprise-grade blockchain solutions in a matter of minutes. Some of them are:

Enterprise

Task Url: https://gitcoin.co/issue/ethhub-io/ethhub/299/3159

What ethereum offers to Enterprises

Ethereum offers tools which empower developers to build collaboratively and confidently. These tools enables businesses to create, test, and deploy enterprise-grade blockchain solutions in a matter of minutes. Some of them are:

@uzbekdev1
uzbekdev1 / index.php
Created October 19, 2020 10:02 — forked from ZiTAL/index.php
php: telegram bot api example
<?php
// get API KEY: https://core.telegram.org/bots#botfather
// get chad id: http://stackoverflow.com/questions/31078710/how-to-obtain-telegram-chat-id-for-a-specific-user
$api_key = 'FAKE1234';
$chat_id = '7850602'
$url = "https://api.telegram.org/bot".$api_key."/";
// UNCOMMENT desired method
<?php
$url = 'url';
$proxyauth = 'user:pass';
$proxy = 'proxy.server.es';
$proxyPort = '8080';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
//proxy suport
@uzbekdev1
uzbekdev1 / ProcessArmor.cs
Created October 9, 2020 08:39 — forked from rhmoult/ProcessArmor.cs
Process Armor - Prevent users from killing your service or process
using System;
using System.Diagnostics;
using System.Reflection;
using System.ComponentModel;
using System.Security.AccessControl;
using System.Security.Principal;
using System.Runtime.InteropServices;
using System.Configuration.Install;
@uzbekdev1
uzbekdev1 / install-rabbitmq.sh
Created September 14, 2020 18:43 — forked from yetanotherchris/install-rabbitmq.sh
RabbitMQ on Docker with admin UI
# AWS specific install of Docker
sudo yum update -y
sudo yum install -y docker
sudo service docker start
sudo usermod -a -G docker ec2-user
# exit the SSH session, login again
# Docker
docker run -d --hostname my-rabbit --name some-rabbit -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 rabbitmq
@uzbekdev1
uzbekdev1 / devops_training.txt
Created June 4, 2020 04:50 — forked from ssmythe/devops_training.txt
Training materials for DevOps
======
Videos
======
DevOps
What is DevOps? by Rackspace - Really great introduction to DevOps
https://www.youtube.com/watch?v=_I94-tJlovg
Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept)