VS Code Snippet Variables

Contents You should use VS Code snippets more than you do and that’s not just an opinion. The Snippet Syntax section of the VS Code snippet docs is a minefield of knowledge bombs. Common Transformations "Snippet Test": { "scope": "dart", "prefix": "foolsTest", "body": [ "${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/}", "${TM_FILENAME_BASE/(.*)/${1:/camelcase}/}", "${TM_FILENAME_BASE/(.*)/${1:/upcase}/}", "${TM_FILENAME_BASE/(.*)/${1:/downcase}/}", "${TM_FILENAME_BASE/(.*)/${1:/capitalize}/}", ], "description": "Snippet Test" } For the file test_test.dart, this outputs: TestTest testTest TEST_TEST test_test Test_test Step by Step Placeholders A placeholder in VS Code is a “tabstop” that appears in the rendered snippet. A tabstop is simply a cursor position within a snippet body. ...

January 11, 2025 · 4 min · 749 words · Me

Make SearchGPT Default Search Engine on Microsoft Edge

Just the Steps Open settings Search for “address bar” (Privacy, search, and services -> Address bar and search) Select “Manage search engines” Select “Add” Fill in the fields with the following information: Search engine: SearchGPT Shortcut: @ai URL with %s in place of query: https://chatgpt.com/?q=%s&hints=search Click “Save” Click the three dots next to SearchGPT and select “Make default” If you don’t want to set SearchGPT as your default search engine, you can still use it by typing “@ai” in the address bar followed by your search query. ...

November 1, 2024 · 1 min · 87 words · Me

Make Perplexity Default Search Engine on Microsoft Edge

Just the Steps Open settings Search for “address bar” (Privacy, search, and services -> Address bar and search) Select “Manage search engines” Select “Add” Fill in the fields with the following information: Search engine: Perplexity Shortcut: @ai URL with %s in place of query: https://perplexity.ai/search/new?q=%s Click “Save” Click the three dots next to Perplexity and select “Make default” If you don’t want to set Perplexity as your default search engine, you can still use it by typing “@ai” in the address bar followed by your search query. ...

October 31, 2024 · 1 min · 87 words · Me

Flutter Efficiently

Flutter Newbies Start Here If you’re new to Flutter development, I’d recommend starting with something a little less involved. I used this book to learn the Flutter language: Beginning Flutter: A Hands On Guide to App Development And this one to get started with mobile app development: Android Studio 3.4 Development Essentials — Kotlin Edition: Developing Android Apps Using Android Studio 3.4, Kotlin and Jetpack …And Let’s Go Good morning, afternoon, and evening to all the Flutter developers in the world and welcome to the blog post that’s going to make you love Google’s cross-platform development language more than you already do! For those of you that aren’t familiar with the number one rising language for mobile development, get familiar. This language is perfect for creating beautiful mobile applications for Android, iOS, and web, and it has a community that is expanding like California wildfires. ...

September 17, 2022 · 7 min · 1429 words · Me