Advertisement · 728 × 90

Posts by Cory lives in the computer

Post image

Exactly 💯

1 week ago 20309 5429 137 153

Had a stress dream about building PC's. No matter what I couldn't find the pin header for the two pin ATX connector.
It was driving me crazy.
I woke up and felt relief that I wasn't building a PC.

6 days ago 2 0 0 0

That's awesome! I'll definitely check that out, thanks!

6 days ago 1 0 0 0

I was good at lurking. But lately I don't even think to start Discord when I'm working at the computer.
That's going to change.

6 days ago 1 0 0 0
Preview
kermit the frog is sitting on a railing and says `` just do it you 'll like it a lot '' . ALT: kermit the frog is sitting on a railing and says `` just do it you 'll like it a lot '' .

I keep telling myself to get more active in the #100Devs discord.
I want to be more active in it

I’m just not good with discord. I feel like the conversations move so fast and you blink once and are out of the loop.

1 week ago 5 0 2 0
A tabby cat laying on their back in a beam on sunshine

A tabby cat laying on their back in a beam on sunshine

A tabby cat in a beam of sunlight with their paws curled up.

A tabby cat in a beam of sunlight with their paws curled up.

First day of spring and the snows melted and the sun is shining. Please enjoy these pictures of my cat enjoying the sunshine. #Caturday

4 weeks ago 16 0 0 0
Preview
a cartoon character with green hair is standing in front of speakers ALT: a cartoon character with green hair is standing in front of speakers
1 month ago 1 0 0 0

If it was helping with a team or just the site redesign I’d be interested. I’m no social media marketer. But all that for one person is a bit of a tall order. Or am I crazy?

1 month ago 0 0 0 0
Preview
a cartoon of a woman with the words you ask too much below her ALT: a cartoon of a woman with the words you ask too much below her

I had someone reach out with some work they thought I could help with.
They told me they want a website redesign.
I can totally do that.
Do social media marketing and make new profiles on all platforms .
Setup system to post content across platforms and have AI generate most of it.
No thanks.

1 month ago 2 0 1 0

Today's the day I begin thinking about maybe, sometime soon, hopefully soon, updating my portfolio.

I kind of want to start from scratch and build a whole new one, but not sure if I have time for that right now.

Really, I just need to add more details about services and what I can do for clients.

1 month ago 1 0 0 0
Advertisement
A bubble Mew Pokemon card.

A bubble Mew Pokemon card.

Been rebuilding a collection of Pokemon cards as I haven’t really been since I was little. Buying packs whenever I can. This is by far my favorite called I’ve pulled.
#PokemonDay

1 month ago 1 0 0 0
Preview
a close up of a cartoon character wearing sunglasses with the word success written on it . ALT: a close up of a cartoon character wearing sunglasses with the word success written on it .

Found a solution! Adding CSS overflow: hidden to the body of that page stopped the whole page shake in Brave browser and now the effect works as intended...across every browser I've tested so far.

1 month ago 2 0 0 0

I don’t think I have any extensions on it but will check. Found this issue visiting the site using brave. Had no issues on safari, chrome, edge, and opera.

1 month ago 0 0 0 0
Video

Came across a not so fun issue when testing my site across browsers. It's only on Brave browser so far, but the vfx-js for the image makes the whole screen shake, which is not ideal.

Tried some fixes but have yet to find a solution.

1 month ago 2 0 2 0
Preview
a close up of a pikachu with its mouth open ALT: a close up of a pikachu with its mouth open

ran 'npm outdated' on an old fullstack project I wanted to work on again. Got a lot of fixing to do.

2 months ago 1 0 0 0

It is. But I’m still stuck on password reset and almost got the delete profile finished. It’s 4 users and they’re all me. I’d also like to make a guest account option where users could just browse the site and check out public sounds users have uploaded.

2 months ago 0 0 0 0
Video

Playing around with the VFX-JS library to add some fun animations to my "Sounds Spooky" site. Updated the flickering effect for title using CSS and added a glitch animation to the ghost microphone image.

2 months ago 2 0 1 0
Preview
a woman wearing a tiara and a sash with the words fork yeah on it ALT: a woman wearing a tiara and a sash with the words fork yeah on it

When I see an open source GitHub repository that has an open issue I know I can solve and contribute to.

2 months ago 2 0 0 0

Monday, or as I like to call it : “the day I forget everything I’ve ever learned about coding.”

2 months ago 1 0 0 1
Advertisement

These days have really been daying.

2 months ago 1 0 0 0
Video

Taking breaks from learning Vue to make some fun beats in Strudel.

2 months ago 1 0 0 0
A picture of me wearing a large puffy coat black hat and a black a white scarf covering most of my face.

A picture of me wearing a large puffy coat black hat and a black a white scarf covering most of my face.

-10 degrees Fahrenheit, over a foot of snow. Walking to the corner store. Do you need anything?

3 months ago 3 0 0 0
Preview
a man is making a funny face while laying in bed with his eyes closed . ALT: a man is making a funny face while laying in bed with his eyes closed .

My full stack project from two years ago watching me login to make a test post to keep the free DB from pausing.

3 months ago 3 0 0 0
Preview
kermit the frog is covering his mouth with his hand and looking at the camera . ALT: kermit the frog is covering his mouth with his hand and looking at the camera .

Got my Mom into Studio Ghibli movies. She’s watched “Spirited Away”, “Whisper of the Heart”, and “Ponyo”.
She just texted me asking if she should watch “Grave of the Fireflies”.

3 months ago 2 0 1 0

Thanks Xena!

3 months ago 1 0 0 0

I feel like I’ve been sick since before the holidays.
Starting to feel better and then I hurt my back.
What a great start to the year.
Now I’m just focusing my energy into learning Vue and finishing up my other coding projects.

3 months ago 3 0 1 0
Preview
a man on a boat says i hope you 're hungry while holding a silver tray ALT: a man on a boat says i hope you 're hungry while holding a silver tray

LinkedIn sending me a notification to watch my year in review.

4 months ago 5 0 0 0

“Hey consumer, we added an AI feature to that thing you use. No it doesn’t improve your experience…no it doesn’t help with productivity. It’s here to collect and steal everything about you and sell it. Pretty cool, right!? And best part, you can’t turn it off.”

4 months ago 4 0 0 0
Advertisement
python code for moving zeroes to back of an array while keeping order of other numbers intact. code is as follows:
def moveZeroes(nums):
    index = 0
    for num in nums:
        if num != 0:
            nums[index] = num
            index += 1
    for i in range(index, len(nums)):
        nums[i] = 0

    print(nums)
    
    
moveZeroes([0,1,0,5,13])   #Output: [1,5,13,0,0]    

# Photo by Tim Oun on Unsplash

python code for moving zeroes to back of an array while keeping order of other numbers intact. code is as follows: def moveZeroes(nums): index = 0 for num in nums: if num != 0: nums[index] = num index += 1 for i in range(index, len(nums)): nums[i] = 0 print(nums) moveZeroes([0,1,0,5,13]) #Output: [1,5,13,0,0] # Photo by Tim Oun on Unsplash

Refreshing my Python skills by doing some leetcode challenges.
Realizing I need to really up my Anki decks with Python material, as I feel I've forgotten so much of the syntax and quirks of Python.

4 months ago 2 0 0 0
Preview
a cartoon cat is sitting in a green chair with a pink pillow on his back . ALT: a cartoon cat is sitting in a green chair with a pink pillow on his back .

There’s a blizzard outside but I got nowhere to go today, so I’m just tucked in and catching up on all the manga I’m reading.

4 months ago 4 0 1 0