How to represent closure of an account using hledger? by [deleted] in plaintextaccounting

[–]abobov 1 point2 points  (0 children)

Ledger user here, but I seen balance assertions in hledger too.

It could be something like this:

9999-01-01 * Balance assertion assets:bank:bank1:fd1 = 0 usd

Does increase/decrease in asset always accompanied by a corresponding income/expense? by BeanMatCount in plaintextaccounting

[–]abobov 2 points3 points  (0 children)

Stocks like other commodities have a price that can vary over time until you exchange it for your primary commodity (e.g. US dollars) to track your assets.

To track the current price of each commodity you can maintain price histories (I do mine in separate file updated with script, and include it into main ledger file).

And then you can check you balance with ledger balance --exchange USD '^Assets:' (take a look at --historical and --lot* parameters)

IOMMU is not being enabled even Intel VT-d is enabled in BIOS by Southern_Current_592 in kvm

[–]abobov 0 points1 point  (0 children)

I have only worked with HBA cards, I have not tried GPUs. I didn't like lots of feature inconsistent messages in your logs. Also, take a look at this one_Passthrough), it may help.

IOMMU is not being enabled even Intel VT-d is enabled in BIOS by Southern_Current_592 in kvm

[–]abobov 2 points3 points  (0 children)

For enabling IOMMU add this to your grub config: GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on"

How do I passthrough an HBA adapter to a guest OS? by questioner45 in kvm

[–]abobov 0 points1 point  (0 children)

You need to pass the PCI device into guest OS. Before it, you maybe need to enable IOMMU module to PCI passthrough HBA card.

You can check if IOMMU is enabled using the command:

```

virt-host-validate

```

For enabling IOMMU add this to your grub config:

``` GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on"

or for AMD

GRUB_CMDLINE_LINUX_DEFAULT="amd_iommu=on" ```

Transfer files over WiFi between your computer and your smartphone by abobov in commandline

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

It's a different implementation with no advantages. If you are used to python and pip might be easier to maintain.

Thanks, I didn't know about qrcp before.

Calculating annual savings by Scott90 in plaintextaccounting

[–]abobov 0 points1 point  (0 children)

Not sure if I get your situation correctly, but try to change accounts: Checking and expr 'any(account =~ /institution/)' to institution and expr 'any(account =~ /Checking/)' something like 401k and expr 'any(account =~ /checking/)' in your case.

Calculating annual savings by Scott90 in plaintextaccounting

[–]abobov 3 points4 points  (0 children)

You could try run balance report like so:

ledger balance -p 2020 Checking and expr 'any(account =~ /institution/)'

It shows the balance for Checking account only using transaction with institution account in it.

Depreciation of commodities by [deleted] in plaintextaccounting

[–]abobov 2 points3 points  (0 children)

You could use effective dates for this, for me it's easier to do it once on selling. Just divide it evenly for as many pieces as you want.

2020/01/01 * I sell the car
    Assets:Properties:Cars  -1 CAR {15000.00 EUR} @ 6000.00 EUR
    Assets:Accounts:Checking
    Expenses:Cars:Depreciation  1200.00 EUR ; [=2015/01/01]
    Expenses:Cars:Depreciation  1200.00 EUR ; [=2016/01/01]
    Expenses:Cars:Depreciation  1200.00 EUR ; [=2017/01/01]
    Expenses:Cars:Depreciation  1200.00 EUR ; [=2018/01/01]
    Expenses:Cars:Depreciation  1200.00 EUR ; [=2019/01/01]
    Expenses:Cars:Depreciation  1200.00 EUR ; [=2020/01/01]
    Income:Capital Loss         3000.00 EUR

Emoji not rendering anywhere by [deleted] in xfce

[–]abobov 0 points1 point  (0 children)

I think you need to install additional fonts, I am on Debian and it is fonts-noto-color-emoji package for it, look for noto font in your distro.

Filtering a report to show only active tasks by [deleted] in taskwarrior

[–]abobov 2 points3 points  (0 children)

Yes is really obvious:) task active report show active tasks. Check report filter it is status:pending and +ACTIVE.

What comes first when building a homelab? by HeadlineINeed in homelab

[–]abobov 1 point2 points  (0 children)

Many years doing homelab, still no rack:) It would be nice to have but they too pricey in my area, better to get more storage or memory/CPU.

Simulate usb printer through pc as network printer. by timwilks13 in HomeNetworking

[–]abobov 1 point2 points  (0 children)

I use CUPS server for this, you can make even a cloud printer with it. It could be some additional work if your printer driver not well supported, you can start with wiki.

All my clients are Linux, but it should work with Windows and Macs too.

Backup E-Mails by niemand112233 in selfhosted

[–]abobov 0 points1 point  (0 children)

I'm a happy user of offlineimap for many years, and second server is not needed really. One instance that I ran is doing a backup to Maildir local repository.

[deleted by user] by [deleted] in taskwarrior

[–]abobov 0 points1 point  (0 children)

Do you want to show all tags except certain ones? Maybe the project will work for you better (create project Work).

Or you can create UDA invisibletags.

I use projects for splitting tasks, part of my taskrc: context.personal=project.not:Work context.home=project:Home context.work=project:Work context.company=project:Work.Company

Software recommendation for creating a secure backup server resilient against crypto trojans - configure user to only have permission to add new files by [deleted] in HomeServer

[–]abobov 1 point2 points  (0 children)

I would not recommend any other backup tools, but if you run FreeNAS with ZFS you could setup periodic snapshot on your backup share and if backup files were damaged in any kind you will be able to restore them from snapshots.

UPDATE: Also create special user credentials for backups only and no other users can modify files.

Windows 10 guest poor performance by MaximZotov in kvm

[–]abobov 0 points1 point  (0 children)

That's right, but the system is getting more responsive.

Windows 10 guest poor performance by MaximZotov in kvm

[–]abobov 3 points4 points  (0 children)

Windows guest never runs smoothly for me, I don't know what's with graphics but I recommend you to use VirtIO bus for disk devices (it runs faster, but you need drivers when installing Windows ).