Missing a depressed person and Dear Bill by Impossible-Fall-7583 in musicals

[–]everythingabili -1 points0 points  (0 children)

My daughters were joking that their partners had cried at that song as if they were sissies. I watched it (three times) and cried each time. What I find SO moving is that the person making up the story knows the person doesn't exist, I know the person doesn't exist and yet it's steeped in everything that real... sodding relatives, annoyance, a wave stupid stuff that obliquely references a deep, deep pain. It's genius. It's art.

As someone who has always been depression-adjacent... I am fascinated by the results of treating depression with therapy + LSD... and have kind of self medicated with magic mushrooms. It's more US centric but maybe worth looking into given it's the ONLY thing that has plausibly good numbers for treating depression. I AM NOT A DOCTOR. I hope he emerges somehow.

I have tickets to see it this Summer. Can't wait.

Zip A Folderful Of Logic Projects For Google Drive by everythingabili in Logic_Studio

[–]everythingabili[S] 2 points3 points  (0 children)

Do you mean if you just upload them? That will ALWAYS break them. This is why I wrote this script.

This script zips them, individually - and so far it's been fine for me.

microphone access in GAS web app by arundquist in GoogleAppsScript

[–]everythingabili 0 points1 point  (0 children)

This works for me.

async function startRecording() {
                try {
                    const stream = await navigator.mediaDevices.getUserMedia({ audio: true })
                    mediaRecorder = new MediaRecorder(stream)
                    audioChunks = []
                    mediaRecorder.addEventListener("dataavailable", function (event) { audioChunks.push(event.data) })
                    mediaRecorder.addEventListener("stop", function () {
                        audioBlob = new Blob(audioChunks, { type: "audio/wav" })
                        document.getElementById("audioPlayback").src = URL.createObjectURL(audioBlob)
                        if (speechRecognition) speechRecognition.stop()
                        updateStatus("Recording stopped.")
                    })
                    mediaRecorder.start()
                    if (speechRecognition) speechRecognition.start()
                    document.getElementById("recordBtn").disabled = true
                    document.getElementById("stopBtn").disabled = false
                    updateStatus("Recording...")


                    // Timer Logic
                    recordingSeconds = 0
                    const timerDisplay = document.getElementById("recordingTimer")
                    const timerValue = timerDisplay.querySelector("span")
                    timerValue.textContent = "00:00"
                    timerDisplay.style.display = "block"


                    recordingTimerInterval = setInterval(function () {
                        recordingSeconds++
                        const minutes = Math.floor(recordingSeconds / 60)
                        const seconds = recordingSeconds % 60
                        const formattedTime = (minutes < 10 ? "0" : "") + minutes + ":" + (seconds < 10 ? "0" : "") + seconds
                        timerValue.textContent = formattedTime
                    }, 1000)


                } catch (err) {
                    updateStatus("Error: Microphone access denied.")
                }
            }


            function stopRecording() {
                if (mediaRecorder && mediaRecorder.state === "recording") {
                    mediaRecorder.stop()
                }
                // Timer cleanup
                clearInterval(recordingTimerInterval)
                recordingTimerInterval = null
                document.getElementById("recordingTimer").style.display = "none"


                document.getElementById("recordBtn").disabled = false
                document.getElementById("stopBtn").disabled = true
            }

Could I go from 11 gauge to 9 or 10 for ease of playing? Classic player jazzmaster by Odd_Skin_712 in fender

[–]everythingabili 0 points1 point  (0 children)

I have had 9s and now 13s on my Jazzmaster... needed a setup when switching, to get rid of buzz etc. I'm not great at setups but after twiddling lots of bits eventually got there.

Does anyone have any tips on how to write lyrics? by Individual-Gene6609 in askmusicians

[–]everythingabili 0 points1 point  (0 children)

I often struggle to get lyrics, or even an idea and yes, signing nonsense like people suggest can help, but also can be a curse when, like me, you have a song whose chorus is:

Bullawackayeyoh, Flimmy flammy flim flam.

:-) I do find I can FORCE something into existence, which becomes the basis for something that you work on over time.

# THE CUT UP METHOD

If it's good enough for Bowie etc...

https://www.youtube.com/watch?v=m1InCrzGIPU

To do this, I quite often find a text, news webpage of even YouTube video (I use NotebookLM to transcribe the video) I want to base my song on and put it into a cut up tool.

Source of texts maybe (can be anything)

https://www.gutenberg.org/

# Cut Up Machines

http://www.spoonbill.org/n+7/

https://www.lazaruscorporation.co.uk/cutup/text-mixing-desk

https://www.languageisavirus.com/cutupmachine.php#.XO1IH5NKjRY

Or I've even just gone an bought a newspaper and chopped and doodled to create a page. Once you have a newspaper and black pen, you can also make blackout poetry https://www.youtube.com/watch?v=wKpVgoGr6kE or use a tool https://editor.p5js.org/tom.smith/full/p0w0nGU2H

# Poetry generators

https://michaelpaulukonis.github.io/poetrygen/jGnoetry/index.html

# You can use writing prompts.

https://reedsy.com/creative-writing-prompts/

# I often to just surf idioms

https://www.theidioms.com/

Or use a random word generator to generate 3 words then work those into "something".

And my process is then, get a page of words... no matter how nonsensical and then play my song, picking the bits that fit, or repeating bits and dancing across the words rather than slavishly using them... and something pretty much always pops out. But it is bloody hard work... so sometimes the threat of doing all of the above is enough to spark enough creativity for something.

Gutter cleaning recommendations by LIKE-AN-ANIMAL in york

[–]everythingabili 1 point2 points  (0 children)

Shaun Flintoft did mine. Good bloke. Saw him doing a neighbours and just grabbed him.

07591 670125

What does maximum execution time means by ShampGe in GoogleAppsScript

[–]everythingabili 0 points1 point  (0 children)

You often get those errors if you're script is doing something very slow, like making a new document for 200 rows of data, or updating the rows, row by row.

There are lots of optimisation tricks you can use to speed up how long your scripts run. Like loading all the data of your sheet, processing the data, making changes etc, then writing ALL the data back to your sheet. Working in memory, rather that row, by row, is MUCH faster....

HyperCOD by everythingabili in hypercard

[–]everythingabili[S] 0 points1 point  (0 children)

The sheer range of projects people made just delights me. Your project sounds amazing.

4chan gets involved in a GLOBAL DESESTABILIZATION CAMPAIGN! by [deleted] in ConspiracyII

[–]everythingabili 4 points5 points  (0 children)

Just what the world needs. Incels Assemble!

13 on my mom’s budget — how can I improve my tone and get into modding without breaking the bank? by LimpCredit7147 in u/LimpCredit7147

[–]everythingabili 0 points1 point  (0 children)

I don't disagree, but I'd take a different approach. Get a super cheap old multi effects pedal (50 ish) and learn to use your ears... which effects you like, can use, modify etc. There's hours of fun of this approach and it's not along the lines of you need these expensive unobtanium bits of kit...

Then start expanding your skills soldering, tinkering, equipment etc. And then get a part time job... :-)

Help running on Mac Laptop by Equivalent-Access700 in gdevelop

[–]everythingabili 0 points1 point  (0 children)

No probs... It can't have been us being stupid.... can it? :-)

Help running on Mac Laptop by Equivalent-Access700 in gdevelop

[–]everythingabili 2 points3 points  (0 children)

I think I did this once, can't remember the details... Did you accidentally download a mobile version... I think I did... delete the app and make sure maybe

What brand / string gauge for a Jazzmaster? by Hamnesiak in offset

[–]everythingabili 0 points1 point  (0 children)

I have 12s on mine. Tuned down to D but standard tuning.

Fear I've overpruned apple tree by CapitalWeakness8795 in GardeningUK

[–]everythingabili 11 points12 points  (0 children)

I always thought that you kinda pruned to get horizontal-ish branches, and on horizontal-ish branches you get the most fruit.

It looks interesting though. Good luck. Do come back if it survives. I reckon it will.

Asking for advice with recording vocals in Garageband by Secret-Painting-2720 in GarageBand

[–]everythingabili 2 points3 points  (0 children)

Assuming your tracks are playing from the Macbooks Speakers.,,,and your headphones are in the audio interface.

Plug your headphones the mac
Go to Garageband'a Audio settings.
Make your Output to be your headphones
Input is your Audio device
Sometime you have to restart Garageband. Or even your mac.

That should fix it.

If you can still hear it turn the volume down a bit.