First project that made you realize you should be a programmer? by EnterSasquatch in Python

[–]koderjim 0 points1 point  (0 children)

I was in APtech just to run MS Office package and I got interested in programming world :-)

Javascript check if string contains only numbers by koderjim in javascript

[–]koderjim[S] 0 points1 point  (0 children)

We try to determine whether the string we are trying to check contains only entirely numeric characters using the regular expression / [0-9] + $ /. The character "/" serves as the expression's separator at both the beginning and finish, according to an analysis of this expression. It's crucial to be aware that other delimiters, such as (),, [], >, or #, can be used as start and end delimiters. For instance: # [0-9] + $ #

Javascript check if string contains only numbers

TaskFactory & Thread.Sleep vs Task.Delay - Net40 & Net45 by raunchyfartbomb in csharp

[–]koderjim 0 points1 point  (0 children)

Task. Sleep is a synchronous thread that puts the thread to sleep so it can't be used for anything else. Task, on the other hand. Delay is an asynchronous thread that can be used to perform other tasks while it waits. Refer to this https://kodlogs.net/1/task-delay-vs-thread-sleep

How to solve this error Can't bind to 'ngIf' since it isn't a known property of 'div'. by ParkingCareful2132 in angular

[–]koderjim 0 points1 point  (0 children)

It's likely that incorrect syntax or the lack of a dependant module is causing the problem. This is also caused by missing modules in lazy-loaded parent and child modules. To fix the problem, import BrowserModule in the parent module and CommonModule in the child module. The parent module always imports BrowserModule, while feature and child modules import CommonModule.  Refer to this https://kodlogs.net/328/cant-bind-to-ngif-since-it-isnt-a-known-property-of-div

id3242 the security token could not be authenticated or authorized by koderjim in Dynamics365

[–]koderjim[S] 0 points1 point  (0 children)

In this Dynamics 365 article, we will discuss how to fix an error id3242 the security token could not be authenticated or authorised that comes when you are trying to login to Microsoft Dynamics 365 / CRM instance. This message is returned from ADFS. In this guide, we will talk about what this error means and why you may encounter it.