create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#!/bin/bash | |
# | |
# If run inside a git repository will return a valid semver based on | |
# the semver formatted tags. For example if the current HEAD is tagged | |
# at 0.0.1, then the version echoed will simply be 0.0.1. However, if | |
# the tag is say, 3 patches behind, the tag will be in the form | |
# `0.0.1+build.3.0ace960`. This is basically, the current tag a | |
# monotonically increasing commit (the number of commits since the | |
# tag, and then a git short ref to identify the commit. | |
# |
/* | |
* Copyright (c) 2017 Emil Davtyan | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including | |
* without limitation the rights to use, copy, modify, merge, publish, | |
* distribute, sublicense, and/or sell copies of the Software, and to | |
* permit persons to whom the Software is furnished to do so, subject to | |
* the following conditions: |
cd repository | |
git checkout --orphan orphan_name | |
git rm -rf . | |
rm '.gitignore' | |
echo "#Title of Readme" > README.md | |
git add README.md | |
git commit -a -m "Initial Commit" | |
git push origin orphan_name |
sudo add-apt-repository ppa:ubuntu-lxc/lxd-stable | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
sudo apt-get install golang | |
# Usually this is good to install golang, but alas the apt-get repo is usually out of sync with the latest. |
apt-get update && apt-get install -y aptitude git lxc-utils zfsutils-linux netfilter-persistent sysstat | |
# find the partition ID that is linked to the storage serial number. | |
# This will prevent from losing the partition if disk mapping changes | |
ls -l /dev/disk/by-id/ | grep sda6 | |
zpool create -f zdata /dev/disk/by-id/wwn-0x600507604092b628236df4851535cef5-part6 | |
## Fixate internal IP address of the container | |
systemctl stop lxc-net | |
sed -i -e 's,^.*LXC_DHCP_CONFILE,LXC_DHCP_CONFILE,' /etc/default/lxc-net |
// Copyright (c) 2018 HarryR | |
// License: LGPL-3.0+ | |
pragma solidity ^0.5.0; | |
/** | |
* Implements MiMC-p/p over the altBN scalar field used by zkSNARKs | |
* | |
* See: https://eprint.iacr.org/2016/492.pdf | |
* |
using UnityEditor.Build; | |
using UnityEditor.Build.Reporting; | |
using UnityEngine; | |
using UnityEditor.TestTools.TestRunner.Api; | |
public class ResultCollector : ICallbacks | |
{ | |
public ITestResultAdaptor Result { get; private set; } | |
public void RunFinished(ITestResultAdaptor result) |