Every single leaked image of the Iron Eagle armor core so far reddit.com/gallery/se1py3
πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/Haijakk
πŸ“…︎ Jan 27 2022
🚨︎ report
Schlieren images of various geometries at Mach 1.58 to 4.9. Almost hypersonic! More details and Graphs to be found here: https://core.ac.uk/download/pdf/80675875.pdf
πŸ‘︎ 1k
πŸ’¬︎
πŸ‘€︎ u/alex9831
πŸ“…︎ Jan 25 2022
🚨︎ report
Every single leaked image of the Iron Eagle armor core so far reddit.com/gallery/se1py3
πŸ‘︎ 103
πŸ’¬︎
πŸ‘€︎ u/TheIAP88
πŸ“…︎ Jan 27 2022
🚨︎ report
Official images of core class Hot rod reddit.com/gallery/r81lq0
πŸ‘︎ 649
πŸ’¬︎
πŸ‘€︎ u/AndrewPrime2512
πŸ“…︎ Dec 03 2021
🚨︎ report
I took an image of my chef's knife. Is the pitting normal on something like this? VG-10 core cladded in damascus.
πŸ‘︎ 34
πŸ’¬︎
πŸ‘€︎ u/WiggiE_WiggiE
πŸ“…︎ Jan 18 2022
🚨︎ report
Better images of what was collected today. Smart key, defiant, Sargent, Schlage, and unknown cylinders. Best sfic and unknown cores. About 8 more knobs with smart key cores and a ton of old/vintage keys: lever lock, Chicago duo, Yale, lockwood, Chrysler, GM, and unidentifiable. reddit.com/gallery/s15f0a
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/Kimo278
πŸ“…︎ Jan 11 2022
🚨︎ report
Could somebody build me a house with these images for reference? It would be a cottage core house surrounded in the forest (with a big library in a tower?) Budget is 206.8k (all my cash) reddit.com/gallery/s0403l
πŸ‘︎ 20
πŸ’¬︎
πŸ“…︎ Jan 09 2022
🚨︎ report
[PSA] You can get 10 Crystal Cores and 10 Qingxin flowers by sharing images of new characters and new outfits
πŸ‘︎ 96
πŸ’¬︎
πŸ‘€︎ u/ExO_o
πŸ“…︎ Dec 27 2021
🚨︎ report
so i saw a thing on saying β€œlook up your name then add β€˜core’ onto the end of it” and i did it and some of the first images that popped up immediately screamed Oz
πŸ‘︎ 87
πŸ’¬︎
πŸ‘€︎ u/CrimsonReaper86
πŸ“…︎ Dec 19 2021
🚨︎ report
[OC] Image of shattered Intel Core 2 duo I took a week ago. Taken with SEM microscope, The die has been shattered with pliers. Zoom in to see the details. More info in comments.
πŸ‘︎ 652
πŸ’¬︎
πŸ‘€︎ u/stylishpirate
πŸ“…︎ Oct 13 2021
🚨︎ report
I'm trying to get set 31107, so I made this little robot so when I get to put this little friend with it, I'm based on the space themes from the 80s-90s and set 31115 which are supposed to be from the same "team", in the last image is a reference to m tron's mega core magnetizer reddit.com/gallery/sfgurf
πŸ‘︎ 11
πŸ’¬︎
πŸ“…︎ Jan 29 2022
🚨︎ report
Day 2 of pre-promo for my MΓ–RK BORG Compatible Core Reference Cards. Go follow the Pre-lunch page so my life can have meaning (link in the comments). It was a lot of fun getting to create images for class abilities and items.
πŸ‘︎ 20
πŸ’¬︎
πŸ‘€︎ u/newoyear
πŸ“…︎ Dec 30 2021
🚨︎ report
More progress on PS One core, using second SDram for Bin/ISO image loading github.com/RobertPeip/Pla…
πŸ‘︎ 53
πŸ’¬︎
πŸ‘€︎ u/Beige_gaming
πŸ“…︎ Nov 13 2021
🚨︎ report
PlayStation core booting some games from CD image through HPS (no more dual SDRAM) youtu.be/jlUnm2kQUUU
πŸ‘︎ 72
πŸ’¬︎
πŸ‘€︎ u/qda
πŸ“…︎ Nov 26 2021
🚨︎ report
Real-time Core Image filtering + Core Animation on iOS

I'm obsessed with iOS's render stack, and over the years I sought a (relatively) easy way to employ Core Image filters in real time to UIKit views. Well, it's definitely possible, although it's not bug-free, and performance can be iffy depending on the filters used.

UIView hierarchy being filtered in real time using Core Image and SceneKit

I'm happy to provide some sample code if people are interested.

Here's the TL;DR:

  • Create a simple SceneKit scene
  • Set up an orthographic perspective camera for the scene
  • Use some simple math to compute the camera parameters such that its frustum is exactly the same size as the SCNView itself
  • Create a single SCNPlane (or any other geometry if you want some funky texture mapping)
  • Create an SCNNode and set its geometry to the plane created
  • Set the node's first material's diffuse contents to be your UIView
  • Add some CIFilters to the plane's filters array
  • Add the plane node to the scene's root node
  • After the view controller hosting the scene is loaded, you can optionally attach Core Animation animations to the plane node filters as well

I believe your best bet is to use the Metal rendering API for SceneKit, but OpenGL may still work.

As you can see in the video above, touch mapping should still work, regardless of the projection. Even while the scene is being filtered and morphed, touches are mapped correctly. Note that some UIKit views may not function exactly as intended, or touch interactions may be broken for some views.

Here's the longer explanation of what's going on:

For whatever reason, the Core Animation team still refuses to enable the native filters property on CALayer for iOS. I'm sure there are ample complexities involved with it, but in fact, iOS has already been using this property since iOS 7 using the private CAFilter class. Since then, I believe it is now actually using Core Image filters for much of the OS's real time blur effects. (Many Core Image filters are actually backed by the Metal Performance Shaders API.)

Anyway, there really is no good reason, in my opinion, for this API path to be blocked for developers. Core Animation, Core Image, AV Foundation, Metal, SceneKit, and some other APIs all have full support for IOSurfaces now, the crucial framework that has to exist for high-performance media tasks. In short, a surface is a shared pixel buffer across any number of processes. In graphics, cop

... keep reading on reddit ➑

πŸ‘︎ 32
πŸ’¬︎
πŸ‘€︎ u/ciimage
πŸ“…︎ Jan 02 2022
🚨︎ report
Recently stumbled upon the backrooms for the 1st time and it has shaken me to my very core. Since then, I made it a goal of mine to capture liminal images like the famous office image. My first one here
πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/AvadaKedavra819
πŸ“…︎ Jan 21 2022
🚨︎ report
PlayStation core booting some games from CD image through HPS (no more dual SDRAM) twitter.com/AzumFpg/statu…
πŸ‘︎ 39
πŸ’¬︎
πŸ‘€︎ u/blackreavers
πŸ“…︎ Nov 26 2021
🚨︎ report
Halo Iron Eagle armor core leaked images reddit.com/gallery/se1py3
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/LongJonSiIver
πŸ“…︎ Jan 27 2022
🚨︎ report
Core Trivia Template: A fully-featured trivia template with an Admin Dashboard to manage your categories, images and questions. coretrivia.com/
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Mintonne
πŸ“…︎ Jan 28 2022
🚨︎ report
Yanfly Class Core Not Changing Image

I'm trying to use Yanfly's Class Core to have my character image change based on what Class she is and nothing is working. I've tried:

<Class 005 Character: Anna 0> <Class 5 Face: Anna 0>

and

<Anna Character: Anna 0> <Anna Face: Anna 0>

And even replaced the 0 with 1 for all 4 ways. I've also tried them and then changed maps. Nothing. Anyone know the secret to getting it to work? Her name is Anna, and the Class is called Anna. It also hasn't worked for any of the other Classes by number or name nor 0 or 1.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Katevolution
πŸ“…︎ Dec 26 2021
🚨︎ report
Why am I not able to train 1,859 75x75 RGB images on my M1 Pro 10-core CPU, 16-core GPU 16-core Neural Engine with 16 GB RAM?

I've followed the same steps provided by Apple (https://developer.apple.com/metal/tensorflow-plugin/) to install the deep learning development environment on TensorFlow (based on tensorflow-metal plugin) on my MacBook Pro. My model employs the VGG19 through transfer-learning as its summary can be seen below. While I train this model on 1,859 75x75 RGB images, getting the error tensorflow.python.framework.errors_impl.InternalError: Failed copying input tensor from /job:localhost/replica:0/task:0/device:CPU:0 to /job:localhost/replica:0/task:0/device:GPU:0 in order to run _EagerConst: Dst tensor is not initialized. Isn't this task an easy one for such a powerful SoC like M1 Pro 10-core CPU, 16-core GPU 16-core Neural Engine with 16 GB RAM? What is the issue here? Is this a bug or do I need to do some configuration to overcome this situation?

Here is the stack trace:

Metal device set to: Apple M1 Pro

systemMemory: 16.00 GB

maxCacheSize: 5.33 GB

Model: "sequential"

_________________________________________________________________

Layer (type) Output Shape Param #

=================================================================

vgg19 (Functional) (None, 512) 20024384

_________________________________________________________________

flatten (Flatten) (None, 512) 0

_________________________________________________________________

dense (Dense) (None, 1859) 953667

=================================================================

Total params: 20,978,051

Trainable params: 953,667

Non-trainable params: 20,024,384

_________________________________________________________________

Traceback (most recent call last):

File "/Users/talhakabakus/PycharmProjects/keras-matlab-comp-metal/run.py", line 528, in &lt;module&gt;

run_all_stanford_dogs()

File "/Users/talhakabakus/PycharmProjects/keras-matlab-comp-metal/run.py", line 481, in run_all_stanford_dogs

H = model.fit(X_train, y_train_cat, validation_split=n_val_split, epochs=n_epochs,

File "/Users/talhakabakus/miniforge3/envs/keras-matlab-comp-metal/lib/python3.9/site-packages/keras/engine/training.py", line 1134, in fit

data_handler = data_adapter.get_data_handler(

`File "/Users/talhakabakus/miniforge3/envs/keras-matlab-comp

... keep reading on reddit ➑

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/talhak
πŸ“…︎ Dec 09 2021
🚨︎ report
Half Day Workshop: Guided Image Rescripting of the Five Core Attachment Schemas: donation based, this saturday (tomorrow)
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/cedricreeves
πŸ“…︎ Jan 21 2022
🚨︎ report
Can I allocate all cores and all memory to two images?
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/vendo232
πŸ“…︎ Dec 12 2021
🚨︎ report
My little cottage core entrance is coming together! Sorry for the low quality images, also please ignore the time traveling! Thank you!β™₯️ reddit.com/gallery/rrystg
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/caticorn5620
πŸ“…︎ Dec 30 2021
🚨︎ report
What official Windows Server (not Core) image runs on Fargate?

I have an application which needs to run on Windows Server (not Core). I'd like to run it in Fargate. There are several images listed at https://hub.docker.com/_/microsoft-windows-server/. I have pulled mcr.microsoft.com/windows/server:win10-21h1-preview and I can run the application in a container locally. When I try to run it on Fargate using Windows Server Full 2019, I get "CannotStartContainerError: ResourceInitializationError: failed to create new container runtime task: failed to create shim: hcs::CreateComputeSystem" and "The container operating system does not match the host ope"

Has anyone tried any of the other available images (e.g. ltsc2022)? I can't pull it to my fully updated Win10 laptop ("no matching manifest for windows/amd64 10.0.19043 in the manifest list entries") but I could create a Windows Server VM to do it.

How about a Windows image - has anyone tried one of those on Fargate? https://hub.docker.com/_/microsoft-windows/

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/CheesesOfSuburbia
πŸ“…︎ Dec 01 2021
🚨︎ report
My image of the Statue of Liberty Nebula - a star forming region near the core of our galaxy
πŸ‘︎ 8k
πŸ’¬︎
πŸ‘€︎ u/Idontlikecock
πŸ“…︎ Jul 31 2021
🚨︎ report
Accessibility in E-Commerce: Use β€˜ALT’ Text to Communicate the Core Content of β€œInformational” Images (55% of Sites Don’t) baymard.com/blog/informat…
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/mike_gifford
πŸ“…︎ Jan 06 2022
🚨︎ report
Why don't CPU cores get a dedicated 2D direct-mapped cache for image processing?

Imaginary scenario in assembler:

  • enable exclusive 2Dimensional (x,y indexing) cache usage

  • map cache to accesses from given array pointer + range

  • start image processing without tag conflict

  • disable 2D cache, continue using L1 data cache with 0 contention/thrashing

I tested this on software-cache and 2D direct mapped cache had much better cache-hit pattern (and ratio) compared to 1D:

Pattern test (with user-input):

https://www.youtube.com/watch?v=4scCNJx5rds

Performance test (with compile-time-known pattern):

https://www.youtube.com/watch?v=Ox82H2aboIk

If CPUs can have wide SIMDs, big L2 caches, why don't designers give some extra logic to boost image processing / matrix multiplication to compete with GPUs? This would add 1 more cache type (instruction cache + data cache + image_cache) to separate bandwidths from each other so normal data/instruction cache wouldn't be polluted with big image?

πŸ‘︎ 93
πŸ’¬︎
πŸ‘€︎ u/tugrul_ddr
πŸ“…︎ Oct 24 2021
🚨︎ report
Bullshit core i9. If you vote this up, it will show up on Google Images when you search for Intel core i9
πŸ‘︎ 2k
πŸ’¬︎
πŸ“…︎ Aug 22 2021
🚨︎ report
Image of shattered CPU (Intel Core 2 duo) I took a week ago with SEM microscope. Zoom in.
πŸ‘︎ 109
πŸ’¬︎
πŸ‘€︎ u/stylishpirate
πŸ“…︎ Oct 15 2021
🚨︎ report
An image has surfaced of Core Class Hotrod
πŸ‘︎ 35
πŸ’¬︎
πŸ“…︎ Dec 02 2021
🚨︎ report
The Manhattanization of Toronto and resiliency of Toronto real estate continues, with little signs of slowing. Visible in this image, development in the Downtown Core as it appears toward the end of 2021. #Toronto #CityofTO #future #torontorealestate
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/FutureModelTO
πŸ“…︎ Dec 29 2021
🚨︎ report
211022 High quality Ryujin and Karina on Music Core from Naver (source + other images in comments)
πŸ‘︎ 193
πŸ’¬︎
πŸ‘€︎ u/red_280
πŸ“…︎ Oct 22 2021
🚨︎ report
Comet Leonard and a meteor from the Geminid Meteor Shower. The meteor is green because of evaporating magnesium from its core and the comet's green is due to diatomic carbon being ejected from its core. Image Credit & Copyright: Cory Poole via NASA APOD
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/Honeybadger-0-
πŸ“…︎ Dec 20 2021
🚨︎ report
Why is almost every face on the 3rd ed core book a reaction image or meme. reddit.com/gallery/qphhpd
πŸ‘︎ 27
πŸ’¬︎
πŸ‘€︎ u/Triggerhappy62
πŸ“…︎ Nov 08 2021
🚨︎ report
Milkyway Core setting over Carnarvon Gorge, Central Queensland, Australia. This is a stack of 8 images processed in Sequator, Lightroom and Photoshop. Canon 750d, 13sec, f2.8, ISO1600, 11mm. Bortle class 1 skies
πŸ‘︎ 107
πŸ’¬︎
πŸ‘€︎ u/thatastrogirl
πŸ“…︎ Oct 13 2021
🚨︎ report
(3 Images) So I decided to map out the Optimal Levelling Sequence for fighting Mind Golems with specifically a Barronite Mace and Str Ammy - No Prayers or potions were considered - it'd be a 600+ hour grind that results in 1.2M Runecrafting XP in Mind Cores while maxing ATK & STR reddit.com/gallery/qtlarn
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/MissionOfMan
πŸ“…︎ Nov 14 2021
🚨︎ report
Day and Night images of the bore hole. No sign of a fully intact core, maybe the core broke up? There could be some tailings inside the bore hole masking the remnants of the core.
πŸ‘︎ 180
πŸ’¬︎
πŸ‘€︎ u/paulhammond5155
πŸ“…︎ Aug 08 2021
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.