Skip to content

Instantly share code, notes, and snippets.

View blogcraft's full-sized avatar
😁

Gerardo Buenrostro González blogcraft

😁
  • Santiago, Chile
View GitHub Profile
@blogcraft
blogcraft / designer.html
Last active August 29, 2015 14:13
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<link rel="import" href="../core-icon/core-icon.html">
@blogcraft
blogcraft / rfc7231UrlGenerator.cs
Created April 4, 2022 15:08
Genera una URL a la documentación del Internet Engineering Task Force (IETF) según el HTTP Status Code
public static readonly Dictionary<int, string> RFC7231 = new Dictionary<int, string> {
{ 400, "6.5.1" },
{ 402, "6.5.2" },
{ 403, "6.5.3" },
{ 404, "6.5.4" },
{ 405, "6.5.5" },
{ 406, "6.5.6" },
{ 408, "6.5.7" },
{ 409, "6.5.8" },
{ 410, "6.5.9" },
@blogcraft
blogcraft / extra-styles.css
Created June 10, 2023 03:49
Float Plane Darkmode
@media (prefers-color-scheme: dark){
.route-wrapper {
background-color: #161515 !important
}
.title-text {
color: white !important
}
.channel-title{
color: white !important
}