I have a problem with building app process in Digital Ocean, I have an app already deployed and I have implemented a big refactor in the code structure, in my l
Given the following type: export type MyType = { a: boolean; b: number; } I want to create a type: export type Mapper<T> = { key: keyof T;
I am looking on how to hook into the action when the release button is pressed on the Receipt page. Our existing developer has some code that has the following:
CREATE FUNCTION insertrecord(@id int, @location varchar(20)) RETURNS INT AS BEGIN INSERT Into [dbo].[Location] (Id,Emploc)values(@id,@location) RETURN
I'm new to C# development and know we should be able to host the token generation C# api within the Bot Composer C# solution to safely use the DirectLine Secret
Scenario I have a two tables, foo and bar. bar references a field in foo (a foreign key relationship). Quick preview to "meeting me where I am": I'm finally st
Is it possible to copy and paste UnityEvent in editor without losing it references? To copy events from "OnEnterScene" to "OnExitScene".