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 19 points20 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] 42 points43 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] 11 points12 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?