Jump to content

infamoustrey

Member
  • Posts

    67
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

About infamoustrey

  • Birthday January 11

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Near Gravity Falls
  • Interests
    Programming, Web Design, Carpentry, DIY
  • Occupation
    Full Stack Web Developer

System

  • RAM
    16GB
  • GPU
    AMD 550X
  • Storage
    512GB SSD
  • Keyboard
    Corsair Strafe RGB
  • Mouse
    MX Master 2S
  • Sound
    Logitech Z537
  • Operating System
    MacOS

Recent Profile Visitors

1,121 profile views
  1. Cursory glance online says to check out your JAVA_HOME environment variable.
  2. Also if you could get your hands on a cheap android device, there's almost certainly an app out there that could call out the date/time for her. I'm not sure if pushing a button is a requirement but the google voice assistant should be able to rattle the time off in most languages.
  3. .tabs { height: 100px; } .tab { height: 100% !important; } Seems to work for me.
  4. Yeah, but their profile must be public and you'll need their id. https://developer.valvesoftware.com/wiki/Steam_Web_API#Public_Data
  5. Most people won't do a project for you, if you need help with something specifically you'd want to provide an attempt otherwise for the most part you'll just be ignored. If you need help getting started, a simple google search revealed plenty of resources to help out.
  6. So important. The moment you realize this is the moment things begin to make sense.
  7. While true add elements to the dom, what could possible go wrong. XD
  8. This site is amazing wish I would have found it sooner, there is a bajillion of these https://esolangs.org/wiki/Joke_language_list
  9. If you know Javascript/NodeJs this could be a fun project, you could setup a simple command line program to do this. Just thinking on the fly here: most new websites have a search bar, take note of how they search(most you just post a simple query) to each of these and collect the first X number of articles and dump each article into a folder. Boom, research machine! You really wouldn't need to use any external libraries, most languages have some form of DOM parser/manipulator(thing used to manipulate web pages), and HTTP library for making requests. It will take some work and some fine tuning for sure, but ultimately you could customize it to include thousands of sites and make your own academic search engine.
  10. Hard to know without seeing the assertion error, posting that may let me know more to help. You may need to just wait for the selector to be available as not all elements are available on page load. From the Laravel Docs: // Wait a maximum of five seconds for the selector... $browser->waitFor('.selector'); // Wait a maximum of one second for the selector... $browser->waitFor('.selector', 1);
  11. @G1K777 What exactly are you getting back from the console? @Mira Yurizaki's suggestion should definitely work for a rogue process.
  12. If you are just looking for rando image links try here https://picsum.photos/ Discord uses oEmbed for slapping images in messages on their servers so that ref is here: https://oembed.com/ Discord Docs: https://discordpy.readthedocs.io/en/latest/api.html#message Behold the power Google Fu young grasshopper
×