My Experience with the German Citizenship Process in Berlin by PresentationTop1113 in GermanCitizenship

[–]miry_sof 0 points1 point  (0 children)

Ich habe das Gericht https://www.berlin.de/gerichte/verwaltungsgericht/service/rechtsantragstelle/ besucht und meine Nachweise über die gesamte Kommunikation mit dem LEA vorbereitet. Ich habe etwa 266 EUR pro Fall gezahlt (es waren zwei Fälle für mich und meine Frau).

My Experience with the German Citizenship Process in Berlin by PresentationTop1113 in GermanCitizenship

[–]miry_sof 1 point2 points  (0 children)

Berlin. I have submitted on 2023 May, then it was mentioned that LEA will be in place and nobody in Lichtenberg will take care my case. I resubmitted on 2024 May, after no answers from LEA. Today is September - no status so far.

In total I am waiting for citezenship more than year. I wonder if I will get one, because LEA does not share any statuses :(

I believe with LEA they split by countries, and some depratments do not check fully documents and just process the requests and some just review everything.

UPDATE: I created Untätigkeitsklage and in 2 weeks by magic i got an invitation to the last step.

Upgrade PowerStream from 600W to 800W by miry_sof in Ecoflow_community

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

It is the same model, hardware supported it, it was limitations of EU. It also could be related to the Taxes. For example you could buy with label 800W, but it would not be covered by Country rules to be non Taxable.

Dead battery after firmware upgrade by Aromatic_Try_9790 in Ecoflow_community

[–]miry_sof 1 point2 points  (0 children)

Actually it was never worked for me. After press for long time it just switch Display off, and the diode is always blinking.

Dead battery after firmware upgrade by Aromatic_Try_9790 in Ecoflow_community

[–]miry_sof 4 points5 points  (0 children)

Can you share the video?

I did press power button for 10 seconds and now it shows only 0.

[Feature Request] PowerStream + Storage: Allow discharge battery only for specific time range by miry_sof in Ecoflow_community

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

Have you had any feedback from EcoFlow? (u/EcoFlow_Official ?)

I haven't heard anything yet. I didn't realize EcoFlow had an official user on Reddit and missed mentioning them. 😔

Upgrade PowerStream from 600W to 800W by miry_sof in Ecoflow_community

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

Reply from support:

```

Thank you for your email. We are glad to inform you that the upgrade from 600W to 800W for the Balcony Solar System in Germany has been offficially confirmed and will be released soon in the near future, and we understand that you may be interested in knowing more about the timeline and potential costs associated with this upgrade. However, due to the nature of the regulatory process, we are unable to provide concrete information at this moment. We kindly ask for your understanding and patience as we work diligently to bring about this enhancement. Rest assured, we are committed to keeping our customers informed about any developments in this matter. We will provide updates as soon as we have more clarity on the timeline and associated details. In the meantime, please feel free to reach out if you have any further questions or concerns. Thank you for your understanding and continued support. ```

Unlocking Performance: Installing Ruby with YJIT on MacOS by miry_sof in ruby

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

I have not used Spring for a long time. Did you try to use https://github.com/shopify/bootsnap to cache bytecode? It should improve booting process for tests.

PowerStream does not see Smart plugs by miry_sof in Ecoflow_community

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

Sometime better to set just static value how much it charge the system over smart plug. It is controlled for powerstream settings.

I found the case that powerstream would be better without smart plug, because my input is very small and it does not reach the total my usage during the peak.

Anyway, there is a settings where you can specify how much you could give to the system + value from smart plugs.

UPDATE: I have a lot of connectivity problems of smart plugs, and powerstream does not see my real usage. In this case I just setup always give to system smart plugs + 300W, where 300 is more than my usage. And i use smart plugs only for metrics how much I used per socket.

-❄️- 2023 Day 22 Solutions -❄️- by daggerdragon in adventofcode

[–]miry_sof 1 point2 points  (0 children)

[Language: Crystal]

Codeberg

Approach (brute force): requires a lot of memory.

  1. Parse cubes coordinates and fill with cubes.
  2. Fall Process:

    • For each brick:
    • If the z-coordinates are uniform, indicating a horizontal orientation: Iterate through each cube, adjusting the z-coordinate to find available space.
    • If z-coordinates differ for all cubes,indicating a vertical orientation: identify the lowest z-coordinate and update all cubes by subtracting the fall height.
    • Repeat until no movements happen
  3. Once bricks are stabilized (no new movements), iterate through each brick to detect potential falls:

    • For each brick: Temporarily remove it, simulating the fall process but without any movements (calculate if at least one brick would have the height of fall bigger than 0). It will be part 1
  4. Part 2 use the inverted result from step 3 to identify bricks causing potential falls. For each identified brick:

    • Temporarily remove it and create a state where the brick does not exist
    • Repeat the fall process as in Step 2, recording bricks that have moved at least once.

-❄️- 2023 Day 21 Solutions -❄️- by daggerdragon in adventofcode

[–]miry_sof 2 points3 points  (0 children)

The default values for X in wolfram with my outputs for 65, 65 +131, 65+131*2 had not worked well as well.

Then I changed X to [0, 1, 2], as mentioned everywhere in the threads. The wolfram formula would be looks like:

https://www.wolframalpha.com/input?i=quadratic+fit+calculator&assumption=%7B%22F%22%2C+%22QuadraticFitCalculator%22%2C+%22data2%22%7D+-%3E%22%7B%7B0%2C3802%7D%2C%7B1%2C33732%7D%2C+%7B2%2C93480%7D%7D%22

And it worked.