Coding
Game of Life in C#
So I decided to go back to basics and do some small code challenges/projects to find out where my knowledge gaps are. I started with Game of Life, but there’s something off about my code Read more…
So I decided to go back to basics and do some small code challenges/projects to find out where my knowledge gaps are. I started with Game of Life, but there’s something off about my code Read more…
How does this compare to symfony var dump server (beyondcode/laravel-dump-server)? That thing sends debug/dd messages to your terminal instead of a separate app. The big advantage of using a separate window, is that things are Read more…
I’m getting Cannot Access a closed file on some files when I try to upload them. I’m creating a small web app, when a user creates an account on the website, they are required to Read more…
Even by the usual PHP reference problems, this one is funky! The real lesson here is that whenever you use a reference with foreach, always unset the reference variable afterwards, there’s too much potential pain Read more…
Hi guys, I’m a Crestron programmer starting to learn C#. I have experience with Javascript and Ruby so I’m not a programming noob, but any suggestions on learning material, websites, books, etc would be appreciated! Read more…
I have something like this :I know I can do it with objects but I would like the fastest way as I don’t need to store the objects, just to fast access the values. I Read more…
I have the following string variable ‘myJsonString’, which is a JSON-array as a string containing the following: [ ] I want to extract the value for id:myId3 = “iWantThisValueAsAString”. I’ve tried the following: JObject myJsonObject Read more…
I’ve got a project which has an application monitoring a set of applications through API’s.If those applications to monitor become non responsive, I have a windows service that can take the request of the monitoring Read more…
I have set up an authentcation middleware (JWT Token), which I want to set user id for the request in my controller. e.g. I want to get out the data for a specific person, I Read more…
Hi, so I have a bunch of if statements that check to see if a certain name matches what the statement has but I want something to trigger if none of the if statements are Read more…