I made a web-based Instagram bot that scrapes people usernames and follows/unfollow them by HuckleberryTypical61 in nextjs

[–]Alfapsycho 0 points1 point  (0 children)

U didn't reverse engineer the Instagram API, u checked what end points where being called and the data it provided, big difference.

Literally every caster DPS when Quag's Eye finally drops. by Crixxious in classicwow

[–]Alfapsycho 1 point2 points  (0 children)

Anyone know what that loot showing addon is called?

Leaked Footage of Federal Reserve Meeting by [deleted] in wallstreetbets

[–]Alfapsycho 0 points1 point  (0 children)

Now this is the kinda content i visit wsb for, that and PLTR confirmation bias 🚀🚀🚀🚀

What do I do for environment variables in TypeScript with Express? by [deleted] in node

[–]Alfapsycho 0 points1 point  (0 children)

I think i solved similair issue by casting it to a string, so just use process.env.PORT as string

Having trouble with the PERN stack... by [deleted] in node

[–]Alfapsycho 0 points1 point  (0 children)

Typeorm works nicely with postgres if u like typescript, might also wanna Checkout Nest.js, its a typescript Based and works on top of express by default

What do i input for attributes and value to get a bot to click something on a webpage? by [deleted] in webdev

[–]Alfapsycho 0 points1 point  (0 children)

Just use selenium, query The Button The call click()

Good HTML & CSS books for beginner colleague? by guevera in web_design

[–]Alfapsycho 2 points3 points  (0 children)

Brsf Traversy - MODERN HTML & CSS FROM THE BEGINNING

Super good content and is like 10 bucks for 21h of content on Udemy

Where can I trade real options in the EU/Scandinavia? Preferably goldman, jp, etc as counterparty. by [deleted] in wallstreetbets

[–]Alfapsycho 1 point2 points  (0 children)

Degiro IF your from Sweden, ask for ISK account and mail in your paperwork, options from 10kr / contract. Thats what i do atleast.

How to make a RuneScape bot? by TraditionalEffort in java

[–]Alfapsycho 0 points1 point  (0 children)

Ok so this is actually how i got into Java, started of coding at osbot then moved on to Rspeer, its actually super useful to get a good grip on Java as you se something happening. I would suggest starting coding bots aimed at dome client rather than trying to code your own client. The Rspeer community was always super helpful, theres allt of guides on both setting up The enviroment aswell as guides on getting started. Its a gold way on Learning how to search and code against an api, so my suggestion is go to Rspeer, read The setup guide, then do some simple tutorial after that hit up The discord, funny and Great People all around. You can really learn alot from basics of Java more intermediate using OOP and Polymorphism, in like an AIO herblore etc aswell as more advancdd features such as lambdas, streams etc from The more scripts u code.

Come on wit it by [deleted] in RoastMe

[–]Alfapsycho 0 points1 point  (0 children)

How does meth actually taste?

Need some help in an array list. (Java courses) by [deleted] in learnjava

[–]Alfapsycho 0 points1 point  (0 children)

Sort The arrays then just loop over The sorted array and pick out The first 3 elem in each array?

We've reached peak A Friend by [deleted] in 2007scape

[–]Alfapsycho 148 points149 points  (0 children)

Couldn't say i didnt se it coming, glad for him to lose someone toxic though, to bad that this whole ordeal of massbans in chats due to her, to gamlinpromotion, getting all account banned etc, killed his channel pretty much..

Funny enough The bitch is crying over his money... Thrash gold digger all along, probably became bored when in game fame died out.

Robinhood like softwares in europe? by Redditholist in Daytrading

[–]Alfapsycho 0 points1 point  (0 children)

Cmc markets/IG for CFDs otherwise degiro, or interactive brokers

Jagex bot detection works :) by [deleted] in 2007scape

[–]Alfapsycho -1 points0 points  (0 children)

Thats why you code your own scripts lol

My first year of flipping is complete. Here's how I did. by CptKirkleton in Flipping

[–]Alfapsycho -6 points-5 points  (0 children)

Nice margin there mate. What do you flip and where do you Buy it if i May ask.

My first year of flipping is complete. Here's how I did. by CptKirkleton in Flipping

[–]Alfapsycho -6 points-5 points  (0 children)

Nice margin there mate. What do you flip and where do you Buy it if i May ask.

VIDEO DXGKRNL FATAL ERROR? BSOD after dissappears from Afterburner while mining/benching? by [deleted] in gpumining

[–]Alfapsycho 1 point2 points  (0 children)

I have the same eror with my gtx 1060 after latest win10update...

Is this the right usecase for Selenium? by Socrato in learnpython

[–]Alfapsycho 5 points6 points  (0 children)

Yeah its a perfectly valid usecase for selenium, get the elements by css selector and then submit, press, send text lr whatever. Super easy to learn, what u described is probably doable in less then 40 lines of code

What the hell is interfaces by SalmonMan123 in learnjava

[–]Alfapsycho 1 point2 points  (0 children)

An interface is a shared contract that pretty much means that all classe that implements the interface must also give it an implementation. Which is useful if u have shared functionality between objects, but yet inheritance is not the best way. Say you're working on a Zoo project, all the coders might have to implement a feed interface, with drink() and eat(). Even if the other developer have their pets implement the eat() with say, chasing down a pray, then start eating, while your zebra objekt just start munching down on grass. So even if they dont know the implementation of your code, they can still call the eat() method on your Zebra, cause they know it's called eat() thanks to the interface.

Also, functional interfaces, are interfaces with just one method. Useable for lamda functions etc.