about.sxml 5.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. '((article (@ (class "basic-section-padding"))
  2. (p "Hi! I'm Joshua Branson. I'm a tinker with a passion for "
  3. (a (@ (href "http://local.gnucode.me/about.html") (target "_blank")) "libre software")
  4. ". GNUcode.me is my journey towards aiding the "
  5. (a (@ (href "https://gnu.org")) "GNU project.")
  6. " I also occassionally "
  7. (a (@ (href "https://writefreesoftware.org") (target "_blank")) "write free software.")
  8. " Wanna be my friend? Send me an email: joshua AT dismail DOT me")
  9. (img (@ (width "300px") (src "./images/joshua-branson.png") (alt "picture of Joshua Branson")))
  10. (p "My git repositories are available at "
  11. (a (@ (href "https://notabug.org/jbranso")) "notabug.org/jbranso")
  12. ". You'll find my emacs' doom's configuration there, my guix config that runs
  13. this site, and the souce code for this site. It uses Haunt, which is a
  14. static site generator!")
  15. (p "I have been uploading some of my hacking videos online. You can view them "
  16. (a (@ (href "https://video.hardlimit.com/accounts/joshua_branson/video-channels")) "here")
  17. ". I've got videos about guile, emacs, guix, etc.")
  18. (p "My irc nick is jab or gnucode. I usually hang out in
  19. the #guix or #hurd irc chatroom in libera.chat.")
  20. (p "I am particularly interested in the software below."))
  21. (section (@ (class "section-background"))
  22. (article (@ (class "basic-section-padding"))
  23. (img (@ (width "300px") (src "./images/guix.svg") (alt "guix logo")))
  24. (p
  25. (a (@ (href "https://guix.gnu.org") (target "_blank")) "GNU Guix")
  26. " is the official GNU Operating system and universal package
  27. manager. It supports declarative system configuration, atomic updates,
  28. reverting to previous versions of packages and system state! With it
  29. you can declare developmental environments with packages from
  30. programming languages like javascript, python, ruby, rust, R,
  31. guile, etc. GNU Guix lets you declare your entire operating system
  32. environment as scheme code. It is super awesome. I use it on my
  33. laptop, and it powers this website!")))
  34. (section
  35. (article (@ (class "basic-section-padding"))
  36. (img (@ (width "300px") (src "./images/emacs.svg") (alt "emacs logo")))
  37. (p (a (@ (href "https://www.gnu.org/savannah-checkouts/gnu/emacs/emacs.html")
  38. (target "_blank"))
  39. "GNU Emacs")
  40. " is the world's best operating system. It also includes a
  41. fabulous text editor, email client, task manager, web browser, etc.
  42. There are people that open up their computer, and the only program
  43. they use is Emacs! You can do literate devops, play games, edit
  44. remote files, program in any programming language. It is a fabulous
  45. and extremely customize text editor.")))
  46. (section (@ (class "section-background"))
  47. (article (@ (class "basic-section-padding"))
  48. (img (@ (width "300px") (src "./images/guile.svg") (alt "guile logo")))
  49. (p (a (@ (href "https://www.gnu.org/software/guile/")
  50. (target "_blank")) "GNU Guile")
  51. " is the GNU Ubiquitous Intelligent Language
  52. for Extensions, the official extension language of the GNU system. It
  53. allows one to extend their application in what is perhaps the best
  54. programming language in the world: scheme. It supports most
  55. programming paradigms, is reasonably fast, has numerous features that
  56. many languages lack, and is famously flexible in the things that it
  57. can do.")
  58. (p "GNU Guile is an implementation of scheme, with the goal of
  59. helping programmers create flexible applications. If bits of your
  60. application need to be preferment, then you can write those bits in
  61. C. Guile has great support for inter operating with C.")))
  62. (section
  63. (article (@ (class "basic-section-padding"))
  64. (img (@ (width "300px") (src "./images/openbsd-textual-logo.svg")
  65. (alt "hurd logo")))
  66. (p (a (@ (href "https://www.openbsd.org/")
  67. (target "_blank")) "OpenBSD")
  68. " is perhaps the most secure operating systems know to man. They refuse to sign
  69. any NDAs or allow proprietary software in their OS (though they do allow
  70. proprietary firmware, which is needed for various hardware to function). They
  71. design of OpenBSD is pretty slick, and the developers are really prolific
  72. software developers. They have developed httpd, opensmtpd, and quite a few bits
  73. of software. They support 14 different platforms including riscv64, amd64,
  74. arm64, powerpc, and some other ones. That's really quite impressive! They have
  75. designed new security features including pledge and unveil. If you want a really
  76. powerful safe-by-default OS, then OpenBSD is really worth your time.")))
  77. (section (@ (class "section-background"))
  78. (article (@ (class "basic-section-padding"))
  79. (img (@ (width "300px") (src "./images/hurd.svg") (alt "hurd logo")))
  80. (p (a (@ (href "https://www.gnu.org/software/hurd/")
  81. (target "_blank")) "The GNU Hurd")
  82. " is the GNU project's official kernel (of course I've
  83. saved the best for last). It is currently not as feature-complete as
  84. it ought to be, but it has a ton of amazing features like the
  85. possibility of extending the kernel with high level languages like
  86. scheme or python. It is based on the design of a microkernel. It's
  87. kernel is only about 90,000 lines of code, whereas the Linux kernel is
  88. approaching 30 million lines of code. The GNU/Hurd wants to support
  89. an extensible operating system, where the user is free to securely
  90. change virtually any aspect about their system."))) )