Skip to content

Instantly share code, notes, and snippets.

View SeyyedKhandon's full-sized avatar
😃
the only way to go fast is to go well.

SeyyedKhandon SeyyedKhandon

😃
the only way to go fast is to go well.
View GitHub Profile
@SeyyedKhandon
SeyyedKhandon / cloudSettings
Last active October 31, 2020 05:29
cloudsettings
{"lastUpload":"2020-10-31T05:29:39.512Z","extensionVersion":"v3.4.3"}
@SeyyedKhandon
SeyyedKhandon / vuex_index.ts
Created January 3, 2021 06:06
vuejs modular state management using vuex-local-storage-localforage(indexdb), vuex-persist
import Vue from "vue";
import Vuex from "vuex";
import { ChatState } from "@/types/chat";
import appConfig, { AppConfig } from "./modules/appConfig";
import appLoading, { AppLoading } from "./modules/loading";
import appOverlays, { AppOverlay } from "./modules/overlays";
import apiErrorNotificationList, {
StoreAxiosError
} from "./modules/axiosError";
@SeyyedKhandon
SeyyedKhandon / craco-scss-variables.md
Last active May 19, 2021 11:35
import variable.scss everywhere using craco
  1. yarn add @craco/craco --dev

  2. create craco.config.js at the root of your project, and put these in it

module.exports = {
  reactScriptsVersion: 'react-scripts',
  style: {
    sass: {
 loaderOptions: {
@SeyyedKhandon
SeyyedKhandon / starship.toml
Created January 22, 2023 09:29 — forked from nukopy/starship.toml
Simple theme with Starship
########################################
# prompt global settings
########################################
# document link: https://starship.rs/ja-JP/config/#%E3%83%95%E3%82%9A%E3%83%AD%E3%83%B3%E3%83%95%E3%82%9A%E3%83%88
# format = "$all"
format = """
$username\
$hostname\
$shlvl\
@SeyyedKhandon
SeyyedKhandon / Notes on TailwindCSS from Zero to Production.md
Last active February 28, 2023 08:36
Notes on TailwindCSS from Zero to Production