Skip to content

Instantly share code, notes, and snippets.

View Zoybzo's full-sized avatar
💭

Zoybzo Zoybzo

💭
  • Northeastern University
View GitHub Profile
@tomscytale
tomscytale / ExampleView.vue
Created February 2, 2023 12:07
Shim library allowing namespaced vuex stores to be easily used in Vue3
<script setup lang="ts">
import Loading from '@/components/Loading.vue';
import { computed, onMounted } from 'vue';
import { mapActions, mapState } from '@/store/stateLib';
const { loading, items } = mapState('page');
const { loadItems } = mapActions('page');
const page = computed(() => {
const path = route.path.replace(/^\//, '');
@allenyllee
allenyllee / reverse_sshfs.sh
Created November 8, 2017 03:53
reverse sshfs
#!/bin/bash
##/*
## * @Author: AllenYL
## * @Date: 2017-11-08 11:37:31
## * @Last Modified by: [email protected]
## * @Last Modified time: 2017-11-08 11:37:31
## */
#
@roachhd
roachhd / README.md
Last active December 13, 2025 18:36
Basics of BrainFuck

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

BrainFuck Programming Tutorial by: Katie

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

INTRODUCTION