dnf install snapd
snap install <snap>
snap find <search>
snap list
#https://www.google.com/search?q=smbios.reflecthost&oq=smbios.r&aqs=chrome.0.0j69i57j0l4.2850j0j7&sourceid=chrome&ie=UTF-8 | smbios.reflecthost - Google Search | |
#http://www.bitcon.be/how-to-install-an-hp-branded-windows-os-as-a-virtual-server/ | How to install an HP branded Windows OS as a virtual server | BITCON - IT consultants | |
#https://communities.vmware.com/thread/162241?tstart=0 | This system is not supported platform |VMware Communities | |
#https://superuser.com/questions/199906/how-to-edit-bios-information-for-a-virtual-machine-in-vmware | How to edit BIOS information for a virtual machine in VMWare? - Super User | |
#http://www.insanelymac.com/forum/topic/292170-how-to-spoof-real-mac-in-vmware/ | How to spoof real Mac in VMware - Multi-booting and Virtualisation - InsanelyMac Forum | |
Method 1: edit VMX file for the specific VM | |
#add this line | |
SMBIOS.reflectHost = TRUE |
__author__ = 'schwa' | |
import os | |
import subprocess | |
import glob | |
from github import Github # pip install PyGithub | |
from bitbucket.bitbucket import Bitbucket # pip install --user bitbucket-api | |
GH_USERNAME = 'jwight@mac.com' | |
GH_PASSWORD = '1234' |
GPG subkeys marked with the "authenticate" capability can be used for public
key authentication with SSH. This is done using gpg-agent which, using the
--enable-ssh-support
option, can implement the agent protocol used by SSH.
A working gpg2 setup is required. It may be possible to use gpg 1.4 but with gpg-agent compiled from gpg2. If you are using OS X 10.9 (Mavericks) then you may find the instructions [here][1] useful.
#example for converting youtube video to mp3 | |
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 https://www.youtube.com/watch\?v\=u-X3q6CmsKc | |
ffmpeg -v 5 -y -i Mr.\ Desktop\ \&\ Mr.\ Server\ Episode\ 5\ _\ Linux\ Networking\ \&\ Connect2SSH-u-X3q6CmsKc.webm -acodec libmp3lame -ac 2 -ab 192k MrServerMrDesktop.mp3 | |
-- | |
#requires ffmpeg | |
youtube-dl --extract-audio --audio-format mp3 'https://www.youtube.com/watch?v=u-X3q6CmsKc' |
# __ _ _ | |
# / _|_ _ _ __ ___| |_(_) ___ _ __ ___ | |
# | |_| | | | '_ \ / __| __| |/ _ \| '_ \/ __| | |
# | _| |_| | | | | (__| |_| | (_) | | | \__ \ | |
# |_| \__,_|_| |_|\___|\__|_|\___/|_| |_|___/ | |
# | |
# ▓▓▓▓▓▓▓▓▓▓ | |
# ░▓ author ▓ cirrus <cirrus@archlinux.info> | |
# ░▓ code ▓ https://gist.github.com/cirrusUK | |
# ░▓ mirror ▓ http://cirrus.turtil.net |
HyperFido - FIDO U2F Security Key | |
By Jonathan Williams | |
https://www.amazon.com/review/R1MX4254RVC97T/ref=cm_cr_dp_cmt?ie=UTF8&ASIN=B00WIX4JMC&channel=detail-glance&nodeID=541966&store=pc#wasThisHelpful | |
This HyperFIDO U2F key is small enough to keep in your pocket or purse at all times and never worry about it. It worked great after getting a fast reply from HyperSECU support about the linux udev rules needed (I don't use windows). I had it set up very quickly with Google services and it worked flawlessly. Hopefully, more services will support U2F in the future. | |
If you are wondering, here are the udev rules their awesome support recommended. I created a file /etc/udev/rules.d/96-hyperfido.rules and used the first example below because thankfully, I do not have to deal with systemd. If you are unfortunate enough to have to use systemd, please use the second example. | |
Example 1 |
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target | |
systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target |
#!/usr/bin/env bash | |
VERSION_PATTERN="([0-9]+\.[0-9]+\.[0-9]+)" | |
case "${1}" in | |
"phpstorm") | |
TOOL_NAME="PhpStorm" | |
INSTALL_DIR="/opt/phpstorm" | |
case "${2}" in | |
"eap") |
#!/bin/bash | |
# installation jetbrains | |
j_url="https://data.services.jetbrains.com/products/download" | |
tmp_dir="$HOME/tmp_jb" | |
install_dir="/opt" | |
if [ "$(whoami)" != "root" ] | |
then | |
echo "Sorry, you are not root." | |
exit 1 | |
fi |