59 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
89
views
How to get pipeline stage Id in Go high level
How to get pipeline stage Id ? Like I had a pipeline it's id is mentioned in the URL. but in the pipeline I have stages like (open, won, lost) I want their stage IDs.Thanks in advance
Advice
0
votes
1
replies
59
views
Does the way a program is written/formatted affect how fast and large it is at compile time?
We all know that there's no wrong way to write code, and infinite possible ways to complete a task. Everyone codes differently.
There are of course many ways to shorthand code, so the same code can be ...
1
vote
2
answers
865
views
How to integrate private app in Go High Level sub account
In Go High Level marketplace, I have a private app which is a custom payment provider.
I want to integrate that into another subaccount. For public apps, we can get the app from the marketplace and ...
0
votes
1
answer
95
views
I'm writing a programming language in Python, but I have a problem with the lexer function
I'm writing a programming language in Python, but I have a problem with the lexer function.
I'll leave you the code, which is fully functional:
import sys
inputError = """
(!) Error.
(...
1
vote
2
answers
2k
views
How to create a conversation in gohighlevel via API?
I have found APIs to create, update and get conversations on gohighlevel. In documentation they mentioned "Creates a new conversation with the data provided" for POST request.
To make a POST ...
0
votes
1
answer
2k
views
How to use GoHighLevel API
Apologize first for my bad english and disorganized description.
However it is difficult to describe it more organized.
I am trying to use the API of GoHighLevel.
To use them, it requires to get ...
0
votes
0
answers
56
views
Display URL as an image in Javascript
Basically I have a field called "Google Street View" which contains the URL of an image.
I would like to display that URL as an image, but I have 2 issues:
I can't modify the code of the ...
0
votes
0
answers
590
views
How to stop multiple threads (Tasks) from an external REST API call?
So what I am dealing with here is a pretty complex server application that performs quite a long, complex and lengthy operation involving a number of threads and a number of tasks (yes, some are ...
0
votes
1
answer
42
views
How do high level languages [eg: c#, javascript, python....] create arrays
In low level languages you have to give the length of the array upon creation but in high level languages you don't, so how does it work? How does the computer create the array in a manner to prevent ...
-5
votes
1
answer
69
views
Does this coding answer look good?
In school I was told to describe the difference between machine-, assembly-, and high-level computer languages.
Give an example of machine language code and assembly language code and then name two ...
5
votes
0
answers
103
views
Is there an argument that can be made the BASIC is a higher level language than Javascript? [closed]
I'm taking an introduction to IT course at WGU. According to the quiz results I got, Javascript is not a high level language while BASIC is a high level language. Not Visual Basic, not Quick Basic, ...
0
votes
2
answers
152
views
Translate "let static 2 = argument 1" to VM code
Translate "let static 2 = argument 1" to VM code.
VM code (the answer):
push argument 1
pop static 2
My question
Aren't we forgetting let. Shouldn't we push another argument 1 to the stack,...
0
votes
2
answers
731
views
Software/Application High Level Design
What are the standards or recommendations for developing a high-level design of an existing software/application? Are there any reference guidelines that one can follow to build a high-level design? ...
3
votes
1
answer
2k
views
How to handle sequential and concurrency in Event ticketing System Design
Assume an event ticket website where to handle volume and concurrency, tickets are distributed on different servers and database.
For example, on "server1" 10 tickets are left and on "server2" 5 ...
0
votes
4
answers
868
views
Using the random() in LiveCode
I have an issue with using
the random defined function in livecode.
Here is a code snippet:
// 97 -> 122 = lower case...
put random(97,122) into randASCII
The program is to create an order ...