Skip to content

Instantly share code, notes, and snippets.

View NeniEmSu's full-sized avatar
🏠
Working from home

Emmanuel Sulku Neni NeniEmSu

🏠
Working from home
View GitHub Profile
@ddeveloperr
ddeveloperr / namecheap-netlify-dns-configuration.txt
Last active November 1, 2023 09:42
Netlify custom domain dns configuration with domain from namecheap
Please follow these steps to point your domain name from namecheap domain to the Netlify nameservers:
- Having logged into Namecheap account, go to your Domain List -> click 'Manage' next to the domain website.com -> locate the 'Nameservers' section;
- Choose ‘Custom DNS’ in the drop-down menu;
- Fill in your custom nameservers into empty lines;
4 lines in total :
dns1.p03.nsone.net
dns2.p03.nsone.net
dns3.p03.nsone.net
@package71
package71 / vue-chartjs.js
Last active February 13, 2022 08:41
Nuxt vue-chartjs
import Vue from "vue";
import {Bar, Line, mixins} from "vue-chartjs";
Vue.component("chartline", {
extends: Line,
mixins: [mixins.reactiveProp],
props: ["options"],
mounted() {
const max = Math.max(...this.chartData.datasets[0].data);
this.renderChart(this.chartData, {