Skip to content

Instantly share code, notes, and snippets.

View barfi's full-sized avatar
💭
oh my...

Mr. Barfi barfi

💭
oh my...
View GitHub Profile
@barfi
barfi / github_bitbucket_multiple_ssh_keys.md
Created January 30, 2023 14:57 — forked from yinzara/github_bitbucket_multiple_ssh_keys.md
Managing SSH keys and repo cloning using multiple accounts on GitHub and BitBucket

Why Multiple SSH keys?

There are numerous reasons you may need to use multiple SSH keys for accessing GitHub and BitBucket

You may use the same computer for work and personal development and need to separate your work.

When acting as a consultant, it is common to have multiple GitHub and/or BitBucket accounts depending on which client you may be working for.

You may have different projects you're working on where you would like to segregate your access.

@barfi
barfi / transitions.scss
Created April 1, 2018 01:53 — forked from vieron/transitions.scss
Sass-mixins-for-vendor-prefixed transitions-including-properties
@function prefix($property, $prefixes: (webkit moz o ms)) {
$vendor-prefixed-properties: transform background-clip background-size;
$result: ();
@each $prefix in $prefixes {
@if index($vendor-prefixed-properties, $property) {
$property: -#{$prefix}-#{$property}
}
$result: append($result, $property);
}
@return $result;
@barfi
barfi / meta-tags.md
Created March 28, 2018 22:32 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@barfi
barfi / README.md
Created March 26, 2018 03:01 — forked from hofmannsven/README.md
My simply Git Cheatsheet