I am working on POC where I have to find a way to expose rest-api implementation as a library so other projects can use this library easily... Problem statemen
I am a C++ habitat working on a C# project. I have encountered the following situation. I have class MyClass and want to avoid any 2 objects of type MyClass eve
I have a dataframe and i want to make a new dataframe containing features from the old dataframe. Here is some dummy code: import pandas as pd import numpy as n
I really surprised when I tried below code in MySQL: SELECT * FROM table WHERE (key='free_shipping' and value='yes') AND (key='price' and value='5') It d
I have a little problem .. I need to get the data from the Medium API and display it in my Digital Portfolio. But I'm having trouble taking this JSON and displa
I've got the following dictionary example: z1 = { "ZH": { "hosts": { "zhsap001.domain.com": { "active": "y", "ip": "11.111.11.10",
I want to assign my program a Guid and use it to pull config data from the SQL server. However, I keep getting the error: The name 'ApplicationID' does not exi
I have a struct that I need to conform to 'Codable'. The struct itself must have an object within it that can also conform to 'Codable'. Howev