Skip to content

Instantly share code, notes, and snippets.

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

Sean Modd seanmodd

🏠
Working from home
View GitHub Profile
@seanmodd
seanmodd / html-to-markdown.md
Created December 14, 2023 21:59
FabEx_FMDB_V4

FabEx_FMDB_V4.fmp12

Overview

Tables

13

@seanmodd
seanmodd / FavShellCommands.md
Last active September 29, 2023 01:10
FavShellCommands

Fav Commands:

  • Use l = 'ls -lah' to list all directory contents, show all file types, show their sizes in readable human format
  • Use fzf --query "keybindings" to list all files that have the word keybindings in it

Other important commands to look up:

  • Look up fuzzy search from terminal
  • Find out how to exclude certain folders from fzf
  • What is the difference between demonu and fzf?
  • https://github.com/junegunn/fzf
  • use scriptable to automate iphone actions

Model: GPT-4

1 / 1

I work for FabExchange as a Sales Associate for their Device Acquisitions team. Please tell me what you believe FabExchange does, I'll then add more to teach you about their core product offerings and then you can help me.

1 / 1

FabExchange is a company that specializes in the acquisition, sales, and valuation of used semiconductor manufacturing equipment, as well as other related equipment and assets in the high-tech industries. They provide comprehensive services to help clients manage their surplus or idle equipment, optimize asset utilization, and maximize the value of their investments.

Best Navigation Shortcuts

Advanced Controls

Code block navigation

Control Shortcut
Move to code block above ctrl + ⌥ + up
Move to code block below ctrl + ⌥ + down
Component navigation

@seanmodd
seanmodd / keybindings.json
Created March 15, 2022 21:25
VS Code Keyboard Shortcuts Personalized!!
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "shift+cmd+0",
"command": "quokka.installQuokkaPlugin"
},
{
"key": "shift+cmd+9",
"command": "quokka.installMissingPackageToProject"
},
@seanmodd
seanmodd / DefaultKeybindings.json
Created March 15, 2022 21:25
VS Code Keyboard Shortcuts
// Override key bindings by placing them into your key bindings file.
[
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
"when": "inZenMode" },
{ "key": "shift+escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "editor.closeTestPeek",
"when": "testing.isInPeek && !config.editor.stablePeek || testing.isPeekVisible && !config.editor.stablePeek" },

Redux Toolkit Actions

rdac - Redux Toolkit: Create Action (Also used with createReducer in the last example below... not sure where/when to utilize though)

import { createAction } from '@reduxjs/toolkit';

const name = createAction('action/type');

action - Redux: Dispatch Action (Preferred Async Await approach)

Functional Components

rsf - React Stateless Function

import React from 'react';

function BugsList(props) {
  return (
    <div>

 
@seanmodd
seanmodd / redux.md
Last active February 2, 2022 19:54

Redux Actions

rdac - Redux: Action Creator (Preferred approach)

export const actionCreator = (payload) => {
  return {
    type: 'ACTION_TYPE',
    payload
  }
};
@seanmodd
seanmodd / ReduxSnippets.md
Last active January 31, 2022 08:26
Amazing Redux Snippets! Must study...

Snippets To Remember

action - Redux actionCreator

export const  = () => {
  return async dispatch => {
    try {
    
    } catch (e) {}
  };
};