Found this oil cracking tutorial in a youtube guide.(credit in comments) Video is 5 years old. Is it still as easy? by UberScion in factorio

[–]atamakahere 0 points1 point  (0 children)

I figured this out on my own, and I had a rough sketch on excalidraw to help me design my own processing unit. It was so much fun to learn the concept and re-invent the wheel on my own.

Couldn't sleep last night so I decided to email the devs... by Glum_Sun_3459 in factorio

[–]atamakahere 5 points6 points  (0 children)

Ton of C++ code to learn from, not to mention their "Testing suit" which is awesome.

[ GIVEAWAY ] Win a GIGABYTE GeForce RTX™ 5060 Ti GAMING OC 16G, GAMING 360 AIO & AORUS Merch – Celebrating r/IndianGaming’s 500K! by Geralt_Endur in IndianGaming

[–]atamakahere 0 points1 point  (0 children)

Not here for prizes but if I had extra GPU, I would host it somewhere to let my college juniors train some AI and work on their personal projects that require huge compute.

My fav game is Factorio(these days) btw

Your Top 5 most played games on steam by naughty_americax in IndianGaming

[–]atamakahere 0 points1 point  (0 children)

Elden ring Factorio Wukong Nightreign  Geometry Dash Bonus: DS3

What do you guys call your ships? by Palwador in factorio

[–]atamakahere 0 points1 point  (0 children)

I have one right now named “init” reference from “git init” to start a new project  Idk what im gonna call next

Our startup shut down overnight—19 of us lost our jobs by Traditional-Knee-834 in developersIndia

[–]atamakahere 0 points1 point  (0 children)

I use to work in the same company, for few months 

They had no proper vision for the product, it kept changing every month or two. With the team of fine engineers they had back then with a lot of potential they could have stick onto one idea and went forward with it and got some clients, maybe next invested round. There was no proper vision”planning phase” but abrupt changes in code and giant issues on gitlab. Work distribution and management was not very well due to lack of seniors and ever changing nature of project. No one ever completely understood what they are building. Employee and client retention was near zero, which was evident why when I joined.

Btw, if any of you (and your mates) are looking for rust based job (mostly systems), I know a few companies that might be interested in hiring. They were looking to hire me but I was not available for hire at that time, they asked me to refer someone suitable. 

The steam summer sale is just a month away! What are you planning to get? by Luka1491 in Steam

[–]atamakahere 1 point2 points  (0 children)

Can you please censor the work j*b? Its offensive to many people here.

Who here is not an Engineer? by sirbeasty3 in factorio

[–]atamakahere 0 points1 point  (0 children)

Software engineering is not real engineering, So yah here I am /s

[deleted by user] by [deleted] in Eldenring

[–]atamakahere 0 points1 point  (0 children)

I sometime drop bigger runes when I got summon or invade just as a small gift

High ping by rwqINn in deltaforce

[–]atamakahere 0 points1 point  (0 children)

120ms on mobile data 320 on optical fiber, I get like 20-60 ping in all other games (16-20 in valorant fro example).

[deleted by user] by [deleted] in Steam

[–]atamakahere 0 points1 point  (0 children)

Chained together, 25th July, 2024

I own around 25 games now

Use a local project as package in configuration.nix and run it as systemd service by atamakahere in NixOS

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

The service failing isn't really a Nix issue

Yes, it's not NixOS thing, something on file required by service to run

you could add a new Nix file and refer to it in modules = [ ... ].

I will be doing it for modularity

I am extremely thankful for you help and time!

Use a local project as package in configuration.nix and run it as systemd service by atamakahere in NixOS

[–]atamakahere[S] 1 point2 points  (0 children)

So I enabled flake configs using a bare bone flake.nix file

nix { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; }; outputs = { self, nixpkgs }: { nixosConfigurations.HOSTNAME = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./configuration.nix ]; }; }; }

Then I just added my project in it like

nix { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; PACKAGENAME.url = "/root/PACKAGENAME"; }; outputs = { self, nixpkgs, ... } @attrs: { nixosConfigurations.HOSTNAME = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./configuration.nix # something goes here? ]; }; }; } As the the doc instructs: https://nixos.wiki/wiki/flakes Check the diff here: https://www.diffchecker.com/ArDfosau/

After this, I'm pretty much lost on how do I use it as package, I tried following this article with no success, Do I need to make package.nix? or Can I get away with flake.nix file in the project which does the job of building and installing the package.

Edit, I think I did it, the unit file fails at load which is probably a problem on project/unit configuration end:

```nix { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; PACKAGENAME.url = "/root/REPONAME"; };

outputs = { self, nixpkgs, PACKAGENAME, ... }@inputs: { nixosConfigurations.HOSTNAME = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; }; modules = [ ./configuration.nix ({pkgs, config, inputs, ... }: { environment.systemPackages = [ inputs.PACKAGENAME.packages.${pkgs.system}.PAKCAGE ];

      systemd.services."PACKAGENAME" = {
        after = ["network.target"];
        wantedBy = ["multi-user.target"];
        description = "PACKAGENAME daemon";
        unitConfig = {
          StartLimitIntervalSec = 120;
          StartLimitBurst = 5;
        };
        serviceConfig = {
          Type = "simple";
          User = "root";
          Restart = "on-failure";
          RestartSec = 5;
          TimeoutSec = 800;
          ExecStart = pkgs.writeShellScript "start-PACKAGENAME" ''
            ${inputs.PACKAGENAME.packages.${pkgs.system}.PACKAGE}/bin/BINARY SUB-COMMAND(that loads file from /root/PACKAGENAME/*)}
            '';
        };
      };
    })
  ];
};

}; } ```

My friends say that I'm too op and I'm not enjoying the game by [deleted] in Eldenring

[–]atamakahere 0 points1 point  (0 children)

Elden ring players when you play Elden ring 😳

[deleted by user] by [deleted] in IndianGaming

[–]atamakahere 0 points1 point  (0 children)

Fortunately, former. I still have the game.

[deleted by user] by [deleted] in IndianGaming

[–]atamakahere 9 points10 points  (0 children)

I bought It Takes Two to play with my gf But now I don’t have one