stephenwithav·vor 2 Jahren·discussRun 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·vor 3 Jahren·discussUse 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·vor 3 Jahren·discussIf your computer's strong enough, install several models with ollama. Learn to prompt, fine-tune them.https://ollama.ai/library
stephenwithav·vor 3 Jahren·discussErlang/OTP is great for distributed coding, but how well does Phoenix integrate with AWS/GCP?
let x = $x;
let buttons = $$('div#contents div#contents div#menu button');
let delay = 1000;
for (let i = 0; i < buttons.length; i++) {
};
...increase delay if needed.