create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| pm list packages -f |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| #!/bin/bash | |
| # Bash script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04 | |
| # Inspired from https://gist.github.com/faleev/3435377 | |
| # Remove any existing packages: | |
| sudo apt-get -y remove ffmpeg x264 libav-tools libvpx-dev libx264-dev | |
| # Get the dependencies (Ubuntu Server or headless users): | |
| sudo apt-get update |
| -- Please set your vpn connection name and password here | |
| set VPNName to "VPN name" | |
| set VPNpassword to "VPN password" | |
| tell application "System Events" | |
| tell current location of network preferences | |
| set VPNService to service VPNName | |
| end tell | |
| set isConnected to connected of current configuration of VPNService |
| #!/usr/bin/env python | |
| from __future__ import print_function | |
| import rospy | |
| from concurrent.futures import ThreadPoolExecutor | |
| class AsyncServiceProxy(object): | |
| """Asynchronous ROS service proxy |
#! /bin/bash
#! events.sh
docker events --filter 'event=start' --filter 'event=stop' | while read
do
echo "YO!"
done
| ### | |
| # Proxmox or other server kernel params cheap tune and secure. | |
| # Try it if you have heavy load on server - network or memory / disk. | |
| # No harm assumed but keep your eyes open. | |
| # | |
| # @updated: 2020-02-06 - more params used, adjust some params values, more comments on params | |
| # | |
| ### NETWORK ### |
| static string panel1_name = "Text panel office 1"; | |
| static string panel2_name = "Text panel office 2"; | |
| static string panel3_name = "Text panel office 3"; | |
| static string panel4_name = "Text panel office 4"; | |
| static string reactors_name = "Reactors"; | |
| static string batteries_name = "Batteries"; | |
| static string ingot_type = "VRage.Game.MyObjectBuilder_Ingot"; | |
| static string ore_type = "VRage.Game.MyObjectBuilder_Ore"; | |
| public struct ItemType { |
| #---------------------------------------------- | |
| #--- Author : Ahmet Ozlu | |
| #--- Mail : [email protected] | |
| #--- Date : 21st September 2017 | |
| #---------------------------------------------- | |
| import face_recognition | |
| import cv2 | |
| import os | |
| import create_csv |