Hacker News new | past | comments | ask | show | jobs | submit | anned20's comments login

For the finance and managing contractors, I use Kimai [0]. It can track your time, manage your customers, projects, your team, expenses and even generate your invoices. I only use it for tracking time, managing customers and projects and generating invoices.

My full finances are stored in Notion 1, this is because I can access that anywhere, and I can use the built-in table functions to calculate my VAT and tax. When I started, I also used Notion as a CRM that I logged customer/prospect interactions with, but that faded out after a while.

[0]: https://www.kimai.org/

[1]: https://www.notion.so/


Confusing pricing for Kimai. Start for free for hosted but I can't find the pricing anywhere on the website but I found a blog post about how it's no longer free. Do you pay for it and try to host it?


I self-host it. But you can also use the SaaS version. The pricing for that can be found here: https://www.kimai.cloud/pricing

Currently, this is:

Standard €2.99 Annual €35.88 per user

    Project time-tracking
    Billable and non-billable hours
    Invoicing
    Data export
    Audit logs
    Industry-specific translations
    Personal Support
Professional €3.99 Annual €47.88 per user Most popular

    All the features of "Standard"
    Overtime account
    Public holiday, vacation, sick leave
    Expense tracking
    Custom fields
    Task planning
    Daily backups for download
    Single Sign-On with SAML
    Custom domain with SSL
    Access restriction via IP
    Annual plan: less bookkeeping


What kind of finance features does notion have ? It would be interesting to hear how notion can be used for finance ?


As kreetx said, I use the Excel-like features.

For example; the finances for each company should be submitted to the national tax department each quarter. I configured the Notion tables to group them by quarter of the year. For each of these quarters, it will automatically configure the income, outgoing and the result.


I'd assume it has "Excel features", which translate to finance features.


Came here to say this, it really messed with my mind for a second. I'm using Brave on macOS, so it's not browser related.


just deployed a fix for this; if you see this and happen to check let me know if it's better :)


Happy birthday!


Description from man page:

       pw  stands for Pipe Watch. This is a utility which continuously reads textual input from a
       pipe or pipe-like source, and maintains a dynamic display of  the  most  recently  read  N
       lines.

       If  pw  is invoked such that its standard input is a TTY, it simply reads lines and prints
       them in its characteristic way, with control characters replaced  by  caret  codes,  until
       end-of-file is encountered. Long lines aren't clipped, and there is no interactive mode.

       The intended use of pw is that its standard input is a pipe, such as the output of another
       command, or a pipe-like device such as a socket or whatever.  In this  situation,  pw  ex-
       pects  to  be  executed in a TTY session in which a /dev/tty device can be opened, for the
       purposes of obtaining interactive input.  The remaining description pertains to  this  in-
       teractive mode.

       In  interactive mode, pw simultaneously monitors its standard input for the arrival of new
       data, as well as the TTY for interactive commands.  Lines from standard input  are  placed
       into  a  FIFO  buffer.  While the FIFO buffer is not yet full, lines are displayed immedi-
       ately.  After the FIFO buffer fills up with the specified number of lines  (controlled  by
       the  -n  option)  then  pw transitions into a mode in which, old lines are bumped from the
       tail of the FIFO as new ones are added to the head, and refresh operations are required in
       order to display the current FIFO contents.

       The display only refreshes with the latest FIFO data when

       1.     there is some keyboard activity from the terminal; or

       2.     when the interval period has expired without new input having been seen; or else

       3.     whenever the long period elapses.

       In  other words, while the pipe is spewing, and there is no keyboard input, the display is
       updated infrequently, only according to the long interval.

       The display is also updated when standard input indicates end-of-data.  In this situation,
       pw  terminates, unless the -d (do not quit) option has been specified, in which case it pw
       stays in interactive mode. The the end-of-data status is indicated by the string EOF being
       displayed in the status line after the data.


How is this different to tail -f ?


The "triggers" seem to be the difference. The video shows it tailing strace, and only waking up the display and dumping data when it sees the poll() system call in the strace output.

Then they show a fancier example of a specific pattern of recvmsg(11,...) happening a specific amount of lines below poll(). That ends up showing the flow of data to a specific socket.

Or without triggers, it only shows you the latest when you tap the space bar or some other key.


pw has no tail -f functionality; it doesn't monitor whether a file that has reached EOF will start growing again. If you do pw < file, it will just read to the end and then exit. Or else stay running with pw -d, but without reading any more data. But it can make sense to do this:

  tail -f logfile | pw
the main behavior change that pw will introduce is that during periods when the logfile is rapidly growing, it will prevent spewage to the terminal. It will only update when there is a lull in in the output exceeding the short timeout (default: 1 s), or else once every long timeout (default: 10 s). (These values were hard coded at first, then they became command line options, then dynamically adjustable too).

The development of pw was inspired by a discussion in the GNU Coreutils mailing list by a user wanting behavior along these lines from tail itself.

Then the other feature ideas came.

For instance pausing: we can suspend the display indefinitely. With tail -f, that's easy: you can just kill it. You can't kill a program that's taking input from a pipe without breaking the pipe, though. You can pause the terminal output, but not indefinitely without causing a backlog that could block the producing application, and when you resume, all the backlogged spewage will show.


I like the tool a lot. I think people are still generally a bit confused about what it is, and the beginning of the man page is quite mechanistic, describing the implementation and leaving it up to the reader to interpret why that is useful.

The reasons I like it are that it's "an interactive streaming text viewer", along the lines of a readonly text editor designed for presenting inhuman amounts of data in a way that's useful for us humans. Think of the times you want to use your favorite text editor to interactively search and inspect streaming data, but can't because the stream is continuous.

- doesn't stream characters to the screen so fast that humans can't read it

- allows for interactively searching the stream and showing context

- operates on a large ring buffer, so all of this can be done without ever attempting to read a fixed subset or the entire stream

It reminds me of what Casey Muratori did for refterm: https://youtu.be/hNZF81VYfQo


It tries to not flood your terminal when you're not interacting with it. Could be good on a slow SSH link, for instance.


I also want to give praise about the demo. It's one of the best demos I've ever seen with such a project. Nice job!


A 16MB gif with no playback controls, so you had to go through the tedium.


I would be surprised that the author wasn't using WebM to get a smaller filesize (not to mention higher quality) but the project itself leads me to believe that the author has a lot of free disk space to use


There’s no need to make further assumptions about the author (who btw took the time to build a very useful tool and share to in the Internet for free). Just point out the issue of the GIF and move along.


I think you missed something here; parent wasn't insulting the author. They were inferring that someone who made an archiving tool probably has resources that help with archiving (bandwidth means access to documents and storage space means a place to save them-- you get the idea).


I never made an assumption about the author and certainly never said that the tool wasn't useful. You can feel free to move along yourself, though.


Then you're clashing with WordPress. Something like wikifetch is even better I think.


"wp" and "wiki" are both unclear... Which "wiki"?

Just call this "wikipedia".


But what if support for other wikis gets added?


But what if it starts supporting other webpages too, not just wikis?

Let's just name stuff for what their stated purpose is, instead of trying to invent "maybes" and name it after that.


Then call it weboob.

I am already out --> []


What about `wget` then? (wiki* + get)


Yep, definitely no clash there. ;-)


mwfetch (MediaWiki fetch)


Morrowind fetch à la OpenMW? :)

Kidding - although an API for Morrowind would be neat...


That's a decent name.


wordpress isn't part of any base system, at least.

It's just some PHP (eww) blog software.


What anned20 means is that quite a lot of managed hosting has the (incredible) WP-CLI installed:

https://wp-cli.org/

The (completely invaluable) shell command is "wp".


eww? like the emacs builtin browser? ;)


MediaWiki is also written in PHP?


If you tried, you couldn't even come up with this.


I could. :)


That is probably the reason it is targeted at Monzonauts (Monzo employees)


Hi all!

When trying to get NixOS to work on my Raspberry Pi, I couldn't find a lot of resources on how to do it.

I wrote this little blog post to have a small reference for other people like me.

Please let me know if I can optimize anything or if there are mistakes found in it.


I've been thinking for some time to try NixOS on some Pi's I have, as I need a few with very similar config. Bookmarking this for some Easter tinkering.

I guess it's obvious when you know NixOS, but for a n00b like me, perhaps point how exactly you used this. Like did you manually install it like the doc goes on about or did you create your own SD card, if so how?

Some links to existing stuff would be plenty fine.


What I did was download the SD card ISO file from the NixOS CI builder. I'll link it to you: https://hydra.nixos.org/job/nixos/release-20.09-aarch64/nixo...

Grab the latest build, download the artifact and decompress it with zstd


Thanks, that was the missing piece of the puzzle!


It's literally Epic not wanting to comply with Apple's App Store policies and then crying that Apple is bullying them for not making an exception.


Certainly Epic is in a place that other Apple customers are not, in having the user base to profitably run a competing App Store. But I haven't heard any where that Epic wants an exception and fuck everyone else. Apple might do that if it shut Epic up, but they could also make TOS changes that made their customer relationships unilaterally less one-sided, and that would be less "exception" than "change". (at which point "crying" might better be described as "arguing" or even "protesting")

I don't particularly like either company here, but Apple using its market power to inhibit competition certainly sounds like the bigger problem.


> But I haven't heard any where that Epic wants an exception and fuck everyone else.

Apple has made a few filings documenting this, including that Epic specifically asked for a side letter to the standard developer contract granting them special treatment.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: