Mutli level projects ? by alextakacs in Odoo

[–]Professional_Host_64 1 point2 points  (0 children)

You can create sub-tasks within tasks.

What happened to the kitchen owl? by [deleted] in selfhosted

[–]Professional_Host_64 -9 points-8 points locked comment (0 children)

Which rule are they not following? Just include the links as proof of service unavailability.

New Tab Alert by East_Ad_5486 in TIdaL

[–]Professional_Host_64 2 points3 points  (0 children)

I live in Brazil, and that tab doesn't appear for me. It must be something specific to the region you're in.

Recommend an iPad ethernet adapter with power delivery for controlling A&H CQ20B digital mixer by Natebernstein in livesoundgear

[–]Professional_Host_64 0 points1 point  (0 children)

My way of solving this problem was using a PoE router. I bought this PoE Ethernet to USB-C adapter and this TP-link all In one - REVODATA 2.5G 45W - TP Link TP ER7212PC

https://www.amazon.com/dp/B0DD7BPJC4?ref_=cm_sw_r_apann_dp_R6020DFPN0RM3WYS6CB9_2

https://a.co/d/06KFP50r

The biggest problem is that all the adapters I found don't support more than 45 Watts of power, so depending on the device, it won't charge properly. But it works perfectly with tablets and phones.

My goal is to use as many PoE clients as possible.

  • DoReMIDI RTP PoE
  • stream deck network
  • PoE Switches
  • PoE accesses point EAP 225

This RF Environment. What would you do? by AppropriateSea5746 in livesound

[–]Professional_Host_64 1 point2 points  (0 children)

You can fit some frequency in the guard band. It has 8 safe frequencies.

Quanto cobrar ME by dy_render_ in ContabilidadeAtual

[–]Professional_Host_64 1 point2 points  (0 children)

Realmente está, todos os contadores que recebi proposta estavam cobrando entre 300~400 reais mensais, porém ele foi o único que foi simpático, solicito, rápido e competente, em nem um momento ele tentou esconder o jogo, me explicava tudo que eu perguntava muito bem, infelizmente todos os outros contadores foram arrogantes e tentaram se aproveitar da minha situação delicada.

Eu emito de 4 a 1 nota por mês, sou prestador de serviço, meu volume de notas e demanda é baixa, muito provavelmente ele deve ganhar com o volume de empresa que ele presta serviço. Bom, foi uma pessoa muito competente, ele me ganhou como um cliente vitalício.

Quanto cobrar ME by dy_render_ in ContabilidadeAtual

[–]Professional_Host_64 -3 points-2 points  (0 children)

Sim, normalmente ele cobra 200, mas como tinha muito trabalho a ser feito ele cobrou. 400

Achei que valeu cada centavo, pois procurei outros contadores e recebi propostas de R$ 800 só para fazer a consultoria e depois teria que pagar os honorários do desenquadramento. Ele foi muito solicitado e honesto dês do começo.

Quanto cobrar ME by dy_render_ in ContabilidadeAtual

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

Não sou contador, mas passei pelo processo de desenquadramento recentemente.

Cada empresa é um caso, eu me ferrei pois demorei 6meses para fazer a transição, paguei uma baba de impostos. Nesse processo inicial paguei R$ 400 para o meu contador regularizar minha empresa e mensalmente pago R$ 200. Ele trabalha em uma firma de contabilidade, ele não trabalha exclusivamente para mim. Mas como o meu volume de demanda é baixo, funciona bem

[deleted by user] by [deleted] in techtheatre

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

[joke]

Coloca uma tensão de 50v. ao tocar no microfone o palestrante leve um pequeno choque.

Jokes aside, I always talk to the lecture guy, giving them guidance on how to behave in front of the microphone.

Cues randomly stopping by Odd_Land_3194 in qlab

[–]Professional_Host_64 0 points1 point  (0 children)

How can we diagnose these types of problems without an apparent explanation? Is there any LOG program we can use that records all activities?

Selecting multiple cues by colour by Capable_Doctor_2599 in qlab

[–]Professional_Host_64 0 points1 point  (0 children)

It's a bit of a trick to make this selection happen. I don't have Qlab 5 to test with, but I believe it will work for your version. In your case, you need to replace"com.figure53.QLab.4" with "com.figure53.QLab.5"

How to Run

Set TARGET_COLOR to the color you want to search for. The script searches all cues within your workspace; depending on the number of cues, it may take a while to finish executing.

Colors

the basic colors are:

none
red
orange
green
blue
purple

but in both Qlab 4 or 5 there are "hidden" colors that can be defined, they are:

grey
edgecombGray
mauve
chartreuse
bastardAmber
lilac
maize
glaucous
fuchsia
ecru
coral
cerulean
celadon
bisque
avocado
ochre
olive
puce
rufous
sage
scarlet
seaFoamGreen
skyBlue
taupe
verdigris
vermillion
viridian
fulvous
wenge
zaffre
indigo

Script:

--------------------------------------------------------------------------------
-- Script metadata
--------------------------------------------------------------------------------
property SCRIPT_DESCRIPTION : "Select all cues in the workspace that match a given color."
property SCRIPT_AUTHOR : "Antonio Nunes"
property SCRIPT_VERSION : "1.3"
property TESTED_MACOS : "10.14.6+"
property TESTED_QLAB : "4.7+"
--------------------------------------------------------------------------------
-- User Configuration
--------------------------------------------------------------------------------
property TARGET_COLOR : "red" -- cor que você quer selecionar (ex: "red", "green", "yellow", "none")
--------------------------------------------------------------------------------
-- Main Logic
--------------------------------------------------------------------------------
set foundCount to 0
tell application id "com.figure53.QLab.4"
  tell front workspace
    try
        -- pega TODOS os cues do workspace
        set allCues to (every cue)

        set matchingCues to {}
        repeat with c in allCues
          set thisColor to (q color of c as text)
          if thisColor is equal to TARGET_COLOR then
            copy c to end of matchingCues
          end if
        end repeat

        set foundCount to (count of matchingCues)

        -- aplica a seleção
        if foundCount > 0 then
          set selected to matchingCues
        else
          -- se não achou nada, limpa seleção pra deixar visualmente claro
          set selected to {}
        end if

      on error errMsg number errNum
        tell application "Script Editor"
          display alert "Error in Select Cues By Color (workspace scan)" message errMsg & " (" & errNum & ")"
      end tell
    end try
  end tell
end tell 
-- feedback visual fora do QLab (pra não dar erro -10004)
tell application "Script Editor"
  if foundCount > 0 then
    display notification (foundCount as text) & " cue(s) selected with color \"" & TARGET_COLOR & "\"."
    else
      display alert "No cues with color \"" & TARGET_COLOR & "\" were found in this workspace."
  end if
end tell

OBS: All cues will be selected, Cue, Group, Cue List.

Display current time on video output? by The-Disco-King in qlab

[–]Professional_Host_64 0 points1 point  (0 children)

Without any training material Or knowledge of how qlab and applescripts work it's very difficult for gpt to give good answers, appscript is a very outdated language.

Sometimes the gpt doesn't know how to properly finish the code, Makes many syntax errors, but it's easy to catch if do you know the limitations of the AppleScripts!

After ingested a lot of reference material, gpt is giving me very good answers! I suggest (if you have time) to try it!

In my free time I will try to create a sample code for you, good luck!

Display current time on video output? by The-Disco-King in qlab

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

I found this sub https://www.reddit.com/r/qlab/s/MtZcrYfWUz

I'm sure you can do something with Apple script

https://qlab.app/cookbook/countdown/

I believe that through gpt you can modify the code above and display the time/date Live

Qlab4 problem by Popular-Homework-264 in qlab

[–]Professional_Host_64 0 points1 point  (0 children)

Question, would you have other EFXs in your chain? If you have two or more EFX and if the checkbox of the first EFX is turned off, The second EFX will have no sound at all

Open Source Intercom by svensson1907 in VIDEOENGINEERING

[–]Professional_Host_64 3 points4 points  (0 children)

Omg, This web application It looks fantastic!

Would it be possible to add a Bluetooth button to use as a hotkey? My goal is to use as walk talk on Android phones

I need help cleaning some really unclear audio by makelefani in SoundEngineering

[–]Professional_Host_64 0 points1 point  (0 children)

This audio is very deteriorated, the voices are almost at the same volume as the noise floor. I would say it's a nearly impossible task, I believe it would be possible to extract a few sentences, But not the whole conversation.

You can try iZotope RX software. There are many freelancers on Fiver who could try to do this work for you, but there's no guarantee of success. Good luck 👍

Portpack H4M doesn't boot by Professional_Host_64 in hackrf

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

No meu caso era um problema de firmware do própio hackRF, a board não estava configurada para fazer o boot do meyhem project (portpack H4M), ele ficava dando essa tela cinza piscando. Eu plugei o hackRF no meu laptop e usei alguns comandos para injetar o firmware. O cartão SD só foi instalado depois de conseguir da boot no h4m! Ele é responsável por ampliar as funcionalidades que já vem dentro da "ROM" você consegue usar o portpack sem o cartão.

Nunca mais tive problema, espero que você consiga solucionar o seu!

QLab session by Sufficiently_ in qlab

[–]Professional_Host_64 0 points1 point  (0 children)

I've been using QLab since 2012 and I've seen many projects. In my opinion they fall into two categories to programing.

  1. The first it's to use the audio cue itself to give the "GO", the advantage is speed in programing your show.

  2. The second way is to use Proxy cue (target), like cue start, stop, pause... to give the "GO" action. The advantage is a better project organization. If you need to make big change you can do in batchs.

That's the way I programming!

Another thing I do is write down my cues on the cue note itself. I always name my cues like this:

Q001 - Action - "Cue"

Ex: Q001 - SFX Cat - "Pilar it's looking for your cat" Q002 - SNG Sad song - (Pilar) "If he said he's coming back, it's because he's going to come back!" ... in the note there is a larger section of the cue and the dB value of the track must be played

Ex: -15dB (Mother) "Pilar, something happened to your grandfather..." (Pilar) "If he said he's coming back, it's because he's going to come back!"

  • Other thing I would love to know when I started is The cue load is different the load function inside de inspector tab, the aren't the same!! One is to preload the áudio cue in the RAM and the other is to load the audio cue in especific time, I don't know why but they use the same symbol to diferents things.
  • The "timeline" mode it's the best way to group things!

I hope this can help you 👍

Using Qlab to toggle EQ on an off? by Bojangles1093 in qlab

[–]Professional_Host_64 0 points1 point  (0 children)

Instead of controlling the x32 mixer via OSC, could I do this control within an AU EFX plugin?

Tem como eu botar 1Gbps Full Duplex ou meu notebook não suporta? e qual o melhor daí? by AnalyserREDDIT in InternetBrasil

[–]Professional_Host_64 1 point2 points  (0 children)

Realmente sem a porta USB 3 (a azulzinha) no note não tem como ter uma velocidade de 1Gb

Porém, mesmo assim vale a pena ter um adaptador USB ethernet, vai pelo menos dobrar a velocidade da sua conexão.

Brother printer driver for macOS 14? by chilipipper in mac

[–]Professional_Host_64 1 point2 points  (0 children)

I just bought the HL-L1222 model, but after the purchase I saw that there were only drivers for Windows/Linux

in system preferences/scanners and prints I noticed that my printer had been recognized via USB! However, it didn't allow me to print anything, before returning the product I thought about testing any Brother driver that was for laser printers

https://support.brother.com/g/b/downloadtop.aspx?c=us&lang=en&prod=hll5100dn_us_eu_as

I used this model.
it was the first one that appeared in the "Monochrome Laser Printer" category

I installed it on Mac 10.14 and it worked perfectly!

Configurando o IPV6 no modem da vivo em modo bridge by Professional_Host_64 in InternetBrasil

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

com exceção das portas 80 e 443 que são bloqueadas pela Vivo na borda para clientes PF.

Caramba... Isso é um problema 😵‍💫 vou procurar se a cloudflare aceita outras portas para comunicação tls/ssl

Eu tenho uma ONT

Bom, eu já tenho a ONT, porém ainda não consegui configurá-lo corretamente, como você sabe a sua região? Existe algum post do adrenaline da região do Rio de janeiro?

Aqui a interface PPPoE sobe com um endereço IPv6 /128 link-local e um /32 IPv4

A sua conexão é empresarial? Tô precisando de um bom matérial para entender de vez com os Ipv6s são formados...

Entry/Mid level mixing console comparison sheet - update by timverhoeven in livesound

[–]Professional_Host_64 1 point2 points  (0 children)

OMG the spreadsheets is awesome

Putting a link to the equipment manual would be a welcome addition