User:Jontow: Difference between revisions

From WTFwiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 3: Line 3:
* Name:  Jonathan Towne
* Name:  Jonathan Towne
* Email: jontow AT hijacked DOT us
* Email: jontow AT hijacked DOT us
* Profession:  UNIX System/Network Administrator; involving Network Security, Development, and other.
* Profession:  UNIX System/Network Administrator; involving Network Security, Development, and other.. they tell me this is "DevOps" now.




Line 15: Line 15:


=== Scratch Space ===
=== Scratch Space ===
[[Cloud_AWS]]
[[JontowTest]]
[[JontowTest]]



Latest revision as of 12:46, 19 October 2022

Contact Details

  • Name: Jonathan Towne
  • Email: jontow AT hijacked DOT us
  • Profession: UNIX System/Network Administrator; involving Network Security, Development, and other.. they tell me this is "DevOps" now.


TODO

Deployments

Misc Code

Research

Scratch Space

Cloud_AWS JontowTest

% -- Note: Part 1 uses ?MATCHSTRING1
%

-module(day4par).
-export([tc_solve_part1/0, tc_solve_part2/0,
         prof_solve_part1/0, prof_solve_part2/0,
         solve_part1/0, solve_part2/0,
         worker_run/1, foreman_run/3]).
-define(MATCHSTRING1, "00000").
-define(MATCHSTRING2, "000000").
-define(SEED, "iwrupvqb").
-define(WORKERS, 2).
-define(MBOXDEPTH, 5000).
-define(BACKOFFMS, 250).

tc_solve_part1() ->
    timer:tc(fun() -> solve_part1() end).