4

Week : 70 ( Year 1 )

Plans for the first weekend?

My cat (well, my neighbour's cat. Sometimes visits my place) looks like pregnant. Any advice to do something? or let nature do its thing?

Previous Week : https://devrant.com/rants/12057280

Comments
  • 6
    If you didn't do it, then no.
  • 3
    Imagine how much places that cat goes. A bit slutty. Have some self respect. You can't trust it.
  • 2
    I gonna make a beautiful github like statistics with those little tiles of all hours I worked with details of what i did on that day, that hour. You can zoom in and stuff. It's very sick, so much data.
  • 1
    Last weekend before returning to work, so for me relaxing is the main goal, here.
  • 2
    @D-4got10-01 hey, I think you have quite some data now. Today I gonna make smth awesome, a github like contributions widget with our data. You can click in a small tile and you will see 24 tiles (hours) and then you can click on a hour and you'll see a list of our main activities. It will come with a data preparation script that will filter stuff like passwords and so on. For you it's maybe still manageable to check all data if it's sensitive or not, but I can't. I can only hope 😂 But you have three directories: log_keys, log_summaries and log_lines. They're all abstractions from eachother. If I filter the log_keys on password by giving it it will be safe. Then have to do some url check if it doesn't contain smth nasty. But normally it's quite OK because our summarizer is a sensitive wokie and excludes all special stuff.
  • 1
    @D-4got10-01 I still didn't start on it. Still in the same chair as when I wrote that message two hours ago meaning that I just spend literally two hours on a phone with a laptop standing behind me. But laptop is "work". Phone is social. Devrant falls under both categories.
  • 1
    @retoor No worries.

    You'll get to it eventually.
  • 2
    @D-4got10-01 * snores amphetamine *. Sure 😁
  • 1
    @retoor Me: * Laughs really loudly *.
  • 1
    @D-4got10-01 Worked hours, every line is day. Rakketaketakk
  • 1
    @retoor Damn.

    That's a lot.

    Either way, cool-looking stats, though.
  • 2
    @D-4got10-01 yh, it's 12 hours a day minimum. Github style widget rocks. This on really my data. I gonna makr that you can search for a tag, like ssh, vim, and it shows with making a tile blue how much you used it that day or hour. So event filters on the widget. First, need a tagscanner for the raw keys logs and find out what popular words are.
  • 1
    @D-4got10-01 I made the tag scanner, i did it the lexer way, you could consider it as the regex for non lazy people / perfectionists. I have 500.000 unique tags what means spaces around words and numbers. The list of 300 most used tags is very interesting. The I is one of the most used, that's because the word 'i' and the var 'i' and the 'i' you use to start inserting in vim. Makes lot of sense. But I also have the x? When do I use that? I think it's save and quit for vim and I use arrow up to start vim again I guess. Should :x be one or two tokens? It's two now. Makes sense, json {"a":"b"} is with this type of logic two tokens (a, b) wats correct for me. I like it even. My password is also in most used top 300 list. Using token scanning we don't have to be worried publishing smth sensitive. Cool is, I wrote the token scanner in C to filter 800mb of books. I let gpt convert it to python. Massive performance hit but at least python version is now in production. C version not.
Add Comment