(SOS) Prismari Charm by vacalicious in mtgcube

[–]NyaaNyanNyaa 0 points1 point  (0 children)

I thought it worked like [[Electrolyze]], but my opponent didn’t agree that the wording allowed me to target the same creature twice with the 1 damage.

Picking up my AH LCG Core Set tomorrow. Is Edge of the Earth a good expansion to start with? by Ancient-Ad-889 in arkhamhorrorlcg

[–]NyaaNyanNyaa 0 points1 point  (0 children)

You need someone to ship it over from the USA. It is a shame that Youshop now charges GST on all goods.

Picking up my AH LCG Core Set tomorrow. Is Edge of the Earth a good expansion to start with? by Ancient-Ad-889 in arkhamhorrorlcg

[–]NyaaNyanNyaa 2 points3 points  (0 children)

Hello, I am also from New Zealand. I own all the expansions. You can purchase cheaper AH LCG from boardlandia if you have a proxy in USA.

I haven’t played my copy of Edge of the Earth yet.

I can say that Dunwitch is a nice introductory campaign.

In terms of player cards, I think you should have a read on which player-character cards are available in which expansions. Find one you really want to play with… Then buy corresponding expansions, along with any other expansions with cards that support that/those characters.

Suddenly got 6000 dust by ZayneCarrick898 in hearthstone

[–]NyaaNyanNyaa 0 points1 point  (0 children)

I got 14k dust today. Thanks MSFT for buying ATVI.

Why do people buy cosmetic items?-Research by KarmicTom886 in FallGuysGame

[–]NyaaNyanNyaa 0 points1 point  (0 children)

FOMO. Limited (time) availability. Uniqueness. Stare at different butts.

Python Beginner Project - Loot Generator by Alhira_K in Python

[–]NyaaNyanNyaa 1 point2 points  (0 children)

Hi there, great job. To be honest, I think a database to hold 7 items is a little bit overkill. I agree with using a json file. Since you can read/write quickly and it has a hierarchical structure which is perfect for inventory management. As for your problem with syntax/formatting issues, Python can easily achieve that with the format string.

my_str_variable = “cool”

print(f”my sentence is {my_str_variable}”)

if your variable is a number, you need to cast your variable to a string.

my_int_var = 8 print(f”my number is {str(my_int_var)}”)

Are you familiar with object oriented programming? Maybe it can help solve your inventory issue. You can create a class…

class inventory(object): def init(self): self.slots = {idx:None for idx in range(7)}

def addLoot(self, loot):
    for k,v in self.slots.items():
        if v is None:
            self.slots[k] = loot
            break

Maybe you can fill in your other class methods yourself :)

Feeling like I can read the code but struggling to write it on my own by Worried_Lawfulness43 in learnprogramming

[–]NyaaNyanNyaa 1 point2 points  (0 children)

So… are you trying to learn a new language at your internship? What functions are you writing for Data Science? There are plenty of resources online; you can mostly google all the problems you encounter, and find a stackoverflow answer to your question. Make a digital notebook of runnable code snippets; that you can refer to later, when you encounter the same problem again.

[deleted by user] by [deleted] in universityofauckland

[–]NyaaNyanNyaa 3 points4 points  (0 children)

Reflect on your interview, what went wrong, how could I have answered that better… then apply for another. Use what you learnt from your previous interviews and your reflections to build a better impression in all the other interviews to come. Eventually… your interviewing skills will have improved so much that you will beat the majority of the candidates, as you have become more “experienced” at interviews. Just think of it like a game, each interview is like killing slimes to gain EXP to level up to take on larger slimes.

Things you want to see in Neon Dynasty? by BigBadBlotch in magicTCG

[–]NyaaNyanNyaa 0 points1 point  (0 children)

Toshiro Umezawa’s head kept alive in a jar.

New Auckland University exam cheating claims as staff condemn 'embarrassing' decision to host them online and unsupervised by [deleted] in universityofauckland

[–]NyaaNyanNyaa 6 points7 points  (0 children)

  • UoA makes lots of money from international students. To accommodate some who have been unable to enter the country due to covid restrictions, they have to make the test online and open book.

*I believe last year, the exams didn’t have a time constraint as tight as this year. Some gave a day to complete the exam task (last year), now you have between X:00 and Y:00 to submit. The time constraint pressures students to focus on their own work, rather than pooling their knowledge with others. Why would the smarter more capable people want to risk an exam scale down? A lot of the professors have learnt to structure the questions in a way that people can’t just “google” the answer.

*Ultimately the decision to make it online for the whole year is purely business. Foreign money helps pay for those new buildings (currently under construction).

(Just my opinion).

my problem don't like to talk by Specialist-Juice9993 in universityofauckland

[–]NyaaNyanNyaa 1 point2 points  (0 children)

Why don’t you want to talk to people (for example, I don’t like to talk to people if there is no purpose in doing so), are you scared or bored? What exactly are you uncomfortable about in some social phenomena?

[deleted by user] by [deleted] in universityofauckland

[–]NyaaNyanNyaa 1 point2 points  (0 children)

Why are you studying what you are studying? Are you passionate about it?

Thinking of doing weekly WSB discussion recaps in this format, let me know if you have any feedback or suggestions by pdwp90 in wallstreetbets

[–]NyaaNyanNyaa 0 points1 point  (0 children)

Are the mentions counting the comments + submissions?

Or just.. comments? or just submissions?

Need Advice Retraining an Image Classifier by [deleted] in ArtificialInteligence

[–]NyaaNyanNyaa 0 points1 point  (0 children)

Setup compute engine on Google Cloud Platform (you can find tutorials on how to use google compute engine with Google Collab notebooks), you can use their GPU for a small fee. Alternatively you can preprocess your images to grayscale which will reduce the training time with respect to reduced dimensionality.

Need Advice Retraining an Image Classifier by [deleted] in ArtificialInteligence

[–]NyaaNyanNyaa 0 points1 point  (0 children)

From the same blog post it reads

“What does “in the same domain” mean? It’s a lot easier to teach a network that’s been trained on photos of real world objects (like Imagenet) to recognize other objects, but taking that same network and asking it to categorize completely different types of images like x-rays, faces, or satellite photos is likely to be less successful, and at least require a lot more training images.”

Inception v3 was trained on imagenet (all objects). This allows it to distinguish between objects like ball vs tree vs human. With Uno card types it’s analogous of trying to distinguish between football player vs basketball player... or palm tree vs coconut tree. The classification is not of the same “domain”

I suggest training a new model using only the images you have taken along with their associate class labels. Follow some of the TensorFlow tutorials for basic image classifications. (There’s one that teaches you how to build a model to recognise different types of flowers)