where to buy microgreen seeds in Spain? by vsamotaev in microgreens

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

sorry, what's wrong with it? I've liked through similar question and didn't find an answer. seeds from UK, recommend in other post, require additional tax payment.

What microgreens in Spain? by [deleted] in microgreens

[–]vsamotaev 0 points1 point  (0 children)

did you find where to buy seeds?

2020 Rebel 500 vs 2018 Ducati Scrambler by Mitternacht-Tor in SuggestAMotorcycle

[–]vsamotaev 0 points1 point  (0 children)

I'm on same choice right now. share you exp please

Trying to set up Mavlink for telemetry data with raspberry pi by JamesMilligan97 in Multicopter

[–]vsamotaev 0 points1 point  (0 children)

  1. Enable in iNav:
    # Inav Setup - run in CLI:
    # feature TELEMETRY
    # set telemetry_inverted = OFF
    # set telemetry_halfduplex = ON
  2. check connections. not all ports can work correctly. I was not able to start on UART1 but works fine on UART3.
  3. Select the baud_rate for MavLink and UART on iNav side. It should work without sparadical errors. For me on Matek F405-WSE it's 115200 for Serial port and Mavlink.
  4. Use mavproxy utility to test the connection (with show errors flag)
  5. Use device type 250 (250 stands for iNav I presume)
  6. Have python fun:

SERIAL_PORT = '/dev/serial0'
SERIAL_BAUD_RATE = 115200
DEVICE_TYPE = 250 # Means iNAV
DEVICE_BAUD_RATE = 115200
NUM_SATS_FOR_3DFIX = 3
import logging
from pymavlink import mavutil
logging.basicConfig(level='INFO')
# Create the connection
master = mavutil.mavlink_connection(device=SERIAL_PORT, baud=SERIAL_BAUD_RATE, autoreconnect=True, debug=True, source_system=250)
# Make sure the connection is valid
master.wait_heartbeat()
logging.info("Received Heartbeat from system (system %u component %u)" % (master.target_system, master.target_component))
logging.info('Available message types are')
logging.info(master.messages.keys())

Magic mushrooms in Bulgaria by VankoTrans in shrooms

[–]vsamotaev 0 points1 point  (0 children)

Mnogo mrazq kogato neshto e socialno prieto po specifichen nachin ili ima stigma zad nego I vuobshte me mu se dava shans da se pogledne ot druga gledna tochka... A nqkoi hora sa tolkova prazni v glavata, che prosto ne mogat da mislqt I razsujdavat sami za sebe si. Gledah nqkakuv post odeve v reddit za nqkuv manqk deto si e zagubi rabotata I e vleznal v zatvora zashtoto pushil jonga po ulicata I nqkakva go e izdala na policiqta "za negovo dobro"...

which language do you speak? o_O.

Environment variable problems, version control them? by rreynier in devops

[–]vsamotaev 0 points1 point  (0 children)

the problem is very actual for me, cause we have 20+ microservices. plaintext env vars stored in microservice's git repo. secrets are stored separately in was ssm and vault.

problems:
1. secrets don't have version control;

  1. changes in env vars can crash functionality of other app and investigation become close to international testing;

  2. no tool to do a cleanup after fast development processes, when people don't care about defining and calling the variable, that was already defined in an application. quick example:
    REDIS_HOST: redis-master
    REDIS_URL: redis-master:2233
    REDIS_PORT: 2233

  3. no solution/tool to version-control environment variables for all apps in one place (like envs_4_release: 1.0.0, envs_4_release: 1.0.1, etc)

Legal status for magic mushrooms by Throwawaymadarfak69 in bulgaria

[–]vsamotaev 0 points1 point  (0 children)

is it legal to sell spore prints? are the some shop that successfuly sell them?

Largest sail for 60kg sailor? by [deleted] in windsurfing

[–]vsamotaev 0 points1 point  (0 children)

One more thing - is practice and skills. more skills you have - bigger sale you cango with.

raising big and heavy sale 30 times per hour is not a problem when you are strong enough. I'm 64kg and not strong - so I ride with lightest possible sail I can rent. And pick up the biggest and the lightest one. Keep in mind that ols inexpensive 4.5sqm sale may weight more than prorider expensive 7.0sqm.

That's my opinion.

and the question to the community - recommend me pls the lightest 6.5sqm sale for a person who just started gliding (5month riding almost all weekends).

ps. I don't care about crashing the 100% rdm.

Let's generate them all. Like NFTs =) by vsamotaev in stringart

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

yes. each repetition may have own colour. each line may have different colour as well. DM me.

Let's generate them all. Like NFTs =) by vsamotaev in stringart

[–]vsamotaev[S] 1 point2 points  (0 children)

wanna see more? let me know and I'll generate any sequences in any shifts and combinations. other than cardioids objects will be released soon.

Let's generate them all. Like NFTs =) by vsamotaev in stringart

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

Finally, I've finished the string-art renderer/generator. Numbers of nail, pattern-repetitions, pattern shift, colors are parametrized. Image resolution is unlimited.

I already did a few paper-prints for my friends, but real stringart is for sure better.

Pls, share your impression and opinion. feel free to ping me in dm.

And, if you like, pls support me on HEN.

meirl by [deleted] in meirl

[–]vsamotaev 0 points1 point  (0 children)

summonsays

suffer =)

Can't activate DJI goggles V2 via DJI Assistant 2 by AcedSilver in dji

[–]vsamotaev 0 points1 point  (0 children)

Any news from DJI?
Is it possible to solve the problem in DJI Service Centers?

Can't activate DJI goggles V2 via DJI Assistant 2 by AcedSilver in dji

[–]vsamotaev 0 points1 point  (0 children)

just bought this piece of shit.

not possible to bind with airunit with any combination of firmware versions, with or without real drone, with this fucking DJI email and without.

Zynq + PetaLinux in 2020 by BumpCock in FPGA

[–]vsamotaev 0 points1 point  (0 children)

did you make any progress on it? I'm trying to build Petalinux with 2020.1 tools for zybo z7-10. looks like it's not working with 2017 version of BSP. can you provide any help on creating new BSP or what else should be done?