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

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)
@uzbekdev1
uzbekdev1 / Encryption.cs
Created January 31, 2020 13:36 — forked from davidsheardown/Encryption.cs
.NET Core 2 Encrypt/Decrypt String
public static void Main(string[] args)
{
var content = "Example test";
var key = "E546C8DF278CD5931069B522E695D4F2";
var encrypted = EncryptString(content, key);
Console.WriteLine(encrypted);
var decrypted = DecryptString(encrypted, key);
Console.WriteLine(decrypted);
@uzbekdev1
uzbekdev1 / 1.draggable-modal.js
Created January 4, 2020 10:04 — forked from wellwind/1.draggable-modal.js
Draggable Bootstrap Modal
$('.modal.draggable>.modal-dialog').draggable({
cursor: 'move',
handle: '.modal-header'
});
$('.modal.draggable>.modal-dialog>.modal-content>.modal-header').css('cursor', 'move');
@uzbekdev1
uzbekdev1 / tar_test.c
Created January 3, 2020 17:39 — forked from danikin/tar_test.c
Tarantool Quick Test
// Tarantool quick test
// Copyright, Dennis Anikin 2016
//
// Quick disclaimer:
//
// This test shows 500K-1000K transactions per second on one CPU core
// and 600K-1600K queries per second on one CPU core.
//
// Based on the $6.57 per-month-price for the AWS t2.micro instance we can afford the tremendous number of 630bln queries for just $1
//