DEV Community

Cover image for What was your win this week?

What was your win this week?

Gracie Gregory (she/her) on July 02, 2021

Hey there! Looking back on your week, what was something you're proud of? All wins count β€” big or small πŸŽ‰ Examples of 'wins' include: Starting...
Collapse
 
matteobruni profile image
Matteo Bruni

I made these confetti animations using the JavaScript canvas transform, way more realistic than the previous ones

Collapse
 
waylonwalker profile image
Waylon Walker

πŸŽ‰πŸŽ‰πŸŽ‰

Collapse
 
booyouon profile image
Vince Abuyuan • Edited

Just went camping with my partner! Her jeep just got a roof tent installed… and I gotta say it was one of the most comfiest camping experiences I’ve ever had. (: definitely a win in my book

roof tent

Collapse
 
cenacr007_harsh profile image
KUMAR HARSH

Wrote 3 blogs in the last Week, they crosses 50k views all together, 3 got shared by the Dev Twitter handle, and one my comments got a place in top 5 comments πŸ˜€. This week was amazing for me πŸ₯³.

Collapse
 
thomasbnt profile image
Thomas Bnt β˜• • Edited

I redesigned Whois on Discord !
This version change :

  • No more Bootstrap and Jquery, CSS homemade
  • PWA ready
  • Hyper optimized

Preview Whois

Code source is available.

GitHub logo Mist3r-Robot / Whois

Get informations about a member or a bot in your browser direclty from their ID.

Collapse
 
__manucodes profile image
manu • Edited

Let's see....

  • Played some minecraft :D
  • Fixed all bugs in my app...
  • Added a feature to check if user is logged in or not every minute, and check if the session timed out
    window.addEventListener('load', function(){
        var interval = setInterval(function() {
            var xhttp = new XMLHttpRequest();
            xhttp.onreadystatechange = function() {
                if (this.readyState == 4 && this.status == 200) {
                   if(xhttp.responseText.toString() !== "true") {
                       window.location = "https://smartlist.ga/dashboard/login.php?inactive"
                   }
                }
            };
            xhttp.open("GET", "https://smartlist.ga/dashboard/user/check_if_loggd_in.php", true);
            xhttp.send();
        }, 60000)
    })
Enter fullscreen mode Exit fullscreen mode

... And found a bug on dev.to!
https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xvhuo0a32ijh7i1evd5a.PNG

Collapse
 
theinterviewsage profile image
The Interview Sage

This week I wrote the following article in the Behavioral Interview series:


Series Links:

Cracking the Facebook Behavioral Interview - dev.to/theinterviewsage/top-facebo...

Cracking the Facebook System Design Interview - dev.to/theinterviewsage/top-facebo...

Collapse
 
iamvictor profile image
Victor Ikechukwu

Wrote a blogs in the last Week, that crossed 6k views, it got shared by the Dev Twitter handle, and I got picked as one of the top authors of the Dev.to πŸ˜€. Also I secured an interview for my first internship!. This week was amazing for me πŸ₯³ πŸ₯³.

Collapse
 
vonheikemen profile image
Heiker

my plugin Programmatic Key Bindings for Sublime Text is live in package control. Meaning, people can install it directly from sublime.

And it's already a success. Like... it has 3 downloads... 3! And I swear only one of them was me.

Collapse
 
offlineprogrammer profile image
Offline Programmer

My posts on Dev crossed 12k views ... oh and I have 444 followers on twitter

Collapse
 
booyouon profile image
Vince Abuyuan

Congrats on 444 followers!
poop

Collapse
 
fabriciojs profile image
FabrΓ­cio JosΓ© Souza

We (me and my team) are making progress on getting the word out about our Open Source project for managing local development environments using Docker containers - the Kool project!

Our most recent post here on dev.to is getting some good feedback so far, and we are very excited about it!

Great week!

Collapse
 
mvoloskov profile image
Miloslav πŸ³οΈβ€πŸŒˆ πŸ¦‹ Voloskov • Edited

My project Pixelhunter made it to the Product Hunt Product of the Day #3 position and also Product Hunt newsletter. This is the very first project where I could go full on my vision and got paid.

Collapse
 
fennecdjay profile image
JΓ©rΓ©mie Astor

I did some work on th Gwion VM, and now it can run recursive fibonnaci 40 under 4 seconds on my machine, that's a huge win. for the record, a month ago it was over 5 seconds, and I thought I couldn't make it much faster.
The recently implemented bytecode pretty printer helped a lot doing that.

I also made a plugin for embedding the faust language, and a little utility to compile faust code into a gwion C module.
That got the language featured on two pages of the faust website.
faustdoc.grame.fr/manual/embedding/
faust.grame.fr/community/made-with...

Collapse
 
prafulla-codes profile image
Prafulla Raichurkar

I got vaccinated!πŸ’‰πŸ’ͺ

Collapse
 
andrewbaisden profile image
Andrew Baisden

Created an app for a Hackathon, and published two new articles.

Collapse
 
jmfayard profile image
Jean-Michel πŸ•΅πŸ»β€β™‚οΈ Fayard
Collapse
 
m_ahmad profile image
Muhammad Ahmad
Collapse
 
afif profile image
Temani Afif

I earned the MVP award !
mvp.microsoft.com/fr-fr/PublicProf...

Collapse
 
venkyakshaya profile image
Akshaya Venkatesh

Trying to keep up my weekly Blogging streak here on dev.to. Week 2 - Done βœ… . Wish me luck.

Collapse
 
klvenky profile image
Venkatesh KL

I've decided to write detailed comments on posts which I've gone through. Mostly my comments will be like do what makes you happy. So that's some resolution that keeps me happy
Cheers 🍻🍻

Collapse
 
vaibhavkhulbe profile image
Vaibhav Khulbe

I deployed the Gatsby + Sanity project after 6 failed builds...!

Collapse
 
apoclyps profile image
Kyle Harrison

Added Gitlab support to my code review request tool: github.com/apoclyps/reviews/pull/205

Collapse
 
codeitout_ profile image
Codeitout

I completed learning react.js course this week.
I am happy to have learned it 🀭

Collapse
 
waylonwalker profile image
Waylon Walker

Hitting my previous wom average on my new split keeb.

Collapse
 
brandonwallace profile image
brandon_wallace

I contributed to an open-source project to improve the code base with several pull requests and fixed a bug in the project. It was fun.

Collapse
 
kayis profile image
K

Set up my first AWS Infinidash cluster.

Collapse
 
markokoh profile image
Mark Okoh

Finished my first VueJS project: DiscountDom.com

Collapse
 
shhdharmen profile image
Dharmen Shah

I am super excited to share that my blog has crossed ✨ 30k+ ✨ page views

πŸ‘‰ blog.shhdharmen.me

Collapse
 
jameskevin profile image
James Kevin

I have started gutter cleaning service this week. This is my win right now