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
Verifying my Blockstack ID is secured with the address 1M6un9f7C3gUBP7jNHbX6eiZ3sRYqEEupg https://explorer.blockstack.org/address/1M6un9f7C3gUBP7jNHbX6eiZ3sRYqEEupg |
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
<style> | |
body { | |
max-width: 500px; | |
margin: 1em auto; | |
padding: 2em; | |
font-family: monospace; | |
} | |
.btn { | |
color: white; | |
display: inline-block; |
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
<style> | |
body { | |
max-width: 500px; | |
margin: 1em auto; | |
padding: 2em; | |
font-family: monospace; | |
} | |
.btn { | |
color: white; |
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
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 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 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 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 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 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
<link rel="import" href="../cool-clock/cool-clock.html"> | |
<link rel="import" href="../ace-element/ace-element.html"> | |
<link rel="import" href="../notification-elements/notification-alert.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
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
chown www-data:www-data -R * # Let apache be owner | |
find . -type d -exec chmod 755 {} \; # Change directory permissions rwxr-xr-x | |
find . -type f -exec chmod 644 {} \; # Change file permissions rw-r--r-- |