HackerTrans
TopNewTrendsCommentsPastAskShowJobs

stephenwithav

no profile record

comments

stephenwithav
·2 năm trước·discuss
Run this on your Watch Later page in your console:

let x = $x;

let buttons = $$('div#contents div#contents div#menu button');

let delay = 1000;

for (let i = 0; i < buttons.length; i++) {

  setTimeout(() => buttons[i].click(), 100+(i*delay));

  setTimeout(() => x("//span[contains(text(), 'Remove')]")[0].click(), 800+(i*delay));
};

...increase delay if needed.
stephenwithav
·3 năm trước·discuss
Use an LLM like Llama2 to manage your personal sprints. Have one for 2-week sprints, daily standups, and of course epics.

Prompt it to help you develop a plan. I use ollama.ai to help me.

Example:

https://github.com/stephenwithav/Modelfiles/blob/master/busi...

edit: It doesn't provide perfect results, but it gives you a good start.
stephenwithav
·3 năm trước·discuss
If your computer's strong enough, install several models with ollama. Learn to prompt, fine-tune them.

https://ollama.ai/library
stephenwithav
·3 năm trước·discuss
Erlang/OTP is great for distributed coding, but how well does Phoenix integrate with AWS/GCP?