• Breaking News

    Thursday, November 25, 2021

    Uploading + Processing audio files. How? Ask Programming

    Uploading + Processing audio files. How? Ask Programming


    Uploading + Processing audio files. How?

    Posted: 24 Nov 2021 09:36 PM PST

    Hey hey, I'm a non-technical person but I would like to know the possibilities / limitations of what I'm thinking of. Additionally, if anyone with free time would like to chat, I'll make myself available! :)

    Context: This needs to be only a web app. I am trying to understand what tech stack I should use for this to be scalable and secure.

    In my example there are two types of people - TYPE1 and TYPE2.

    Workflow

    1. I want to make a website where a TYPE1 will ask a question on a forum. They will type out their question on a specific person's profile, who will be TYPE2. They input their email address along with the question to be notified of a response.
    2. TYPE2 will get an email notification that they got a question. They will login to the website, read the question and record an audio response of max 2 mins. They will upload this audio file as a response to TYPE1's question.
    3. TYPE1 get a notification that they got a response. They login, listen to the audio. Done.

    Can someone please help me? I am trying to understand what tech stack I should use for this to be scalable and secure. Is there a platform like Webflow that can make this easier?

    submitted by /u/JesusAwakens
    [link] [comments]

    What language do you like to write programming algorithms?

    Posted: 25 Nov 2021 12:20 AM PST

    Hi!

    I have a software development question. What language do you like to write programming algorithms? I know that every developer and every software development company has their own views when it comes to programming language choices. What do think of C and C++ languages?

    Thanks for your help!

    submitted by /u/dashdevs
    [link] [comments]

    Beginner having a problem in react-map-gl with popups. Anyone knows what the issue might be?

    Posted: 25 Nov 2021 12:11 AM PST

    I have a problem. My popups open ALL at the same time when clicking on a Marker. I am really stuck, because I found a similar problem and literally copied the code that helped the other guy and there is still no difference for me. When I click a marker, all the popups open.

    Here is the link to stack-overflow with the exact code: https://stackoverflow.com/questions/70085070/problem-with-popups-and-markers-onclick-in-react-mapbox

    Does anyone maybe know what seems to be the problem? I'm a beginner at this.

    submitted by /u/h2Nebulaeh2
    [link] [comments]

    Any idea how much of open source is spaghetti code?

    Posted: 25 Nov 2021 12:10 AM PST

    Any idea how much of open source is spaghetti code?

    submitted by /u/mavavilj
    [link] [comments]

    Line 31: Parse Error

    Posted: 24 Nov 2021 11:54 PM PST

    I was trying to run a code from this research paper in the ANSYS program, pertaining to the UDF feature in the Setup section. I ran the code and it shows line 31: parse error( C_T (c, t)= Tin;). I don't know how to fix this issue, can someone help me with this problem. Sorry for the inconvenience.

    submitted by /u/spwnsaurus
    [link] [comments]

    Go concurrency doubt

    Posted: 24 Nov 2021 09:21 PM PST

    Hey everyone. I recently started learning go and came across this example on concurrency:

    ``` ... func pinger(c chan string) { for i := 0; ; i++ { c <- "ping" } } func ponger(c chan string) { for i := 0; ; i++ { c <- "pong" } } func printer(c chan string) { for { msg := <-c fmt.Println(msg) time.Sleep(time.Second * 1) } }

    func main() { var c chan string = make(chan string)

    go pinger(c) go ponger(c) go printer(c)

    var input string fmt.Scanln(&input) } ```

    I'm unable to understand how the output is: ping pong ping pong . . . and not something like: ping ping pong ping pong pong . . . Please help. Also please explain why this line is needed time.Sleep(time.Second * 1)?

    submitted by /u/deprovX
    [link] [comments]

    No comments:

    Post a Comment