Jump to content

VirusDumb

Member
  • Posts

    687
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About VirusDumb

  • Birthday November 1

Contact Methods

  • Discord
    VirusDumb#9676

Profile Information

  • Gender
    Other
  • Location
    Kolkata,India
  • Interests
    Memes, games, PC hardware,tech, coding, music, anime titties, retro and vintage motorcycles, sci-fi
  • Biography
    Accidentally became a tech enthusiast in 2016 while trying to figure out why my potato family PC won't run the new plants vs zombies game (or any game that doesn't have 480p res settings as default)
  • Occupation
    School Student

System

  • Phone
    Oppo A12, 4gb/64gb variant

Recent Profile Visitors

3,983 profile views
  1. well the only mini PCs i can find on sale here in India are these used mini itx lenovo thinkcentres and afaik they probably consume more than 10-20watt
  2. I specifically was wondering about that a while ago, but now my current priorities are consuming as less power as possible and running for months on end without exploding
  3. So is it worth getting a bigger raspberry pi for that or should I look into some other single board computer?
  4. So I've been thinking about getting a raspberry pi for a while now but the bigger ones seem to be a Little expensive, so the zero 2w caught my eye so can I save some money by getting that one and will it do the following stuff: Keep running my multiple discord bots (will run 24x7, will it get damaged or overheat?) A little bit of Emulation and games Run some python iot projects Use samba share to host some of my games and movies And more stuff is it possible? If so what's the catch
  5. well until i get a raspberyy pi this seems the most economical option yet
  6. i dont need to 24/7 just need it to be online for 24 hours until last message
  7. That's the problem I can't keep my PC running 24/7
  8. so i made a bot following this tutorial right now it's a very simple bot just reads message and posts a reaction image or meme, but the method to keep the bot online on replit is now paid, and I don't have any dineros, so is there a way to keep my bot online for atleast 24 hours without any interaction and how do i import my file to that while keeping the env secrets and stuff, i tried pythonanywhere.com but it just won't connect to discord, please help me out
  9. holy fukin zhit, all this time the only problem was the channel I was posting to didn't have permissions for anyone to send messages except admins man upto now I have been coding on python using idle, this pycharm, visual studio and all confuse me a little so i went with replit for this one as it was on the tutorial.
  10. I read the docs and changed the intents from only messages to all, i had to go to the portal and enable some privileges but now when I said !hello it gave me an error looked the error up and the only answer in stack overflow isn't working on it
  11. it did nothing so it's not reading the messages at all
  12. So im trying to make a discord bot so I started following this freecodecamp.org tutorial and made some changes to it because somethings don't work any more my bot is up online but it won't repond to me import os import discord token = os.environ['token'] intents = discord.Intents.default() intents.messages = True # Enable message intents client = discord.Client(intents=intents) @client.event async def on_ready(): print('we have logged in as {0.user}'.format(client)) @client.event async def on_message(message): if message.author == client.user: return if message.content.startswith("!hello"): await message.channel.send("hello") client.run(token) here's the tutorial im following https://www.youtube.com/watch?v=SPTfmiYiuok&t=622s I googled for solutions but could'nt find any working ones, pls help
  13. I can do lists, Stacks and Queues which were in my syllabus, I gotta learn trees and graphs
  14. So, Im going to be attending college within a few months doing a bachelors in computer science engineering, I have nothing good to do in these months so i thought why not level up my skills a little, which I don't really have any except the python I learnt in school, now it's not much but I know basic stuff (if/elses, loops ,lists/tupples/dictionaries,functions, handling text files/binary files/csv files) and using mysql library to handle some dbms stuff, i wanna learn some more but ii don't know what to learn where to learn from, I want to get into making atleast 1 small project, I am really interested in ML and would also like to try some Iot stuff with a raspberry pi, but i have no idea how to go on about those things, what libraries to learn, and where and how should I learn them, I've been using IDLE to do python until now, so I have no idea what code editor should I even use, please help me out.
×