7 Matching Annotations
        
        - Sep 2024
- 
            
www.mikeperham.com www.mikeperham.com- 
  
- 
  Your application code should not be dealing with PID files, log redirection or other low-level concerns. 
- 
  Let your operating system handle daemons, respawning and logging while you focus on your application features and users. 
- 
  This makes developing a modern daemon much easier. The init config file is what you use to configure logging, run as a user, and many other things you previous did in code. You tweak a few init config settings; your code focuses less on housekeeping and more on functionality. 
- 
  Less system administration, easier debugging, simpler code, all because you leveraged the init system to do the work for you! 
 Tags- making it easy to do the right thing
- do one thing and do it well
- focus on the high-level design, not on the low-level details
- keep it simple
- leverage library/tool to do something for you
- core logic
- init system: let it handle all that
- boilerplate
- init system
- focus on the main functionality
- focus
- daemons
 AnnotatorsURL
- 
  
- 
            
www.mikeperham.com www.mikeperham.com
- Jan 2021
- 
            
www.devuan.org www.devuan.org- 
  Init Freedom is about restoring a sane approach to PID1 that respects portability, diversity and freedom of choice. 
 TagsAnnotatorsURL
-