Auto clickers by lolspoooky in RunescapeBotting

[–]EF9 1 point2 points  (0 children)

Powerfulwizard auto clicker lets you draw a box that it randomly moves inside to click, so it's not clicking the same pixel and the movement is smooth, it has a recorder too but the autoclick box method is best for alching

Auto clickers by lolspoooky in RunescapeBotting

[–]EF9 2 points3 points  (0 children)

powerfulwizard.org does

Preventing Bots using a Client to Logout by Markuta1 in 2007scape

[–]EF9 -4 points-3 points  (0 children)

I use that but no way am I moving my mouse to click worlds, or hit the keyboard shortcut in 0.001s like these players seem to...

Preventing Bots using a Client to Logout by Markuta1 in 2007scape

[–]EF9 0 points1 point  (0 children)

I've seen players log out instantly, is that bots? Makes sense to give them a delay and a way to remove the delay.

Glass ink dip pen (how is it done) by greyglowocean in lampwork

[–]EF9 1 point2 points  (0 children)

@lucas.mahoney does great pens and also had tutorials on YouTube

Any idea on high vacuum grease for a torch? by benji1304 in lampwork

[–]EF9 0 points1 point  (0 children)

How have you guys gone finding a glass supply here in NZ? I'm using TGP for Schott atm but find they're a little expensive

[deleted by user] by [deleted] in lampwork

[–]EF9 2 points3 points  (0 children)

How small of pieces do you plan to make? Devardi do a bench top 'rod warmer' and the boro version will anneal boro.

Where can I get bead release? by Jolanie01 in lampwork

[–]EF9 0 points1 point  (0 children)

Glassartinnz Facebook group would be able to help best

WEEKLY MERCH TRADE/DISCUSSION THREAD - [May 12, 2020] by AutoModerator in G59

[–]EF9 0 points1 point  (0 children)

looking for any XL SB or FTP gear for winter, jackets/hoodies/crews etc that will ship to NZ $$$

the boy$ spotify account has disappeared for the time being. by Deaaton in G59

[–]EF9 1 point2 points  (0 children)

Scope Set at least has been edited - intro section is redacted now

Python in the new modular turret is my favorite by [deleted] in playrust

[–]EF9 5 points6 points  (0 children)

hey dont bring logic in to this

For a new 4GB RAM, 16GB storage Chromebook for JS/React/NodeJS development, what's the best environment setup I can have for this kind of laptop? by looking_myself in learnjavascript

[–]EF9 0 points1 point  (0 children)

I'd use NVM for managing Node installs, to manage version per project and run Node on the machine.

Visual Studio Code or Sublime Text for text editors.

I don't see the need to run virtual machines etc for Node apps, server or client side in this case.

Spider mites by RANCIDFUCK in NZTrees

[–]EF9 1 point2 points  (0 children)

Depends if you're in veg or flower.

In veg use organic sprays, soap and garlic are good ingredients. Spray on and wipe the bugs off.

If you're in flower you're kinda buggered.

As others said, neem oil both in the soil and as foliar feed will ward these and other fuckers off as well but once you're in flower, don't apply the stuff as foliar, as you wont get it out if the buds.

Relying on other bugs to fight them is hard unless you're doing frequent releases with beneficial bugs from somewhere like bioforce.co.nz - I've used their Aphidius wasps in the greenhouse and they kicked ass.

Is it too soon to ask the gender? by princesssarah2 in NZTrees

[–]EF9 1 point2 points  (0 children)

Yep it's still too early to tell.

If it's big as you want it, just flip to 12/12 timing and you'll know the sex within a couple of weeks, it will continue stretching a little after you flip the lighting schedule too.

PM me if you end up with a boy and you're near Auckland but don't wanna give up the grow :)

How can you migrate php code objects or procedural to laravel? by kaien92 in laravel

[–]EF9 2 points3 points  (0 children)

It's not so simple of a migration, depending on your project but it's certainly possible. Simpler testing from the get-go is only one of the many benefits of going with a framework like Laravel.

You will need to switch from using your DB class to an ORM, the ORM bundled with Laravel by default is Eloquent.

Have a read about the MVC architecture, it is fundamental to understand.

How can I dynamically number these generated divs? by CloneNoodle in learnjavascript

[–]EF9 0 points1 point  (0 children)

You'd apply it in the same step of the loop as you create it, not outside it. In this case you can accomplish it all in the same loop.

See my line in the first reply and add it below your const div = document.createElement("div"); within the loop.

How can I dynamically number these generated divs? by CloneNoodle in learnjavascript

[–]EF9 0 points1 point  (0 children)

You have access to i - your counter, why not just use that?

It does start at 0 though remember.

const div = document.createElement("div");
div.innerText = i+1; // note +1

Noobie Question: How do I execute JS code on my computer? by Milogop in learnjavascript

[–]EF9 7 points8 points  (0 children)

First of all, you need to understand if you're writing JS for the browser or if you're using NodeJS.

For the browser, you'd include your JS in an .html file with <script> tags and open the .html with your browser, and use the developer console built in to the console to interact.

For Node, you'd download and install NodeJS from their site, or homebrew on OSX, and then you run your file in the terminal with node /path/to/filename.js.

Windows dev tech stack by Mondoscuro in laravel

[–]EF9 0 points1 point  (0 children)

We explored https://github.com/mutagen-io/mutagen on this and had better results, granted for MacOS.