Eduard Jacko

@kresli
0 Followers
5 Following
12 Posts
@expert @Waterfox im using #duckduckgobrowser and I’m super happy with the privacy 🤷‍♂️

#VisualStudioCode now has a multi-file diff view. Just click the "View Changes" button in the Source Control pane instead of clicking on each individual file 😎 An experience more like viewing a PR on GitHub. #VSCode #code

More info: https://code.visualstudio.com/updates/v1_86#_review-multiple-files-in-diff-editor

Visual Studio Code January 2024

Learn what is new in the Visual Studio Code January 2024 Release (1.86)

@Lilmikesf that’s why I’m using duck duck go browser and search engine 🤷‍♂️
@betalogue I have M3 Max 16” 2023. Did you try clean install without any additional software?
@betalogue never seen this issue on my Mac so far
@Creatortray fully understand your point. I did the same as I wanted to learn not just how but why things works as it works 👍
@rauschma typescript already includes limiting such https://www.typescriptlang.org/tsconfig#allowUnusedLabels . However I see your point. Shouldn’t be this an eslint future then?
TSConfig Reference - Docs on every TSConfig option

From allowJs to useDefineForClassFields the TSConfig reference includes information about all of the active compiler flags setting up a TypeScript project.

@rauschma why is this not part of typescript it self is a mystery to me 🤷‍♂️
@Creatortray I suggest you to take a look at https://vitejs.dev . It help you setup project very quickly. If I may suggest don’t think about folder structure too much. Is fine to put everything in single file and split it later. Focus on output not on project structure. Good luck!
Vite

Next Generation Frontend Tooling

@minkiu ah I see. Well I would expect “books” to be a dictionary/list of books which suits well. Library sounds more like a service to me so this reads better `library.addBook(book)` then `books.addBook(book)` as I would expect direct mutation against the list like `books.add(book)`. Honestly there is not a right answer as naming is opinionated. 🤷‍♂️