Jump to content

Spoiled_Kitten

Member
  • Posts

    359
  • Joined

  • Last visited

Everything posted by Spoiled_Kitten

  1. Hi there, I am building a system for storage which will most likely have a raspberry pi as the host. How would I make it so I could easily search in all “boxes” and then see if they have the item that I am looking for. I would be using Python 3 #CODE EXAMPLE THINGY# Box1 [car,dog,sheep] Box2 [rock,cat,sheep] Input for search “sheep” Then searches all boxes I have made to see if it that has sheep in them If it has them then it goes: OUTPUT: Sheep in box 1 and 2 Else goes item unavailable. Input for search “car” Searches all boxes I have made to see if it has car in them* If it has them then it goes: OUTPUT: Car in box 1 This is an example and colours, led and items in box would be different. I don’t mind just needing to use the terminal in order to find an item that is required. If you have any questions feel free to ask and I will try and get back to you ASAP. I am not asking for someone to code the entire thing I am just asking if anyone knows any systems that have been made like this and if there is any ideas on what systems I should use. If you want to reach me privately my discord is Spoiled_Kitten#4911 Thanks, Blake McCullough
  2. Hi all, I was working on a site for a friend and I have an issue with the site where when I scroll fully up to the top it formats and resizes everything to leave a giant white area in the side, The site is life (please no griefing). I have attached a video showing the error, I have looked through the code and had some mates do so but we haven't been able to fix it. Url: https://www.viewtech3d.com.au/ Thanks, Blake 500626174_Home-viewtech3D-GoogleChrome2021-01-0612-12-18.mp4
  3. Hi all, Just wanted to show all my site I have made for school, can anyone give me some feedback on how I could improve it? I wish to increase my skills and feedback is one of my favourite methods. I used visual studio code in order to make the site so all HTML,CSS and Javascript! I have included a zip file with all the files if u wish to install that instead of the site. Thanks, Blake! Link to the site is: https://github.com/Blake-McCullough/Dr-Montogerys-Zoo
  4. Yeah i think i will end up doing that, but was just seeing if there was another way
  5. It's a m.2 drive. ill look into it. I also need to have the programs, so network folders wouldn't work It is a drive PC not network as i haven't got that setup. I'll have a look into it, however i don't think it will do for all programs and stuff. Yeah i'm aware that copying programs isn't a good idea and that is why I don't want to do that, I'm not sure how to do the image install with the files on Windows, would it be similar to linux? It has usb-c type 2 i believe but usb transfer isn't my favourite option as the other laptop would need to be in use as It is for work and runs like all day, and can't stop as self employed and every minute without using it is costy.
  6. I can copy via usb but want to be able to copy the software as well as some of it isn't available anymore.
  7. Hi all, I'm not sure which topic it fits so I put it in this one. I am upgrading my laptop(an xps 13 2 in 1 2016) to the 2020 model, I wish to be able to easily move all my files and software to my new PC, is there an easy way that i can do this, Say with IPhone where u can setup from another device which is already setup and nearby. Thanks, Blake
  8. Just ran it, Looks awesome! Congradulations on making it!
  9. ah ok, that makes sense, i was using an online emulator.
  10. Doesn't work when trying t run, looks good though.
  11. cause it changes quotations and stuff, ill try though.
  12. yeah lol, thats basically it. except i have it so itdoes, hacking. then hacking.. then hacking... then restarts and those lines are deleted after running
  13. Hi all! Wish to share the python 3 code i made that makes it appear as if u are hacking in case anyone needs it! I have two made, One with 100% chance of success and one with a 95% chance of success 100% chance of success code: https://github.com/Blake-McCullough/FakeHackingPython3 95% chance of success code: https://github.com/Blake-McCullough/FakeHackingWithChanceOfFailPython3 I also have attached the code if u wish to download it. Thanks, Blake Fake hacking with chance of fail.py Fake Hacking.py
  14. Hi all! I wish to share the discovery i made for deleting the last line in the console on python 3, I hope this can help someone, any questions please redirect to me, Thanks, Blake code: import os import sys import time #last line deletion def delete_last_line(): "Use this function to delete the last line in the STDOUT" #cursor up one line sys.stdout.write('\x1b[1A') #delete last line sys.stdout.write('\x1b[2K') ###DEMO### print("this line will delete in 5 seconds") time.sleep(5) delete_last_line() The link to the github with the code and more is : https://github.com/Blake-McCullough/LastLinePython3Delete/tree/main Attached is also the file for deleting the last line if u wish to just download it. Last line python 3 delete.py
  15. I wish to make it so that in godot 3d, when a player touches a block it loads them to a new scene, how to i do this? i cant seem to find how to, thanks
  16. i doubt that, i suck at it xd, i just know c++ so i use that...
  17. I have a server, and im looking for people to play on that server with me, I also like to make packs that i want to play with others,
  18. Yeah im sure that could work, just that worked for me when i was making the program.
  19. I had been spent ages trying to figure out how to open a file that was in the same folder as the bat file, and could be moved to other ones, i worked that out and i wish to share it with others, so they can have a look, i can receive feedback, and so others wishing to do the same can with ease.

    The code is:

    ::This opens file in same directory
    pushd %~dp0
    ProgramInSameFolderAsBat.exe
    popd
    ::Made By Blake McCullough

    It is also available on my github to download:

    https://github.com/Blake-McCullough/OpenFileInSameFolderBat

  20. I had been spent ages trying to figure out how to open a file that was in the same folder as the bat file, and could be moved to other ones, i worked that out and i wish to share it with others, so they can have a look, i can receive feedback, and so others wishing to do the same can with ease. The code is: ::This opens file in same directory pushd %~dp0 ProgramInSameFolderAsBat.exe popd ::Made By Blake McCullough It is also available on my github to download: https://github.com/Blake-McCullough/OpenFileInSameFolderBat I posted this as a post in the forums so others can easily find it, Please mods leave this thread open so i can get feedback and can help others using this.
×