About Gandalf The White

This author has not yet filled in any details.
So far Gandalf The White has created 30 blog entries.

Flutter – resolve ‘:flutter_plugin_android_lifecycle:androidJdkImage’

Since I updated the Android Studio to Android Studio Ladybug | 2024.2.1, some of my projects in Flutter have stopped working. The error was: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':flutter_plugin_android_lifecycle:compileDebugJavaWithJavac'. > Could not resolve all files for configuration ':flutter_plugin_android_lifecycle:androidJdkImage'. > Failed to transform core-for-system-modules.jar to match

2024-10-15T18:55:53+03:00By |Categories: How To|0 Comments

Experience With Setting Up Ports

Sometimes, when you don't work with a specific system, you can forget how to set it up or check its settings. This happened to me when I set up an Ubuntu server. It had been 6-7 years since I last worked on this type of server, and I missed out on some new features and

2024-06-29T11:45:48+03:00By |Categories: How To|0 Comments

Import JSON file in TypeScript

In this example, I will show you a simple way to import JSON files in TypeScript code. It requires just two simple steps. The first is to change the tsconfig.json file by adding the line: , "resolveJsonModule": true in "compilerOptions" section. { "compilerOptions": { ... , "resolveJsonModule": true ... } ... } After that, you have

2022-09-13T21:14:21+03:00By |Categories: How To|0 Comments

Install Django and Verify It

Django is a Python framework used to create websites. Installation is easy. The recommended way is to use pip. python -m pip install Django This will install Django and you will see something like this: Django instalation using pip After the installation is complete you can verify it using this code: import django print(django.get_version()) If

2020-11-15T21:15:44+02:00By |Categories: How To|0 Comments

KiCad – Create Template

KiCad templates are used to create projects with common settings. Templates can contain everything you need for a new project, for example, table and graphic formating, board outlines, schematic elements, etc. You can create a KiCad template with the following easy steps: Create a project with the settings you needAdd a folder named meta in

2020-07-26T19:33:56+03:00By |Categories: How To|1 Comment

KiCad Files – Useful Information

In this post, I will try to provide you with useful KiCad files information. In the folder containing a KiCad project, you can find various types of files ranging from libraries, schematics to generated output files. Extension / NameDescription.proThis is the project file and it contains parameters and configurations..sch, .kicad_schSchematic file. (The new format is

2020-07-05T21:27:16+03:00By |Categories: Explained Simply|0 Comments

KiCad – Annotate Schematic Elements

When you create a schematic, you need to annotate it. If you have a few elements, it is easy to do it manually. For larger schematics, it is better to use automatic annotation. KiCad provides this capability using an easy to use interface. Tools menu Select the "Tools" menuClick "Annotate Schematic..."When the window is opened

2020-06-21T16:28:59+03:00By |Categories: How To|0 Comments

Rust error[E0554]

This Rust error (E0554) is simple and it occurs when we try to install/build projects with a stable version of Rust. The first step is to run the following command: rustup install nightly After that, you can run your cargo command. For example: cargo +nightly build If your encounter the error when you install a

2020-04-05T23:55:20+03:00By |Categories: How To|0 Comments

Node.js Config Files

Sometimes we need to create and use configuration files. One of the ways to create and use configurations is by using a config module. The first step is to install it using the following command: npm install config When we do this we have to create a directory with a name "config"(directory name/path can be

2020-03-29T15:39:40+03:00By |Categories: How To|0 Comments
Go to Top