A collection of Git extensions to provide high-level repository operations for Vincent Driessen's branching model.
- XML GET
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET "http://hostname/resource"- JSON GET
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET "http://hostname/resource"- JSON PUT
| Key/Command | Description |
|---|---|
| Tab | Auto-complete files and folder names |
| Ctrl + A | Go to the beginning of the line you are currently typing on |
| Ctrl + E | Go to the end of the line you are currently typing on |
| Ctrl + U | Clear the line before the cursor |
| Ctrl + K | Clear the line after the cursor |
| Ctrl + W | Delete the word before the cursor |
| Ctrl + T | Swap the last two characters before the cursor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| font-family: | |
| system-ui, | |
| -apple-system, | |
| BlinkMacSystemFont, | |
| "Segoe UI", Roboto, | |
| "Helvetica Neue", | |
| Arial, | |
| sans-serif, | |
| "Apple Color Emoji", |
I’m Joshua Pekera. I am a product designer with a penchant for code, interaction design, and typography. I love to design things that connect people to the world around them and make life more enjoyable.
I have been sketching, designing and coding across web and mobile over the last 10 years. My skillset is rather diverse and so are the tools I use. I feel as comfortable using a commandline as I do Sketch or Photoshop. Here are some of the design and prototyping tools I use regularly:
- Framer.js
- Quartz Composer
- Principle
- Flinto
- Pixate
- Sketch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <nav class="navigation-bar is-visible" data-nav-status="toggle"> | |
| <ul> | |
| <li>Home</li> | |
| <li>About</li> | |
| <li>Services</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title> | |
| CSS Transitions And Class Timing | |
| </title> | |
| <style type="text/css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use Animate.css | |
| // http://daneden.github.io/animate.css/ | |
| var animateName = 'animated insertAnimation' | |
| $(document).ready(function(){ | |
| $('#button').click(function(){ | |
| $('.main').addClass(animateName).one(animateEnd, function(){ | |
| $(this).removeClass(animateName).css({}); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Variables | |
| // -------------------------------------------------- | |
| //== Colors | |
| // | |
| //## Gray and brand colors for use across Bootstrap. | |
| @gray-base: #000; | |
| @gray1: lighten(@gray-base, 6.5%); // #111 |