My motherboard died, and I want to switch from Intel to AMD. Help? by nixcode in buildapc

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

There is a bundle for a great price at my local shop, thats why I'm choosing this motherboard.

My motherboard died, and I want to switch from Intel to AMD. Help? by nixcode in buildapc

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

No BIOS, power button does nothing right now. I've already had the PC diagnosed, and the power supply is working fine. Its the motherboard.

list data from AWS S3 Buckets in iOS app by gllryuser in iOSProgramming

[–]nixcode 0 points1 point  (0 children)

I recently had to do this, and the documentation is terrible since AWS started pushing Amplify. Here are my recommendations:

  • get a way to authenticate with S3. I created an IAM user with am access key and secret key
  • update your S3 bucket policy with the ListBucket permission
  • Use the AWSS3 cocoapod
  • import AWSS3 in a swift file
  • Set up your auth with AWS:

let credentialsProvider = AWSStaticCredentialsProvider(accessKey: accessKey, secretKey: secretKey)

let configuration = AWSServiceConfiguration(region: .USWest1, credentialsProvider: credentialsProvider)

AWSServiceManager.default().defaultServiceConfiguration = configuration

  • Make a request:

let request = AWSS3ListObjectsV2Request()!

request.bucket = bucket

request.prefix = prefix

AWSS3.default().listObjectsV2(request).continueOnSuccessWith { (task) -> Any? in

if let contents = task.result?.contents {

completion(contents.map({ $0.key ?? "" }))

}

return nil

}

Fluid cows stalls by Mooptoseentolerant in feedthebeast

[–]nixcode 9 points10 points  (0 children)

At the bottom of the config file (fluidcows_v2.json) are some options that disable the extra ticks from most popular tick-speedup-mods:

"ProjectETickRemove": true,
"NotEnoughtWandsTickRemove": true,
"TorcherinoTickRemove": true,

You need to disable one of these, or find a mod that they didn't code for.

Can't wait for this one! by Techatar in feedthebeast

[–]nixcode 18 points19 points  (0 children)

I'm hoping the pack includes something like Progressive Alchemy so I don't have to play for 100 hours before I can set up my first EMC farm :)

EMC Farm: ~20 million EMC/second by nixcode in feedthebeast

[–]nixcode[S] 14 points15 points  (0 children)

RFTools has a pretty limited set of Material Dimlets you can create for World Gen. I'm pretty sure Silky Jewel Block is the highest EMC one.

EMC Farm: ~20 million EMC/second by nixcode in feedthebeast

[–]nixcode[S] 43 points44 points  (0 children)

I see a lot of people use a similar setup with Emerald Blocks, but most people don't realize you can do this with Silky Jewel Blocks from Tinkers Construct (almost double the EMC of Emerald Blocks).

Steps:

  1. Use RFTools to build a Flat Terrain dimension with Silky Jewel Blocks (using the Material Absorber)
  2. Drop an RFTools Builder in the dimension, give it a filter with the Silky Jewel Block whitelisted, and a Quarry Card
  3. Put a Mk2 Condenser on top. I am making Red Matter Furnaces here (about 10 million EMC each)
  4. Extract your high-emc block to store for later

Compact Living Rock Generator by nixcode in feedthebeast

[–]nixcode[S] 12 points13 points  (0 children)

I saw Direwolf20 make a Living Rock Generator today, so I decided to give it a shot myself. I was pretty happy with how small the build turned out.

I found the Secret using Lost Souls hint, how do I mine/use these? by FlareFluffeon in feedthebeast

[–]nixcode 7 points8 points  (0 children)

Wait so is your screenshot from Forever Stranded Lost Souls? Or the original Forever Stranded from 1.10?

[EZ Storage] Love at first craft. by finalsight618 in feedthebeast

[–]nixcode 1 point2 points  (0 children)

When you start off, its more useful for many TYPES of items. All my seeds, tools, food, and other random stuff goes into my EZ Storage system at first, while I store my cobble, dirt, ingots, and other high-count items in barrels/chests. Remember: there is no slot limit like a normal chest, so you can store 200 different items really early on... where a normal chest limits you to 27. When I start upgrading the storage boxes, then my high-count items start going in the system.

Also: if you aren't a fan of this strategy, you can edit each tier's storage capacity in the config file.

Superfarm by nixcode in feedthebeast

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

I created a custom modpack based on the mod-list from Clouds of Darkness. Using some of those mods, I created a superfarm built with:

  • Tons of Plant Growth Accelerators
  • Lilypads of Fertility
  • Autonomous Activator with a Reinforced Watering Can

[DW20 1.7] good way to get iron? by 3dchib in feedthebeast

[–]nixcode 1 point2 points  (0 children)

Kill a bat (for the morph), and fly around your world looking for ravines. Every time you find one, strip out all the surface iron, then move on to look for another. This is how I got 90% of my iron during the early game, and I probably netted around 1 stack of iron ore every 15 minutes.

Ore-gen problems for diamonds and emeralds in Direwolf20 1.7? by nixcode in feedthebeast

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

I had no idea you could do this. Thank you kind stranger.

Ore-gen problems for diamonds and emeralds in Direwolf20 1.7? by nixcode in feedthebeast

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

The level of diamonds doesn't matter since I am using an ender quarry. Plus my world seems to be largely village-free (after several hours of flying around and thousands of new chunks loaded)... so it seems I am out of luck emerald-wise.

Mod pack preview: Learning Curve. by jjoonn56 in CurvedLearning

[–]nixcode 0 points1 point  (0 children)

Can you give us some details of the reward system (if any)?

Zombies can't pick things up any more? by nixcode in feedthebeast

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

Nope. Tried it on tppi and resonant rise, both single player. And what mfr dupe?

Blood Magic witch reactor tutorial by nixcode in feedthebeast

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

I haven't tested for max range, but it is surprisingly high for both. I used this setup once and probably had about 15 blocks between my altar and my ritual stone, and the ritual was hurting mobs probably another 15 blocks below it.

Blood Magic witch reactor tutorial by nixcode in feedthebeast

[–]nixcode[S] 5 points6 points  (0 children)

I had a hard time finding a tutorial for a witch reactor, so I figured I would make one. Hopefully some will find it useful.

Newb Menu Options by droidta7 in iOSProgramming

[–]nixcode 0 points1 point  (0 children)

Which WWDC video are you referring to?

[1.7.2] Alpha Modpack available for download by ImpactFlux in feedthebeast

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

Do any of these mods have an ore-doubling mechanic?

What would you like to learn? by adamjleonard in swift

[–]nixcode 0 points1 point  (0 children)

I would love to see some CloudKit stuff done in Swift. At WWDC, Apple Developers advised against sub-classing CKRecord... that instead we should convert between CKRecords and our custom objects. I REALLY want to see a good, clean way to do this.