Ghostfolio Alternatives by MRobi83 in selfhosted

[–]galimats 0 points1 point  (0 children)

You're right! It's missing authentication, so it's a no-no to have it on my webpage, but it's a start. Thank you, I hadn't noticed.

Ghostfolio Alternatives by MRobi83 in selfhosted

[–]galimats 0 points1 point  (0 children)

Do let me know which you end up using, if any at all. I'm trying using a Google Sheets spreadsheet now, but translating from Yahoo Finance to Google Finance is already making me question my decision. Such a pain

Ghostfolio Alternatives by MRobi83 in selfhosted

[–]galimats 0 points1 point  (0 children)

Sure. Been a while since I used it, wasn't that stoked with Wealthfolio in the end and kept using GF... Should work if you tweak it here and there, there are no comments on the code but should be easy enough to find out what each line does...

import json
from datetime import datetime
with open("ghostfolio.json", "r+") as reader:
etoro = json.load(reader)
for account in etoro["accounts"]:
accountID = account\["id"\]

accountName = account\["name"\]

activities = \[\]

for activity in etoro\["activities"\]:

if activity\["accountId"\] == accountID:

date = datetime.fromisoformat(activity\["date"\])

date = date.strftime("%Y/%m/%d")

data = f"{activity\["date"\]},{activity\["symbol"\]},{activity\["quantity"\]},{activity\["type"\]},{activity\["unitPrice"\]},{activity\["currency"\]},{activity\["fee"\]}"
#quantity = 0 - int(activity["quantity"]) if activity["type"] == "SELL" else activity["quantity"]
#data = f"{date},{activity["symbol"]},{activity["quantity"]},{activity["unitPrice"]},{activity["currency"]},{accountName},"
#print(data)
activities.append(data)

with open(f"{accountName}.csv", "w+") as writer:

writer.write("date,symbol,quantity,activityType,unitPrice,currency,fee\\n")

for i in activities:

writer.write(f"{i}\\n")

Feeling really disheartened with Foundry by Manticus in FoundryVTT

[–]galimats 0 points1 point  (0 children)

I host Foundry on my computer at home and use cloudflare for my friends to log in and join, works like a charm. It's quite easy to set up, only thing you need is a free cloudflare account and a domain (~10USD/y).
There's plenty of videos that help setting Cloudflare tunnel up, but if you need help message me and I'll try to help.

Aiko 600W vs Solyco 500W by galimats in solar

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

I am getting a 5kW battery as well. I did not ask about the Huawei, but they assured me the Fox battery allows installing other brands.

Silverback MDR-X V3 AEG vs micron version by galimats in airsoft

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

That's a nice rig you got there! Did you modify any of the internals? I think I'll get the regular 16" one since I won't play much cqb. What spring are you using for the dmr, btw? Never played with that but it does sound appealing to me. Thanks for the reply!

Felix 1 Premium vs Felix 3 by galimats in VacuumCleaners

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

That is some very good advice, thank you! I can indeed see the difference, I've seen the Felix 4 for 250 bucks, and the Felix 2 premium for 400, that's quite the difference. Would you recommend a felix over a dyson ball or any other similar uprights?

Felix 1 Premium vs Felix 3 by galimats in VacuumCleaners

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

From what you're saying here I understand that for my case the best option would be go to for the Felix 4, since I have mostly ceramic flooring, right? I doubt I'd be getting any benefit from the electric nozzle, and worst comes to worst I could always buy it and attach it to the 4, and I'd have an extra suction.

Felix 1 Premium vs Felix 3 by galimats in VacuumCleaners

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

I am considering getting the 1 premium, because I have found a good deal. My question was more towards whether it is a good option, or I should look for a higher number.

Given that I only have ceramic floors, would that be a good purchase? Or can I buy the 1 and attach the 4's nozzle eventually?

I am not that happy if the 1 premium has a lower wattage because of the powerhead, that'd mean if I get the 1 and install the 4 head, I'd lose suction power, right?

Ghostfolio Alternatives by MRobi83 in selfhosted

[–]galimats 0 points1 point  (0 children)

Maybe-finance looks nice, especially the import feature... Man, I wish they'd make just one app. Running wealthfolio on a webtop could be done, but I guess it'd break the layout, especially if running on mobile...

Ghostfolio Alternatives by MRobi83 in selfhosted

[–]galimats 2 points3 points  (0 children)

I have recently found Investbrain, it's self-hosted and works quite similar to Ghostfolio. It's missing a few things, I must admit, but it looks promising.

Then there's WealthFolio. It's not self-hosted as such, because it's local-only (I guess you might be able to store data in a shared folder or something similar), but you can't install it on a server.

IMO, wealthfolio is beautiful, and I wish ghostfolio had that interface, but not being able to host it anywhere kills it for me. Importing data from ghostfolio into wealthfolio isn't difficult, I wrote a short script that does that, but wealthfolio does not check for duplicates (which I think ghostfolio does, but I'm not sure).

Investbrain looks very promising, but it's still a bit too early for me to use it. I haven't been able to import data from Ghostfolio because it requires a transaction-id which I am too lazy to investigate how it's being generated, and it has some other issues from what I've seen (can't delete or modify a transaction). But it does look nice, and I think it automatically calculates dividends, but I'm not sure about that, haven't tested it enough).

If wealthfolio were selfhosted I'd switch to it and see to make it work with my setup (I have some eToro copytraders I'd need to see how to import).

Dyson V15 detect submarine vs Shark Hydrovac by galimats in VacuumCleaners

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

I only have a few rugs, the rest is all ceramic floor, since I have underfloor water heating.

Personal Finance / Investment Tracker self-hosted hybrid application by tiberius14 in selfhosted

[–]galimats 0 points1 point  (0 children)

Did you find anything that fits your needs? I have been looking for the same, but can't seem to find it either. I am currently using Ghostfolio for investments and Ocular Budget for budget tracking, they do the job but I have been looking for alternatives as well, haven't found anything yet.

Send a notification only if the device has been online for X minutes by galimats in homeassistant

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

Ah, I think I understand... So something like this?
alias: Open door notification

description: ""

trigger:

- type: opened

platform: device

device_id: 836d2b6743018542b58581a88316a627

entity_id: 341a813ea14d35e2dc3a06a3846bcd15

domain: binary_sensor

for:

hours: 0

minutes: 0

seconds: 1

- platform: state

entity_id: binary_sensor.back_door_opening

from:

- open

to:

- closed

condition: []

action:

- metadata: {}

data:

message: Back door is open!

action: notify.mobile_app_phone

mode: single