Skip to main content

2 posts tagged with "hack"

View All Tags

Β· 6 min read
Mahesh Jamdade

When building software Productivity depends on various factors, including typing speed and accuracy. However, there are also many repetitive and mundane tasks that can be automated to save time. Using plugins and extensions in your IDE can help you work more efficiently. Among these, Visual Studio Code (VSCode) is a highly customizable editor that offers a wide range of useful extensions. While the hacks mentioned in this post are specific to Flutter, they can also be applied to other programming languages and frameworks in general.

Here are the 4 ultimate vscode hacks to make you highly productive at work.

1. Shortcuts for Code Snippets​

Often when writing code, we write a lot of Boilerplate and repetitive code, Writing such code can be time-consuming, irritating, and boring too. So to deal with this vscode allows you to create code snippets that you can preconfigure and fetch by writing some preconfigured keywords.

To do this you will need to define code snippets in dart.json by pressing cmd/ctrl + shift + p -> User snippets-> dart.json

Here's a sample code snippet in dart.json to create a new widget, Notice the snippet also has $1, $2 as TabStops meaning when the code snippet is pasted the cursor (can be multiple) will be shown in order first at $1 and pressing Tab will shift to $2

"New Stateful widget" :{
"prefix": "newwidgetsample",
"body":[
"class NewPage$1 extends StatefulWidget {",
"const NewPage$1({Key? key}) : super(key: key);",
"",
"@override",
"State<NewPage$1> createState() => _NewPage$1State();",
"}",
"",
"class _NewPage$1State extends State<NewPage$1> {",
"@override",
"Widget build(BuildContext context) {",
"return $Material(",
"child: Container(",
"color: Colors.red,",
"),",
");",
"}",
"}",
"",
]
},

Here's the output of the above code snippet

New Widget Code Snippet

You can read more about creating your own code snippets here

2. Run tasks on project startup​

Often when we open a project in vscode it is very likely that we will run the application, And it is always better to get rid of the previous build output and execute a fresh build.

So we do multiple things like

  • clean the project
  • fetch dependencies
  • Run build runners (if any)
  • Start building the app

if you were to run these repetitive commands you would spend a significant amount of time or if the previous build could give an incorrect output at a time and you would spend time debugging the non-existing bug. So we can do a clean build. Even though the above tasks take a couple of seconds but imagine if you had a project which requires you to run some scripts or commands when running and if that is time-consuming then this hack can save you time. As soon as you launch the project in vscode you can just focus on the project and the chore tasks will keep running in the background.

To automate this vscode has a built-in feature to run pre-configured commands. All you have to do is create a file called tasks.json under .vscode folder at the root of your project, which is basically a script of a set of commands to do the chore work.

Here's a sample tasks.json file which is executed when you open a flutter project (Assuming this file is located at .vscode/tasks.json)

{
"version": "2.0.0",
"tasks": [
{
"type": "flutter",
"command": "flutter",
"group": "none",
"args": ["clean"],
"label": "flutter: flutter clean",
"runOptions": {
"runOn": "folderOpen"
},
"problemMatcher": []
},
{
"type": "flutter",
"command": "flutter",
"group": "build",
"dependsOn": ["flutter: flutter clean"],
"args": ["pub", "get"],
"label": "flutter: flutter pub get",
"detail": "",
"runOptions": {
"runOn": "folderOpen"
}
},
{
"type": "flutter",
"command": "flutter",
"dependsOn": ["flutter: flutter pub get"],
"args": ["build", "web"],
"group": "build",
"label": "flutter: flutter build web",
"detail": "",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}

Here's the sample output of the above tasks.json file, which runs when I open the flutter project.

*  Executing task: /Users/mahesh/Documents/flutter/bin/flutter clean
Cleaning Xcode workspace... 2,616ms
Cleaning Xcode workspace... 2,654ms
Deleting build... 0ms
Deleting .dart_tool... 7ms
* Terminal will be reused by tasks, press any key to close it.
* Executing task: /Users/mahesh/Documents/flutter/bin/flutter clean
Waiting for another flutter command to release the startup lock...
Running "flutter pub get" in vocabhub... 1,041ms
* Terminal will be reused by tasks, press any key to close it.
πŸ’ͺ Building with sound null safety πŸ’ͺ
Compiling lib/main.dart for the Web... 19.7s
* Terminal will be reused by tasks, press any key to close it.

3. Hide unwanted project files from your project​

In large projects accessing code gets pretty difficult and there are always some meta files that you rarely or never touch, You may want to hide such files when you open the project in vscode. You could do that by defining a settings.json file in your root project .vscode/settings.json

Note that this settings.json applies only for this particular project to apply these settings to all projects you need to modify the global settings.json available via command palette (cmd+shift+p)

Here's a sample settings.json file that shows folders to exclude from Explorer.

{
"files.autoSaveDelay": 3000,
"files.exclude": {
"test": true,
".*": true,
"web": false,
"build": true,
"windows": false,
"macos": false,
"ios": false
}
}

4. Using Multiple versions of flutter SDK​

Sometimes we want to switch between multiple versions of flutter, This is especially helpful to flutter folks when you want to try out the new features or when contributing to open source without messing up your dev environment, For that, you might want to use fvm, But in case you don’t want to install any tool and would like to switch versions directly in your vscode then you could do that by installing multiple versions of the SDK and adding the path to the environment variable. The detailed steps for Linux, Windows, and Mac can be found in this stackoverflow answer

Following the steps in the StackOverflow link will allow you to switch between flutter versions by simply tapping at the bottom of the vscode window.

That's all from this post, Hope this helps you to be productive and adds some value.

Happy Fluttering!

Β· 4 min read
Mahesh Jamdade

This post is a transcription of the youtube video I made, you can watch the full video at the bottom of this post

Hey guys welcome back in this post I will show you How you can sync files in between your computer and Google Drive automatically. This is specifically useful in cases when you make some edits to your file offline and forget to upload the files to your drive. With the solution I will share today teh files will get automatically synced to drive and you don't have to manually do it ever. So for this you will need a small tool called backup and sync, I have been using this tool for almost one year and I've found it really helpful so I thought to share it with you guys.

so open up your browser and search for backup and sync,

Screenshot (33).png 1.png

you should see this first link from google just go to that link and you will see the download option it's a very small tool basically less than 2 megabytes.

2.png 3.png

I have already downloaded the tool on my computer so I won't be downloading it again once you have downloaded the tool install and run it and you should see this Google sign in screen, so sign in with your Google account

Screenshot (15).png

once you have successfully signed in with your google account you need to choose a folder on your computer that you would want to be backed up automatically to the Google Drive.

Screenshot (16).png

you can see here, I have desktop documents and pictures I don't want in all of those to be backed up automatically, so I'm just unchecking these things I want my custom folders stored on the desktop you can see syncit folder here I want this folder to be automatically backed up.

Screenshot (17).png

So, I'll choose this folder here once I select this folder you can see here I have it will validate the folder and and once its validated and down here we have an option for photos and videos and its about whether we want to upload with the compresed size or with the original quality we can also choose to store our photos on google photos by ticking this option I'll just hit next

Screenshot (19).png

and then we need to choose the folders on a Google Drive that we want to sync with the local Drive.

Screenshot (20).png

make sure to tick this option and by default it will be checked I don't want all the contents on myGoogle Drive to be synced automatically so I'll just uncheck that option here, you can see that I don't have anything on my Google Drive so it's showing no folders in my drive and I'll just check the second option here.

Screenshot (21).png

so I'll just hit start and it'll say that you are merging with Google Drive content

Screenshot (23).png

so just click continue you'll see that google drive folder is created on my desktop you can see down here below it is preparing to sync these are some of my contents of my Google Drive folder that have been recently synced from Google Drive

Screenshot (24).png

and it says updated just now and you can also see that it is syncing one of two it is actually uploading my contents of sync-it folder to the Google Drive you can see these are the contents the same contents that are being uploaded to my Google Drive I'll show you these folders in my Google Drive actually you can see this is my drive this is the same folder as mydrive on my desktop let's put these two windows side by sides so you will get a clear idea what I am talking about so these two folders are the same actually one on the cloud and one on my computer,so any changes I make to these any of the folder those will be reflectd to another folder

Screenshot (25).png

Make sure to check out this complete video from More on Tech to know how this backup and sync actually works.

thank you very much for taking your time to read this post I hope this post helped you out and if did please make sure to appreciate with an upvote this will help me a lot and inspire me to make more such posts in th future.