DEV Community

Cover image for What was your win this week?
Jess Lee
Jess Lee

Posted on

What was your win this week?

Happy Friday, everyone!!

Looking back at your week, what was something you're proud of?

All wins count -- big or small!

Examples of 'wins' include:

  • Giving someone constructive feedback!
  • Contributing to OSS
  • Fixing a trickster bug
  • Watering your plants...or whatever else that may spark joy 😄 🎉

Latest comments (50)

Collapse
 
aleon1220 profile image
Andres Leon

This week, I...
Watered my plants and installed a dIY system to use a camping sh<ower and a water gun to shower th<em in th<e balcony...
btw i managed to create a security testing in an AWS region using Prod base images (big mistake) 79 customers were affected by strange notifications in their phone at 4 am :-)

Collapse
 
mykezero profile image
Mykezero

This week, I...

Stood up for technical excellence and rallied for refactoring existing code that had accumulated some cruft over the years. I was able to reduce the number of lines by 60% and killed all of the useless overloaded operators without breaking features, with only golden master tests as a data vice grip to prove nothing had went terribly wrong. I am very pleased with the outcome of the code and the clarity that came with it.

Collapse
 
jdmedlock profile image
Jim Medlock

This week, I worked with my friend @florinpop on his App-Ideas project to improve the repo and to add new app ideas for Devs who are looking for practice projects.

Teamwork!

Collapse
 
vicentemaldonado profile image
Vicente Maldonado • Edited

This week, I actually managed to make an abstract syntax tree visitor that exports the tree into a graphviz file. And I may write an article about it!

Collapse
 
jess profile image
Jess Lee

Whoo!! ps. those are my favorite birds. sun conures 😍

Collapse
 
ceri_anne_dev profile image
Ceri-anne

This week, I got promoted from junior developer to mid-level developer!

celebrate

Collapse
 
mmphego profile image
Mpho Mphego

This week, I managed to migrate one of our packages from Python 2 to Python 3.6 with backwards compatibility.

Collapse
 
starchturrets profile image
starchturrets • Edited

This week. . .

  • I made a ship name generator in vanilla javascript.

  • Improved an existing calculator app that I had been procastinating on for weeks.

  • Had lots of fun.

Collapse
 
bhupesh profile image
Bhupesh Varshney 👾 • Edited

This week, I was able to implement that POST request in an API (that i have been dealing for a week )
The whole API looks now more production friendly 🤩🤩

yes

Collapse
 
equinusocio profile image
Mattia Astorino

This week, I learned a lesson. Honestly doesn't make you a better person. It makes you, and only you, feel badly

Collapse
 
mcnchem profile image
Chem

This week, I...

  • I found and am on the steps for a remote position.
  • I applied to remote, paid development internship and am moving through the process.
  • I didn’t lose my mind but stayed focused.

Onward to the Weekend!!

media.giphy.com/media/l0Exu5wDeorg...

Collapse
 
twigman08 profile image
Chad Smith

This week, I made great progress on a Vue base project written in TypeScript and even started to write documentation on using it.

Collapse
 
dylanesque profile image
Michael Caveney

This week, I...

  • At this week's Code for Boston Meetup wrote a script in Node.js to scrape table data from a website to save us hard-coding out the data by hand, in less than 10 minutes. It's not anything super-special, but it made me feel like a wizard.

  • Reached and crossed the 1000 follower milestone here on dev.to, after less than a month of actively blogging here. I know this community was cool, but holy &%$ you guys!

Bruce Lee

Collapse
 
aspittel profile image
Ali Spittel

This week, I...

It's a late one, but I overcame anxiety and posted my second problem solving post.

Collapse
 
rachelsoderberg profile image
Rachel Soderberg

This week, I took several similar query methods and was able to refine it down to a single query, simply converting the return value when calling the method. Was pretty happy with my DRY practice!

Collapse
 
drozerah profile image
Drozerah

This week I've learned more about NPM script and how to use it with chained command lines to prepare the folders/files tree structure of my webpack boilerplate. Things like :

...
{
    "prepare": "npm-run-all -s prepare:*",
    "prepare:clean": "rm -rf ./src",
    "prepare:src-tree": "bash -c 'mkdir -p src/{images,modules,styles/partials}'",
    "prepare:html-entry": "touch src/index.html",
    "prepare:js-entry": "touch src/index.js",
    "prepare:git": "touch ./.gitignore",
    "prepare:gitignore-rules": "(echo node_modules/ && echo dist/) >> ./.gitignore",
    "prepare:js-entry-import-scss": "echo import './styles/main.scss' >> src/index.js",
    "prepare:js-entry-log": "echo console.log('I am the endry point!'); >> src/index.js",
    "prepare:scss": "touch src/styles/main.scss",
    "prepare:scss-partials": "touch src/styles/partials/{_variables.scss,_reset.scss,_mixins.scss}",
    "prepare:scss-import-partials": "(echo @import \"partials/variables.scss\"; && echo @import \"partials/reset.scss\"; && echo @import \"partials/mixins.scss\";) >> src/styles/main.scss",
    "prepare:serve": "webpack-dev-server --open",
 },
...

This week I've read and practiced my book about CSS Grid Layout and validated the FreeCodeCamp's course on this topic.

CSS 3 Grid Layout

This week I've started to code the front end of a tiny musical application...