You have a sim-card and need to find what's you number. If your balance is active, you can call somebody, but if you can't do it? Of course, for different operators the commands are uniuque. But for AldiTalk there's such a ocmmand.
(more...)You have a sim-card and need to find what's you number. If your balance is active, you can call somebody, but if you can't do it? Of course, for different operators the commands are uniuque. But for AldiTalk there's such a ocmmand.
(more...)You can delete timer job only with PowerShell. Why? I guess you know why 🙂 The most popular reason is the duplicating of timer jobs. To delete a timer job, you need to know the ID. And you can get it also with PowerShell or with GUI.
(more...)In Linux (Debian, Ubuntu) it's very cool to use bash and command line. Recently I wanted to add to archive approximately 3000 'jpg' files, which were named like 'test_2024_06_10 11:22:00'. I didn't want to select so many files manually, so I did it from command line. This is how my command line text looked like:
(more...)For local development I often need Windows server and I use trial version. As six months came through, I need to buy or extend it. Of course, I prefer to extend 🙂
Open PowerShell as administrator and execute the command:
slmgr -rearm
To continue the trial for your Microsoft Office, you can use OSPPREARM.EXE
cd %SystemDrive%\Program Files (x86)\Microsoft Office\Office16
OSPPREARM.EXE
In a recent project, I needed to create a SharePoint list and add an index to it, triggered by the addition of a web part to a page. The goal was to fully automate the process using the SharePoint REST API, eliminating the need for any manual intervention by administrators. Here's how I achieved this.
(more...)When you want to download a publish profile for the service in Azure, there can be an error, that basic authentication is disabled.
(more...)I found a very cool collection of flags in SVG format. It can be used as CDN or added to a project with npm. The library is called ‘flag-icons’. The flags are in 2 formats – 4x4 and 1x1.
(more...)To Run PostgreSQL in Docker I use an official image ‘postgres’ from https://hub.docker.com/_/postgres. You can start it as it’s described in the documentation, but I prefer to use docker-compose. For me it’s more flexible and allows to avoid of errors when start form command line.
(more...)Once again I have to make Export of to Excel. And this time there are requirements to the template – colors, formatting and others. Not so long ago I implemented the export to Excel with XLSX package for React, and it was rendered at client. This solution is good but has many constraints. So, I started to look for another solution.
(more...)The Date is an object in JavaScript and TypeScript. When you have some spare time, try to compare 2 objects, you will find a lot of interesting things 🙂 Obviously, you need to compare not object, but their properties.
(more...)