A Pen by justinbasile on CodePen.
This file contains 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
/** | |
* Generated w/ http://www.gradient-scanner.com/ | |
* Based on rotated https://www.instagram-brand.com/img/instagram/bg.mast.jpg | |
* CSS enhancement by @justinbasile | |
* Default color v/ http://findguidelin.es/ | |
* Sourcing by @bonylaco @benjung @akkolad | |
* @TODO : Add of a filter for IE6-9 support purpose | |
**/ | |
background : #E12F67; /* Old browsers */ |
This file contains 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
<!-- Modify this meta for android devices : | |
@link https://developers.google.com/web/fundamentals/design-and-ui/browser-customization/theme-color --> | |
<!-- Chrome, Firefox OS and Opera --> | |
<meta name="theme-color" content="#78be20"> | |
<!-- Windows Phone --> | |
<meta name="msapplication-navbutton-color" content="#78be20"> | |
<!-- iOS Safari --> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
- http://sketchrunner.com/
- https://sketch.fordesignrs.com/plugins/paddy
- https://www.invisionapp.com/craft
- https://github.com/eddiesigner/sketch-map-generator
- https://github.com/canisminor1990/sketch-move-half-pixel
- https://github.com/herrhelms/social-artboards-sketch
- https://github.com/brandonbeecroft/Lorem-Ipsum-Plugin-for-Sketch
This file contains 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
#!/usr/bin/env python | |
from __future__ import print_function | |
import datetime | |
import feedparser | |
import time | |
import os | |
import sys | |
from six.moves import urllib |
This file contains 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
- Catalina : https://apps.apple.com/us/app/macos-catalina/id1466841314?mt=12 | |
- Mojave : https://apps.apple.com/us/app/macos-mojave/id1398502828?mt=12 | |
- High Sierra : https://apps.apple.com/us/app/macos-high-sierra/id1246284741?mt=12 | |
- Sierra : https://apps.apple.com/us/app/macos-sierra/id1127487414?mt=12 | |
- El Capitan : https://apps.apple.com/us/app/os-x-el-capitan/id1147835434?mt=12 | |
- Big Sur : https://apps.apple.com/us/app/macos-big-sur/id1526878132?mt=12 |
- Monterey : https://apps.apple.com/fr/app/macos-monterey/id1576738294?mt=12
- Catalina : https://apps.apple.com/us/app/macos-catalina/id1466841314?mt=12
- Mojave : https://apps.apple.com/us/app/macos-mojave/id1398502828?mt=12
- High Sierra : https://apps.apple.com/us/app/macos-high-sierra/id1246284741?mt=12
- Sierra : https://apps.apple.com/us/app/macos-sierra/id1127487414?mt=12
- El Capitan : https://apps.apple.com/us/app/os-x-el-capitan/id1147835434?mt=12
- Big Sur https://apps.apple.com/us/app/macos-big-sur/id1526878132?mt=12
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
This file contains 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
<div{{ attributes.addClass('container') }}> | |
{% for item in items %} | |
{% set zebra_class = loop.index0 is odd ? 'zebra-odd' : 'zebra-even' %} | |
<div{{ item.attributes.addClass(zebra_class) }}> | |
{{ item.content }} | |
</div> | |
{% endfor %} | |
</div> |
OlderNewer