display:flex | inline-flexflex-direction:row | row-reverse | column | column-reverseflex-wrap:nowrap | wrap | wrap-reversejustify-content:flex-start | flex-end | center | space-between | space-aroundalign-items:flex-start | flex-end | center | baseline | stretchalign-content:flex-start | flex-end | center | space-between | space-around | stretch
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
| /* | |
| -------------------------------- | |
| imgur Upload | |
| -------------------------------- | |
| + https://github.com/pinceladasdaweb/imgur-upload | |
| + version 1.1 | |
| + Copyright 2014 Pedro Rogerio | |
| + Licensed under the MIT license | |
| + Documentation: https://github.com/pinceladasdaweb/imgur-upload |
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
| ul.tree, ul.tree ul { | |
| list-style: none; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| ul.tree ul { | |
| margin-left: 10px; | |
| } | |
| ul.tree li { | |
| margin: 0; |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.
If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.
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
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
| /** | |
| * Convert a Date object to a string, according to W3C date time format: yyyy-mm-ddThh:ii:ss+zz:zz | |
| * | |
| * @memberOf Date | |
| * @access public | |
| * @license MIT | |
| * @copyright 2013 Tristan Lins | |
| * @author Tristan Lins <[email protected]> | |
| * @link https://gist.github.com/tristanlins/6585391 | |
| */ |
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
| function upload(file) { | |
| var imageLink =""; | |
| /* Is the file an image? */ | |
| if (!file || !file.type.match(/image.*/)) return; | |
| var fd = new FormData(); | |
| fd.append("image", file); // Append the file | |
| fd.append("key", "<Imgur API key>"); |