Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Last active May 17, 2024 05:06
Show Gist options
  • Select an option

  • Save wilmoore/b790cf40ca7fb1f8ee46ebd94b990097 to your computer and use it in GitHub Desktop.

Select an option

Save wilmoore/b790cf40ca7fb1f8ee46ebd94b990097 to your computer and use it in GitHub Desktop.
Personal Brand :: Social Media :: LinkedIn :: Newsletter :: ShowerThought :: Editions :: Ideas

Personal Brand :: Social Media :: LinkedIn :: Newsletter :: ShowerThought :: Editions :: Ideas

⪼ Made with 💜 by Polyglot.

related
const NodeB = {
  data: "NodeB",
  next: null
};

const NodeA = {
  data: "NodeA",
  next: NodeB,
};

console.assert(NodeA.next.data === NodeB, "%o", { NodeA, NodeB });
AI Related
  • The AI Assisted Software Development Guide
  • Models, Embeddings & Batches: From Pilot to Production with Enterprise GenAI
  • A Recipe for Fine-tuning with Direct Preference Optimization
  • Building Something Real with Retrieval Augmented Generation (RAG)
  • Synthetic Data and Model Tracing in an Enterprise AI Environment
  • WANIX: A WebAssembly Operating and Development Environment
  • Securing Generative AI in the Enterprise: Overcoming the Data Privacy Hurdle
related
Code Brew (codebrew.dev)

Your first day as an everyday developer ...

  • why learn to code using javascript ... why not python?
  • let uniqueArray = [...new Set([5,5,2,2,2,4,2])]; // [5,2,4]
  • Setup Vim (spaces, tabs, tab stop, etc)
  • $SHELLS (fish, bash, sh, csh)
  • cd: tip => when you use the cd command with projects, use the fully qualified path so it's easy to autocomplete later to go directly to the command. cd ~ can also be used a a prefix before using the up arrow to cycle through prefix matches. You can also use $CDPATH
  • vi, vim, neovim, keybindings
  • vscode
  • tmux
  • iterables in JavaScript
  • Environment Variables
  • fetch('/graphql', { body: JSON.stringify({ query: '{ foo { bar baz } }' }) })
  • Loops in JavaScript (while, for, do, for...in, for...of, forEach, map)
  • Programatically Sending Emails
  • Email Plus Addressing: To: "wil.moore+oregon@wilmoore.com" <wil.moore+oregon@wilmoore.com>
  • Makefile
  • Containers
  • JavaScript/TypeScript Function Signatures, Parameters, Positional Arguments, Object Destructured Argument)
  • Containers :: Docker :: Plugins
  • JavaScript :: Array :: Reduce (How Array.prototype.reduce works)
  • DNS, Domain Names
  • NodeJS :: NPM :: workspaces
  • date -v +1y +"%Y-%m-%dT%H:%M:%SZ" (add a year)
  • NodeJS :: NPM :: Link
  • If you don't know what to do, build a tool or write a document or diagram
  • JavaScript :: Date & Time
  • SQL (DDL, DML), SELECT, INSERT, JOIN/REFERENCES
  • Intro To Computer Vision
  • Exit Signals
  • Writing a test suite
  • eCards
image image

The complete roadmap for frontend development <>

Ever wanted a step-by-step guide for learning frontend engineering? This is for you.

I often get asked questions like:

  • ...
  • ...
  • ...

Even when I was ... I always wondered waht else I needed to learn to get to the next level in my engineering skills.

Unfortunately ... many of us don't know where to start, or we get overwhelmed/confused taking courses and watching endless youtube videos.

Here is a list of 26 skills you'll need to develop as you pursue mastering frontend development.


image image

LinkedIn Niche & Strategy

⪼ Made with 💜 by realpolyglot.com

  • How I stay organized while taking online courses
  • How I publish JavaScript packages
  • How I come up with ideas for chrome extensions
  • Why I workout everyday
  • Why "Technical Jargon" is good
  • How I attract the attention of recruiters and hiring managers
  • How I start every chrome extension --> chrome extension starter template
  • How I got good at data structures and algorithms
  • What I look for in a new tech job
  • How I structure my LinkedIn profiles for maximum impact
  • Why I take a walk every morning, even if I wake up late
  • Why I plan out my entire day, down to the half hour
  • How I structure my GitHub profile for maximum visibility

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment