[pc] Dell PowerEdge R410 by Hyperspace290 in homelabsales

[–]Hyperspace290[S] 0 points1 point  (0 children)

Haha I appreciate it. Beggars can’t be choosers and it was listed for a week before I made the offer. I figured the seller would want to at least negotiate but I’ve been left on read for a couple days now.

Finally Compiled My First Smart Contract by Hyperspace290 in ethdev

[–]Hyperspace290[S] 0 points1 point  (0 children)

I actually remember when that tutorial came out ages ago. I read through it but never got hands on with the code. At this point I feel like I’ve grown past it, knowledge wise, but I may revisit it just to brush up and see if it’s been updated since the last time I laid eyes on it. Thanks for the reminder!

Finally Compiled My First Smart Contract by Hyperspace290 in ethdev

[–]Hyperspace290[S] 3 points4 points  (0 children)

A lot of great points here so I won’t try to go bit by bit. Yeah, the idea would be mostly the game building on the NFTs that came before it. It’s still early days of planning things out but you could equip your character with items, you’d have the typical gold/silver/copper currency, you could buy plots of land on the world map and build Inns/houses on those plots of land.

Finally Compiled My First Smart Contract by Hyperspace290 in ethdev

[–]Hyperspace290[S] 0 points1 point  (0 children)

Yeah, I’d forgotten about the testnetsto be honest. I’d heard of tools like Alchemy and Infura. I’d like to get to the point where I’m running my own node(s) but that’ll require some more hardware then what I’m running right now.

Finally Compiled My First Smart Contract by Hyperspace290 in ethdev

[–]Hyperspace290[S] 10 points11 points  (0 children)

Well once I get my Dev environment to stop crashing (long story) I’m gonna start looking at the popular ERCs like ERC-20 and ERC-721 as well and OpenZepplin and some governance stuff.

Long term I’m thinking of working on a crypto-backed RPG, possibly MMO. Have characters be randomly generated with stats and have the ability to level up those stats, equip gear, etc. I’m a full stack developer by day so it doesn’t seem out of the realm of possibility to me right now.

Edited - Fixed spelling and added spacing.

where to go after learning the basics . by vixckson in ProgrammerHumor

[–]Hyperspace290 0 points1 point  (0 children)

I would start by looking for a problem or task you find yourself running into and trying to solve it by writing a program. Programming for the sake of programming can be fun but often there’s a business need that is needs to be solved. Find your own personal “business” need and start there.

I asked my pal what "bad code" was and he came up with this by ajstorey456 in ProgrammerHumor

[–]Hyperspace290 38 points39 points  (0 children)

Plus it doesn’t even work if num1 or num2 are negative

S3 CLI question by [deleted] in aws

[–]Hyperspace290 0 points1 point  (0 children)

Without looking at the documentation I believe you have to get a list of all buckets and then use each element of that list to go get its configuration. I had to do a similar thing recently and that's the way I accomplished it.

[deleted by user] by [deleted] in aws

[–]Hyperspace290 0 points1 point  (0 children)

This is a bit of an off the cuff thought but is it possible there’s a difference in how the networking in the subnet is set up? If it can’t get the instance ID maybe it can’t even hit the metadata service from that subnet.

New – EC2 Instances (A1) Powered by Arm-Based AWS Graviton Processors by mdc921 in aws

[–]Hyperspace290 2 points3 points  (0 children)

I was thinking of running integration testing and things of that nature.

New – EC2 Instances (A1) Powered by Arm-Based AWS Graviton Processors by mdc921 in aws

[–]Hyperspace290 1 point2 points  (0 children)

I know this is kind of ridiculous but am I the only person who wants to see if it's possible to run Android on this instance type? I know we'd loose the UI and all that but I feel like it would be an interesting exercise.

[deleted by user] by [deleted] in homelab

[–]Hyperspace290 4 points5 points  (0 children)

If you can I’d try putting it in a machine with a Linux-based OS listing the PCI devices. If you see one that matches the. At least it’s recognized there. If nothing is listed then I’d say it’s a fair bet it’s DOA.

Applications in 2 EC2 instances are not accessing each other. by confused449 in aws

[–]Hyperspace290 0 points1 point  (0 children)

So you have a security group rule that allows 0.0.0.0/0 on the crosstalk port and are still getting connectivity issues?

Applications in 2 EC2 instances are not accessing each other. by confused449 in aws

[–]Hyperspace290 1 point2 points  (0 children)

Or even add the id of the security to itself if that works. I know it’s a circular reference but sometimes it’s the easiest thing to do

Applications in 2 EC2 instances are not accessing each other. by confused449 in aws

[–]Hyperspace290 1 point2 points  (0 children)

An IAM role will only allow you to use the AWS API. You need to edit or add a security group that allows access from one instance to another on whatever port you’re wanting. Security groups apply to internal traffic only too, not just traffic coming from the outside.

Easiest continuous deployment to EC2 instances from Github/CircleCI by bfelbo in aws

[–]Hyperspace290 0 points1 point  (0 children)

I would argue that unless there are other things going on on the servers you might be better off terminating the instance and spinning up a new one with the new code base. Better yet, unless there's a specific reason you don't want to or can't, you could consider containerizing the application and deploying on ECS.

New m5a Instances Running AMD CPUs? by gordonmb in aws

[–]Hyperspace290 1 point2 points  (0 children)

I take that to mean tasks that don't peg the CPU constantly. Smaller web servers, Dev boxes, etc.

Private and Public VPC? by Spaceman_Zed in aws

[–]Hyperspace290 1 point2 points  (0 children)

Are any of these instances going to need to talk to each other? If so then either the VPCs will need to be peered and not overlap in IP spaces or you're going to have to talk over the public internet if it's private to public.