Skip to content

Instantly share code, notes, and snippets.

View bsantosh909's full-sized avatar

Santosh Bhandari bsantosh909

View GitHub Profile
@daliborgogic
daliborgogic / default.vue
Last active October 16, 2020 17:59
Vantablack? Nuxt.js simple theme switch
<script>
export default {
computed: {
theme () {
const [color, backgroundColor] = this.$store.state.theme
return {
'--color': color,
'--background-color': backgroundColor
}
}
@corysimmons
corysimmons / theme-switcher.html
Created July 29, 2017 23:41
Vue theme switcher
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/reeeset">
<script src="https://unpkg.com/vue"></script>
<style>
body {
padding: 3rem;
font-family: avenir;
-webkit-font-smoothing: antialiased;
@deanrather
deanrather / Github Web Hosting.md
Last active October 15, 2025 10:42
Free Hosting on GitHub

Free Hosting on GitHub

This guide will take you from zero webserver knowledge, to having your own free site hosted on GitHub. The only non-free bit is registering a domain name, which can be as cheap as $5/year.

This guide uses CrazyDomains as the Registrar, FreeDNS as the DNS, and GitHub as the Webserver.


1) Domain Registration and Setup

@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">