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
| export const colors = { | |
| black: '#000', | |
| white: '#fff', | |
| rose: { | |
| '50': '#fff1f2', | |
| '100': '#ffe4e6', | |
| '200': '#fecdd3', | |
| '300': '#fda4af', | |
| '400': '#fb7185', | |
| '500': '#f43f5e', |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am untangledev on github. | |
| * I am billgrant88 (https://keybase.io/billgrant88) on keybase. | |
| * I have a public key ASCGH4ZIOhTQC60czZ09hxTl5pxqAN7n1gtdNgDA574itgo | |
| To claim this, I am signing this object: |
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
| import com.intellij.codeInsight.folding.impl.EditorFoldingInfo | |
| import com.intellij.codeInsight.folding.impl.FoldingUtil | |
| import com.intellij.openapi.actionSystem.AnActionEvent | |
| import com.intellij.openapi.editor.Document | |
| import com.intellij.openapi.editor.Editor | |
| import com.intellij.openapi.editor.FoldRegion | |
| import com.intellij.openapi.editor.ex.FoldingModelEx | |
| import java.util.regex.Pattern |
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
| # Caddyfile | |
| localhost:2015 { | |
| startup "go run ./server.go" & | |
| root ./static_files | |
| proxy / localhost:2016 | |
| } | |
| # FILE TREE | |
| # |
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
| $ {'/'} = () ==> { | |
| return | |
| <html> | |
| <head> | |
| <title>Homepage</title> | |
| </head> | |
| <body> | |
| <p>Welcome to my Homepage.</p> | |
| </body> | |
| </html>; |