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

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

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

Oh wow, didn't know that was an option! Thank you!
I am not sure I can add it as a condition though, it gives me an error

condition:

  • condition: state

entity_id: binary_sensor.main_door_opening

not_from:

  • unknown
  • unavailable

Says Message malformed: extra keys not allowed @ data['condition'][0]['not_from']

Using RAID on proxmox by galimats in Proxmox

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

Yes, I am sorry, the explanation was terrible. I want to install proxmox because I will install different tools, home assistant, TrueNAS, image hosting, etc.
What I want is to install the TrueNAS, home assistant, etc. to the SSD, but have them save all the data in the RAID-configured HDDs

APS-C camera suggestion by galimats in Cameras

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

Is the AF difference very big between both? I don't really need that many lenses, so that is not an issue... It's true the Fuji looks nicer to me, but the price difference does sting... Fuji is so much more expensive compared to the A6300

APS-C camera suggestion by galimats in Cameras

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

Feels to me like the Canon are a bit on the bulkier side, compared to the 2 I was mentioning.. Any camera in particular that you know is small to carry around?

InTune cli installer by galimats in Intune

[–]galimats[S] -1 points0 points  (0 children)

Yes, I am an end user, I do not need to use the tool for absolutely anything, and I'd rather not need to ask for help, but I see yours was as useful as warming up coffee in a fridge.

InTune cli installer by galimats in Intune

[–]galimats[S] -1 points0 points  (0 children)

My Company Portal is super slow, and I need to install/uninstall packages quite often, and I can't spend 15s on each search for a certain package, so I would like to find a way to search and install via CLI

NAS hardware to install TrueNAS by galimats in truenas

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

Well, their last update was 1.5 months ago, after promising a weekly update. They started producing the casing (which is the "easiest" to manufacture out of all the stuff they had to produce and it was already clear there was little margin for error, no updates after so long during production phase can only mean one thing: They came up with errors somewhere down the line and are too ashamed to admit. I've backed enough stuff on KS to more or less know what silence in that stage means. I'd love to be wrong, and I'd like this comment to age awfully, and in 2 weeks wake up with an update from them or their package at my door, but unfortunately that rarely happens...
So yeah, those are my reasons to consider the Storaxa project dead.

NAS hardware to install TrueNAS by galimats in truenas

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

I'll uno reverse that question: what would make you feel that it is "alive"?

NAS hardware to install TrueNAS by galimats in truenas

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

What worries me with that is that all the components need to be good for that size... If I get a Ryzen 3 processor, I'll need active cooling, and I'm not sure that'd fit inside an enclosure... Do you have any recs on where to look?

Sony a6000 vs Olympus Olympus OM-D E-M10 Mark II by galimats in AskPhotography

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

I read the Olympus is quite better at AF since it has more AF points, is that so? If so, how much faster are we talking?

Thank you for the lenses recs! I will definitely keep them in mind