Coder Social home page Coder Social logo

dotfiles's Issues

zshrc

I want to get the same autocomplete everything experience, can you please share you .zshrc as well? Thanks ๐ŸŽ‰

How do I get set-up with your ESLint globally?

I'm trying to set-up my .eslintrc globally to match your dotfiles, however, I'm running into an issue with VSCode where it says: Cannot find module 'eslint-config-prettier/react' Referenced from: /Users/matthewblode/.eslintrc. Thank you for your help and I'm loving the Sick Fits tutorial! #BigPoop

Request: VSCode CSS

Hi Wes! Would you be willing to share the VSCode CSS file that's referenced in your vscode settings? Specifically struggling to figure out the customizations around what gets italicized and what doesn't.

Thanks!

Error Color

Hello.

How to change my errors to look like yours ?

myError

wesError

Best regards, Max :).

Import Cost

I think you use the Import Cost extension, or something else to show js sizes in VS Code. Thanks!

Fake Name function always returns "Johnson" for last name

Typo in your "fake name" function -- Array.at() is same as Array.at(0) so last name is always Johnson...

CURRENT:

function makeName() {
  const first = ['James', 'Robert', 'John', 'Michael', 'David', 'William', 'Richard', 'Joseph', 'Thomas', 'Charles', 'Christopher', 'Daniel', 'Matthew', 'Anthony', 'Mark', 'Donald', 'Steven', 'Paul', 'Andrew', 'Joshua', 'Kenneth', 'Kevin', 'Brian', 'George', 'Timothy', 'Ronald', 'Edward', 'Jason'];

  const last = ['Johnson', 'Williams', 'Brown', 'Jones', 'Miller', 'Davis', 'Garcia', 'Rodriguez', 'Wilson', 'Martinez', 'Anderson', 'Taylor', 'Thomas', 'Hernandez', 'Moore', 'Martin', 'Jackson', 'Thompson',];
  return `${first.at(Math.random() * first.length)} ${last.at()}`;
}

FIXED:

function makeName() {
  const first = ['James', 'Robert', 'John', 'Michael', 'David', 'William', 'Richard', 'Joseph', 'Thomas', 'Charles', 'Christopher', 'Daniel', 'Matthew', 'Anthony', 'Mark', 'Donald', 'Steven', 'Paul', 'Andrew', 'Joshua', 'Kenneth', 'Kevin', 'Brian', 'George', 'Timothy', 'Ronald', 'Edward', 'Jason'];

  const last = ['Johnson', 'Williams', 'Brown', 'Jones', 'Miller', 'Davis', 'Garcia', 'Rodriguez', 'Wilson', 'Martinez', 'Anderson', 'Taylor', 'Thomas', 'Hernandez', 'Moore', 'Martin', 'Jackson', 'Thompson',];
  return `${first.at(Math.random() * first.length)} ${last.at(Math.random() * last.length)}`;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.