Exactly 💯
Posts by Cory lives in the computer
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.
That's awesome! I'll definitely check that out, thanks!
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.
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.
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.
First day of spring and the snows melted and the sun is shining. Please enjoy these pictures of my cat enjoying the sunshine. #Caturday
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?
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.
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.
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
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.
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.
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.
ran 'npm outdated' on an old fullstack project I wanted to work on again. Got a lot of fixing to do.
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.
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.
When I see an open source GitHub repository that has an open issue I know I can solve and contribute to.
Monday, or as I like to call it : “the day I forget everything I’ve ever learned about coding.”
These days have really been daying.
Taking breaks from learning Vue to make some fun beats in Strudel.
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?
My full stack project from two years ago watching me login to make a test post to keep the free DB from pausing.
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”.
Thanks Xena!
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.
“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.”
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.