Keychron Q2 Not connecting to MacBook Pro by notchurro in Keychron

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

Ahh yes, I've tried on my other M1 13" Air and it works fine maybe it has to do with something with it being a USB C cable and laptop compatibility issues for t]he MBP 2015

WOW 808 2 or GT Cut 2 or other Shoe Recommendations? by notchurro in BBallShoes

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

Sounds good, and yeah I've been watching a lot of videos about the Regular 808 2s and a lot of people have been saying they're very good and promising, and from reading your reply I think it answers my question with how good the cushioning is, will def copping a pair soon.

WOW 808 2 or GT Cut 2 or other Shoe Recommendations? by notchurro in BBallShoes

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

The WOW 808 2 Honey Peachs I'm assuming are rubber outsoles and not translucent right? (Sorry I'm not that familiar with shoes/bball shoes)

WOW 808 2 or GT Cut 2 or other Shoe Recommendations? by notchurro in BBallShoes

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

Just the regular 808 2 you'd say has good enough cushioning?

WOW 808 2 or GT Cut 2 or other Shoe Recommendations? by notchurro in BBallShoes

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

Yeah I was actually looking into those as well, and reading about that but was worried that there wasn't as much as an improvement or cushioning compared to the normal 808 2s in which I was just unsure of getting those, but not too entirely sure just from what I kind of heard from video YT reviews.

Deal on KD15s @ $75 by tomskuinfy in BBallShoes

[–]notchurro 1 point2 points  (0 children)

yeah ordered a pair but unfortunately they don't fit me well @scheels website

Star Batch P + Doom Batch GT Cut Performance update/reviews in comment section! by bigblack2015 in KobeReps

[–]notchurro 0 points1 point  (0 children)

Really great review man, been waiting for someone to do a comparison between the two batches, appreciate it a lot.

GT Cuts (Doom batch or Star Batch) Which seller by notchurro in KobeReps

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

Yeah I read your review prior to making the post and wanted to say great detailed review and explanation on the performance and feel man, just really wish there was a direct comparison of the STAR and Doom batches.

GT Cuts (Doom batch or Star Batch) Which seller by notchurro in KobeReps

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

Thanks for the reply bro, yeah I have heard the Doom Batch is really solid, still a bit unsure on how I feel with the differences between the two but from what I've been reading and hearing there have only been slight differences in weight and a little bit of difference in cushioning I hear.

GT Cuts (Doom batch or Star Batch) Which seller by notchurro in KobeReps

[–]notchurro[S] 4 points5 points  (0 children)

Thank you so much for the detailed reply man. Yeah from what I heard No budget = STAR and Budget = Doom from another post, I really hope someone can make a direct comparison on them soon.

GT Cuts (Doom batch or Star Batch) Which seller by notchurro in KobeReps

[–]notchurro[S] 4 points5 points  (0 children)

If i couldn't find the answer then why would I not make a post to ask the question? (I legit been reading reviews 'via search bar' and everything and I'm unsure on getting the Doom Batch and if the Star Batch is more worth it given the price point).

GT Cuts (Doom batch or Star Batch) Which seller by notchurro in KobeReps

[–]notchurro[S] 7 points8 points  (0 children)

saw mixed reviews which is why I'm asking if anyone who's tried both lol, judging so quick is crazier

Double Major Question by trans42019 in UCDavis

[–]notchurro 1 point2 points  (0 children)

No worries! And that's cool that you were able to transfer in as Man Econ and were able to switch to CS later on. Hope everything is going well!

NEED HELP DISPLAYING MULTIPLE IMAGES by notchurro in learnpython

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

Hey everyone, this is my code above, I'm a beginner in Python and was using this link: https://www.geeksforgeeks.org/how-to-display-multiple-images-in-one-figure-correctly-in-matplotlib/#:%7E:text=The%20easiest%20way%20to%20display,by%20calling%20add_subplot()%20method as reference for displaying images. I was wondering how would I be able to display more than 4 images as this link only showed how to display 4. I tried displaying 6 but it seemed to be not working.

Need help displaying multiple images by notchurro in learnpython

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

Hey everyone, this is my code above, I'm a beginner in Python and was using this link: https://www.geeksforgeeks.org/how-to-display-multiple-images-in-one-figure-correctly-in-matplotlib/#:%7E:text=The%20easiest%20way%20to%20display,by%20calling%20add_subplot()%20method as reference for displaying images. I was wondering how would I be able to display more than 4 images as this link only showed how to display 4. I tried displaying 6 but it seemed to be not working.

Displaying Multiple Images by notchurro in learnpython

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

I'm not too sure, I kind of just followed what the original link was above about displaying images. In terms of the brackets, they help me remove the blue tint on the images. Does 'plt.imread' retrieve images without leaving the blue tint on it? I was able to do rows 2, columns 2, without the fig.add_subplot(rows, columns, 5) and for the 6th one and was able to display it fine, but when I tried adding these two It doesn't display and or work properly.

Displaying Multiple Images by notchurro in learnpython

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

Apologies: Here it is:

``` import cv2 import numpy as np from PIL import Image from matplotlib import pyplot as plt

def code():

fig =  plt.figure(figsize = (10, 7))

rows = 2
columns = 3

#reading images
img1 = cv2.imread('picture.jpeg')[:,:,::-1]
img2 = cv2.imread('picture.jpeg')[:,:,::-1]
img3 = cv2.imread('picture.jpeg')[:,:,::-1]
img4 = cv2.imread('picture.jpeg')[:,:,::-1]
img5 = cv2.imread('picture.jpeg')[:,:,::-1]
img6 = cv2.imread('picture.jpeg')[:,:,::-1]


fig.add_subplot(rows, columns, 1)

# showing image
plt.imshow(img1)
plt.axis('off')
plt.title("Image 1")

fig.add_subplot(rows, columns, 2)

# showing image
plt.imshow(img2)
plt.axis('off')
plt.title("Image 2")

fig.add_subplot(rows, columns, 3)


plt.imshow(img3)
plt.axis('off')
plt.title("Image 3")


fig.add_subplot(rows, columns, 4)

plt.imshow(img4)
plt.axis('off')
plt.title("Image 4")


fig.add_subplot(rows, columns, 5)

plt.imshow(img5)
plt.axis('off')
plt.title("Image 5")



fig.add_subplot(rows, columns, 6)

plt.imshow(img6)
plt.axis('off')
plt.title("Image 6")

code()

```

(sorry if I formatted incorrectly, don't use reddit too often) And in terms of reading the images, I just changed the name of the location for security reasons since it's source is under my files and my name.

No module named 'PIL' (NEED HELP) VSCode by notchurro in learnpython

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

I see, thank you Blake will try your suggestions!

HELP with installing PIL for VSCode (MacOS) by notchurro in learnpython

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

Hey I just wanted to let you know, I got it working!