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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/Color Highlighter/themes/base16-ocean.dark.tmTheme", | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_face": "Source Code Pro", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 12, |
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
{ | |
// "bold_folder_labels": true, | |
// "color_scheme": "Packages/User/Color Highlighter/themes/base16-ocean.dark.tmTheme", | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_face": "Source Code Pro", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 12, |
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
[ | |
{"title":"AGS Script"}, | |
{"title":"Alpine Abuild"}, | |
{"title":"Ant Build System"}, | |
{"title":"API Blueprint"}, | |
{"title":"C2hs Haskell"}, | |
{"title":"Cap'n Proto"}, | |
{"title":"ColdFusion CFC"}, | |
{"title":"Common Lisp"}, | |
{"title":"Component Pascal"}, |
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
[dropcap style="dropcap_style1" textcolor="" background="" fontweight=""] content [/dropcap] | |
[dropcap style="dropcap_style2" textcolor="" background="" fontweight=""] content [/dropcap] | |
[youtube_embed]link[/youtube_embed] | |
[vimeo_embed]link[/vimeo_embed] | |
[youtube_playlist]link[/youtube_playlist] |
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
3Box is a social profiles network for web3. This post links my 3Box profile to my Github account! | |
✅ did:muport:QmejqJtmw3ewgY2ZeKPntN6Zhc3GTCtkya759nkmH8cmu5 ✅ | |
Create your profile today to start building social connection and trust online. https://3box.io/ |
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
<style> | |
body { | |
max-width: 500px; | |
margin: 1em auto; | |
padding: 2em; | |
font-family: monospace; | |
} | |
.btn { | |
color: white; |
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
<style> | |
body { | |
max-width: 500px; | |
margin: 1em auto; | |
padding: 2em; | |
font-family: monospace; | |
} | |
.btn { | |
color: white; | |
display: inline-block; |
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
Verifying my Blockstack ID is secured with the address 1M6un9f7C3gUBP7jNHbX6eiZ3sRYqEEupg https://explorer.blockstack.org/address/1M6un9f7C3gUBP7jNHbX6eiZ3sRYqEEupg |
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
<h2>This is a gist for updates</h2> | |
<p>Hello again from the Gitcoin team – here’s what the core team and our community have been busy working on in the last month.</p> | |
<p>A user directory, inviting contributors to bounties, and more. We’re back to let you in on new features to help you power your workflow and grow open source!</p> | |
<h2>User Directory</h2> | |
<p>In April we spent some time thinking about user discovery and ways to connect funders to coders. Under the explore menu, you’ll find the user directory where it’s easy to search for contributors by skills, bounties completed, leaderboard rank and star ratings. We’ve also included a one click invite contributor to a bounty which pulls up issues that are currently funded. Give it a try here!</p> | |
<h3>Images</h3> | |
<img src="https://user-images.githubusercontent.com/1358093/62988432-f1273980-be33-11e9-80e6-cc6367636c63.png"> |
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
var getFav = fetchData('api/v0.1/favorites/bounty', 'GET') | |
$.when(getFav).then((response, status, statusCode) => { | |
console.log(response, status, statusCode) | |
}) | |
var postFav = fetchData('api/v0.1/favorites/user/2', 'POST') | |
$.when(postFav).then((response, status, statusCode) => { | |
console.log(response, status, statusCode) | |
}) |