Skip to content

Instantly share code, notes, and snippets.

View tarikakyol's full-sized avatar

tarik tarikakyol

  • Qonqord
View GitHub Profile
#!/bin/sh
set -e
# Docker CE for Linux installation script
#
# See https://docs.docker.com/engine/install/ for the installation steps.
#
# This script is meant for quick & easy install via:
# $ curl -fsSL https://get.docker.com -o get-docker.sh
# $ sh get-docker.sh
#
@tarikakyol
tarikakyol / multiple-deploy-keys-multiple-private-repos-github-ssh-config.md
Created January 17, 2022 14:40 — forked from gubatron/multiple-deploy-keys-multiple-private-repos-github-ssh-config.md
How to configure multiple deploy keys for different private github repositories on the same computer without using ssh-agent

How to configure multiple deploy keys for different private github repositories on the same computer without using ssh-agent

Let's say alice is a github.com user, with 2 or more private repositories repoN. For this example we'll work with just two repositories named repo1 and repo2

https://github.com/alice/repo1

https://github.com/alice/repo2

You need to be to pull from these repositories without entering a passwords probably on a server, or on multiple servers.

var { public } = {
_privateFunc (param) {
return param
},
public: {
func (param) {
return this._privateFunc(param)
}
{
"metadata": {
"Make": {
"value": "Canon",
"transform": {
"path": "/some/other/path/",
"type": "jpeg"
}
}
},
@tarikakyol
tarikakyol / Modal.jsx
Last active August 29, 2015 14:26
React Modal Component
var React = require('react');
var Modal = React.createClass({
propTypes: {
onClose: React.PropTypes.func,
children: React.PropTypes.element.isRequired,
closeOnEsc: React.PropTypes.bool,
closeOnOutsideClick: React.PropTypes.bool
},