DEV Community

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

Posted on

What was your win this week?

πŸ‘‹πŸ‘‹πŸ‘‹πŸ‘‹

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

All wins count -- big or small πŸŽ‰

Examples of 'wins' include:

  • Getting a promotion!
  • Starting a new project
  • Fixing a tricky bug
  • Cleaning your house...or whatever else that may spark joy πŸ˜„

Latest comments (86)

Collapse
 
jamesroyston profile image
James

I deployed my first full-stack project to heroku after a late night of debugging and banging my head on the wall πŸ™‚

Collapse
 
vip3rousmango profile image
Al Romano

Built a personal JS/node starter kit from a culmination of a few Pluralsight courses, and Devs at work liked it enough for it to get used for two in production apps!

Building them out now and get to lead both projects.

Didnt think my own micro framework would be used!

Collapse
 
tiffengineer profile image
tiff

Made it through my first week of work, then getting the onslaught of information and spinning up servers without dying of overwhelm. πŸ’ͺ🏾 πŸ’₯🌈

Collapse
 
mezie profile image
Chimezie Enyinnaya

I released early access to my latest course "GraphQL from ground up" after months of working on it

tutstack.io/courses/graph-ql-from-...

Collapse
 
dystroy profile image
Denys SΓ©guret

Managed to land a Pull Request for an UI for crev, the project which might save us all from the increasing menace of crate/package injections.

crev tui

I'm more and more amazed at the ease of efficiently managing parallel computations in Rust without bugs. This UI is always responsive even while computing without busy threads or tick based refreshing.

Collapse
 
crimsonmed profile image
MΓ©dΓ©ric Burlet

A few things!

4k views

Collapse
 
gypsydave5 profile image
David Wickes

This

Well, as this isn't the most challenging challenge, I decided to challenge myself ;)

Here is an answer in the stack-based programming language Factor.

! is an integer even?
: even? ( int -- ? )
    2 mod 0 = ;

! is an integer a multiple of ten?
: multiple-of-ten? ( int -- ? )
    10 mod 0 = ;

! helper word (that's a 'function' in factor) for prime? 
: (prime?) ( int m -- ? )
    2dup <= [ t 2nip ] [ 
        2dup mod 0 = [ f 2nip ] [ 1 + (prime?) ] if
    ] if ;

! is an integer prime?
: prime? ( int -- ? )
    2 (prime?)

! all three tests applied to a single integer, output as an array
: all-three ( int -- seq )
    2dup
    [ prime? ] [ even? ] [ multiple-of-ten? ]
    tri* 3array ;


5 all-three
!
! --- Data stack:
! { t f f }
clear
10 all-three
!
! --- Data stack:
! { f t t }

I've never tried anything like this before, so I'd be interested in some feedback if any is available.

Conversely, if anyone would like me to explain what on earth is going on above, please ask and I'll do my best. I really enjoyed writing it.

Collapse
 
peterwitham profile image
Peter Witham

This week I managed to get a React Native project to compile to native Android and iOS application install bundles thanks to expo.

This might not sound like much, but it's an important step in my evaluation of using it for development over Android and iOS native coding.

Collapse
 
dcruz1990 profile image
Dennis Quesada Cruz

Win: Write my first ReactJS component.

Loss: Get disapointed trying to use state.

Collapse
 
ama profile image
Adrian Matei

I've survived the week being scrum master for 4 teams...