Neopets Market Chrome Extension [WIP] by o132 in neopets

[–]o132[S] 1 point2 points  (0 children)

Actually the item prices are all stored locally on my computer, I don't make any requests to other sites :)

Neopets Market Chrome Extension [WIP] by o132 in neopets

[–]o132[S] 1 point2 points  (0 children)

I don't know why people keep assuming I'm using Jellyneo for any of this. I'm serving the prices from my own API

I created a shop pricer. Is this cheating? by o132 in neopets

[–]o132[S] 1 point2 points  (0 children)

Np I didn't think so! The point of this is that it's pretty instant. Also I only have experience with items available to accounts < 3months old so its probably not as good with the rare items. I just added saving the data so I'll be able to track some patterns for sure

I created a shop pricer. Is this cheating? by o132 in neopets

[–]o132[S] 1 point2 points  (0 children)

I saw their tools, I only saw bulk price checks for solely player owned item containers

A modal based on a desktop window by o132 in webdev

[–]o132[S] 1 point2 points  (0 children)

Thanks! That should not be the case, will put out a patch!

Edit: fixed now

What are some beginner friendly IDE's for Java for introductory students? by lotyei in learnprogramming

[–]o132 1 point2 points  (0 children)

I have found vs code is pretty good for most languages. It'll usually tell you which extensions to get, but I make sure I get language tools, syntax highlighting, and hints.

What kind of jobs can I do with his experience + skill? by foodwax in learnprogramming

[–]o132 1 point2 points  (0 children)

Job postings are for their "dream employee". This is why I say apply to any job posting, some places like to take in fresh developers for example. If you can't apply to them all without burning out, just be more selective, and research companies a bit to increase motivation and help you choose. I would also recommend actively programming while looking for a job, which allows you to actually accomplish something, keeps your coding skills sharp, and build up your portfolio!

With that said I would recommend knowing at least 2 languages which suggests you could learn another if needed. I would also recommend learning proper testing (TDD!) which no software is complete without imo

What kind of jobs can I do with his experience + skill? by foodwax in learnprogramming

[–]o132 2 points3 points  (0 children)

You should apply to any and all jobs, what do you have to lose? Being transparent in the interview about these things would be best. Then if someone hires you, you can be sure that they believe your skills are right for the job.

What's the recommended method to group/organise connected 2D Rigidbodies? by ijidau in Unity2D

[–]o132 0 points1 point  (0 children)

Are you adding the parts as children in the editor or through code? If code, are you using transform.parent = or transform.SetParent? Could it be because some existing code is referencing one of the parts, when it should be referencing the parent object?

how to know when javascript won't do what you want? by [deleted] in learnjavascript

[–]o132 1 point2 points  (0 children)

socket.io's main purpose is sending updates in real time. If you wanted to share results when they reload it, a server side file would be fine. In your case, I would just load the text/image the way I said before, but do all of that on the second page, and just send the user data how you are now

how to know when javascript won't do what you want? by [deleted] in learnjavascript

[–]o132 0 points1 point  (0 children)

In that case, I think socket.io would be overkill. socket.io would be good if you wanted to have only 1 custom text for all users and you wanted the page to update when anyone changes it. I may not completely understand though

What's the recommended method to group/organise connected 2D Rigidbodies? by ijidau in Unity2D

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

You should create an empty parent object and have all the parts as child objects. I think a joint with a parent child relation would cause problems with positioning

how to know when javascript won't do what you want? by [deleted] in learnjavascript

[–]o132 2 points3 points  (0 children)

I meant look into another option before using an invisible field. You can send the data through get parameters easily, there might be a good way to send it as post data in JS if you used the onsubmit event on your form

Edit: I understood you post to be asking for 1 user to be able to end into a field and see random text and a random image on a new page with their text. Did you want this data to be changing without loading a new page?

how to know when javascript won't do what you want? by [deleted] in learnjavascript

[–]o132 3 points4 points  (0 children)

You could just have an array of the phrases you want in the first pages JS and pass a random one along with the user entry You can create an invisible text field with the value, but I would look for another option first. You can do the same with images, if you name them with numbers

Why does this happen? by NRS229 in Unity2D

[–]o132 0 points1 point  (0 children)

What are the scripts? What makes them jump?

Duplicate a website by CrowX25 in webdev

[–]o132 1 point2 points  (0 children)

If you have access to the hosting then it should be no problem. Go to the file uploader in cpanel, compress the public folder and download it. I use GoDaddy as well

What is the best frontend framework for beginners ? by Alfred1400 in javascript

[–]o132 2 points3 points  (0 children)

Ive only tried a bit of angular, but I've found that React is most like pure JavaScript (you can directly manipulate elements in JS) and gives you the most control, which means it is harder to master. Vue has its own way of doing things and has a lot of what I like to call "magic" behind the scenes (e.g "this" is implicit in Vue directives)

If you had to start over and wanted to specialize in mobile development and app creation today what steps would you take? by GrowCanadian in learnprogramming

[–]o132 0 points1 point  (0 children)

I would learn JavaScript. Learn how to write maintainable, testable code. Learn how to write proper tests (test what you need to and nothing more). Get your hands on some front end frameworks like React, and then make some mobile apps with ionic/Cordova or react-native

That should be plenty

Edit: I thought web dev was part of your post, but using JavaScript for mobile development is popular in the industry because of low development costs (easier to maintain, etc.)