• 2 Posts
  • 65 Comments
Joined 10 months ago
cake
Cake day: January 25th, 2024

help-circle

  • Pretend to work, or were incompetent.

    Similar things happened to me too. Could finish day’s work in an hour. It was a small company, didn’t have extra work they could give me, didn’t like I was idle most of the time since we had co-working space. And didn’t increase my salary even through they said they’d increase based on performance on provisional period.

    They finally increased salary after 9months (said they’d do it in 3-6), and it was nominally higher like everyone else. Resigned the next day. When I went back few months back to get something every face was new one except the upper management and their family.

    So basically they count on people to leave in a year or two, so they can hire other batch of fresh graduates in low salary again.












  • I was thinking that exact thing lol. I’m like, yes ‘distributions’ are distributing new softwares with the new kernel.

    And the improvement in desktop environments does feel like a good improvement considering the user is interacting most with it.

    Or maybe I’m just apathetic to these things because most things I care about my distribution are that it provides me a good package manager for external and self made programs. And everything else is just programs installed through said package manager.



  • I thought the most mode sane and modern language use the unicode block identification to determine something can be used in valid identifier or not. Like all the ‘numeric’ unicode characters can’t be at the beginning of identifier similar to how it can’t have ‘3var’.

    So once your programming language supports unicode, it automatically will support any unicode language that has those particular blocks.


  • There are basically two types of files. Text files and binary files.

    Most information are stored in text files so humans can easily understand it, and it’s easier to find errors, review, parse. But text storage takes more space than binary files. And many complicated softwares normally need multiple text files or data files, many of them just store them together as a zip file so that it’s easier to handle. Examples are .docx,.pptx, etc files in MS Office, try unzipping them and see what they contain. Zipping also has advantages of reducing file sizes.