DEV Community

Cover image for What was your win this week?

What was your win this week?

Jess Lee on October 11, 2019

๐Ÿ‘‹๐Ÿ‘‹๐Ÿ‘‹๐Ÿ‘‹ Looking back on your week -- what was something you're proud of? All wins count -- big or small ๐ŸŽ‰ Examples of 'wins' include: Getting a p...
Collapse
 
pachicodes profile image
Pachi ๐Ÿฅ‘

Honestly, this week my biggest win was not giving up

Collapse
 
baudday profile image
Willem Ellis

Hell sometimes just not giving up is the hardest part

Collapse
 
ben profile image
Ben Halpern

You got this

Collapse
 
ben profile image
Ben Halpern

We had A LOT of new DEV contributions for Hacktoberfest this week!

Collapse
 
rizkyrajitha profile image
Rajitha Gunathilake

same here pal

Collapse
 
nitinkatkam profile image
Nitin Reddy

I just made my first post to Dev.to today!

Collapse
 
blouzada profile image
Bruno Louzada

Me too

Collapse
 
jackharner profile image
Jack Harner ๐Ÿš€
  • Received a lot of really good actionable advice for my portfolio (Think it was 512 words?). Excited to bust through it this weekend.
  • Applied to 2 different jobs this week that I'm really hopeful for.
  • We adopted another cat!
Collapse
 
jackharner profile image
Jack Harner ๐Ÿš€

Collapse
 
anwar_nairi profile image
Anwar

They damn cute!

Thread Thread
 
jackharner profile image
Jack Harner ๐Ÿš€

Thanks!

Collapse
 
itsasine profile image
ItsASine (Kayla)

Omg kitties <3

Collapse
 
s_aitchison profile image
Suzanne Aitchison • Edited
Collapse
 
nickytonline profile image
Nick Taylor

Awesome! ๐Ÿ”ฅ

Collapse
 
shericodes profile image
Sheri Richardson
  • Submitted and got my first PR for Hacktoberfest merged.

  • For my Where in the World project I figured out how to get history working properly with React Router. I also fixed an issue I had with lazy loading and did some refactoring of the code.

  • Got a new pair of glasses so I can see everything clearly again. ๐Ÿค“

Collapse
 
saurabhdaware profile image
Saurabh Daware ๐ŸŒป • Edited

SO MANY THINGS HAPPENED THIS WEEK

  • My PR to add color preview got merged in DEV

    Fix #4106: Showing color preview in Edit Profile #4212

    What type of PR is this? (check all applicable)

    • [ ] Refactor
    • [x] Feature
    • [ ] Bug Fix
    • [ ] Documentation Update

    Description

    This is Fix For #4106. The current color-picker does not show a preview so it is hard to guess the color contrast. I added a preview (screenshot added below) which shows your selected colors.

    Also, Added a <input type="color"> which makes it is easy to select the color.

    Since there are other pages that depend on 'color-picker' class I did not change anything in colorPicker.js or any of the styles of current color-picker. I created a new file colorPreview.js and some new classes in html.

    Mobile & Desktop Screenshots/Recordings (if there are UI changes)

    Mobile

    Mobile screenshot of color preview feature

    Desktop

    Desktop Screenshot of color preview feature

    Recording

    Recording of color preview feature

    Added to documentation?

    • [ ] docs.dev.to
    • [ ] readme
    • [x] no documentation needed

    [optional] What gif best describes this PR or how it makes you feel?

    My first PR To DEV! I was not very sure if I could do this or not since DEV's codebase is probably the largest codebase I've ever worked on but now I'm super proud of myself to complete this ๐ŸŒป

    Me showing this code to everyone : Elsa showing magic to Anna

    </div>
    <div class="gh-btn-container"><a class="gh-btn" href="https://github.com/thepracticaldev/dev.to/pull/4212">View on GitHub</a></div>
    



  • My PR to add WebApp configs merged in REACT so you can now Add to Homescreen react's documentation!

    WebApp manifest added to allow users "Add to Homescreen" documentations #2377

    This solves issue #2259

    Then

    Currently there is not manifest set for the website so logo is blank and title is set as a name. Also the color of URL bar in chrome is plain white. Here's how it will look after this PR.

    Now

    Image 1 is to show the new color of URL bar in chrome Image 2 is the screen after selecting "Add to homescreen" Image 3 is the splash screen after opening it as WebApp

    I've added color to the URL bar, Configured name, short_name and other properties. and added a logo file in src/images/react_logo.png (Needed 512px png logo so had to add a new logo)

    This is my first contribution here so I'm sorry if I missed out on something


  • All of my PRs (I made 5 :D) got Approved by the reviewers and 3 are merged!


  • I had an interview the day before yesterday and it went really well and I got a fair chance to prove my skills and the interview was very meaningful and probably the best interview of my life so I am very satisfied


  • Also, I slept for 10 hours today so yes it was a great week ๐ŸŒป

Collapse
 
jeremy profile image
Jeremy Schuurmans

My win was making my first ever substantive open source contributions. It felt like a double win when they were approved and merged!

Collapse
 
fultonbrowne profile image
Fulton Browne

Got 5 new contributors to my project and finished Text to speech in my app.

Collapse
 
martyhimmel profile image
Martin Himmel

I rebuilt the bathroom floor and replaced the toilet in the house we recently bought. Found out the toilet had been leaking, probably for several months. There are a few pictures in the tweet:

Collapse
 
simonholdorf profile image
Simon Holdorf

Mhm, this week has been awesome. My contributions to this wonderful community basically exploded
and then when I thought it couldn't get any better, Chris Coyier himself said he loved my post. Just Awesome! Thanks @DEV

Chris Post

Collapse
 
jaymeedwards profile image
Jayme Edwards ๐Ÿƒ๐Ÿ’ป

Worked through a statement of work to start a new consulting project. Iโ€™ll be helping a client in the education sector update the architecture of their web apps to some newer technology, and showing them the basics of DevOps. Really nice client (Iโ€™ve worked on an iPad app for them before). Iโ€™m grateful for the opportunity.

Collapse
 
bugmagnet profile image
Bruce Axtens

My win this week ... well, there were a couple ... but the one that's exciting me most at the moment, and which I will write about soon is figuring out how to load an entire dotnet assembly tree into ClearScript without having to include it in the solution.

So now I can create a folder somewhere, run

nuget install %1 -Framework net46 -Dependency Highest

where %1 resolves to, say, WordPressPCL, and watch all the related packages install. Once that's done I can create a WP.assemblylist file and put the aforementioned folder path in it on line 1 followed by the topmost DLL name on the second line, e.g.

C:\Packages\WordPressPcl
WordPressPCL.dll

When I run my ClearScript-enabled CLI, it loads WordPressPCL.DLL and all its dependencies into the JavaScript engine and lets me do stuff like

var client = new WP.WordPressPCL.WordPressClient("http://demo.wp-api.org/wp-json/");

I can see all kinds of possibilities for this to extend the reach of the CLI exe without amping up the size of the core EXE.

Collapse
 
kayis profile image
K

I got my first online tech talk published on youtube and over 300 people watched it! ๐Ÿ™ƒ

youtu.be/OUpUmWA0ae0

Collapse
 
shericodes profile image
Sheri Richardson
  • Submitted and got my first PR for Hacktoberfest merged.

  • For my Where in the World project I figured out how to get history working properly with React Router. I also fixed an issue I had with lazy loading and did some refactoring of the code.

  • Got a new pair of glasses so I can see everything clearly again. ๐Ÿค“

Collapse
 
anwar_nairi profile image
Anwar • Edited

With our team we fixed a very tricky concurrent update transaction bug after 4 PR (and 3 regressions of courses).

I can go in peace now... !

(learned so much about how transactions work, those kind of bugs force you to go dive into obscure and magic documentations...)

Collapse
 
yechielk profile image
Yechiel Kalmenson

Got 5 PRs merged this week!

Collapse
 
codingmindfully profile image
Daragh Byrne

Realising - holy crap! - I have around 7.5k followers on this platform! How on earth did that happen??

Publishing my last article:

OH, and learning that I'm going to be a PUBLISHED POET!

Collapse
 
alilynne profile image
Ali Thompson

I started a refactor of my favorite app using new knowledge and skills! (I have trouble starting things that seem like big projects sometimes, so this is huge for me.)

Collapse
 
amorriscode profile image
Anthony M.

This week I launched the landing page for my new project!

I also wrote a post on DEV about it for World Mental Health Day.

Can't wait to launch!

Collapse
 
averyd profile image
Avery D

That's awesome, congrats on the leap!

Collapse
 
sfbdev profile image
Furkan Bayram
  • i started my new job on monday. i am trying to get used to my new work and probably i will it untill next week.

  • Nowadays i want to improve my english. So i purchased a cambly subscription.

  • I worked on a documentation project. I build it with vuepress and i plan to finish it on friday.

Collapse
 
moyarich profile image
Moya Richards

You got this.

My big win this week is a great start to a new project that I would like to make available to the members of #JavaScript group that I own on Facebook of over 104K members. We are still fielding ideas and polling the group members to make sure that this is a service that they would like to have in the group. If the group members are all for this, I will work hard to turn it into something successful.

I have started looking into ways to provide career advice in the group.
So far I have found a career coach who has agreed to volunteer her service to the group members through a Q&A session.

I have spoken with a few professionals who understand that self-promotion is not allowed in the group. These people are completely open to giving back and not looking to profit from the group. So, I am looking forward to seeing what the group can achieve with all the amazing help of my connections, and the development community on a whole.

Collapse
 
fennecdjay profile image
Jรฉrรฉmie Astor

๐Ÿพ ๐Ÿพ ๐Ÿพ ๐Ÿพ

I reached 100% coverage in Gwion

๐Ÿพ ๐Ÿพ ๐Ÿพ ๐Ÿพ

I know it's not a real thing, but I think it will be pretty helpful for future refactorings ๐Ÿ˜„

Collapse
 
drbragg profile image
Drew Bragg • Edited

I created a PR to fix a bug in Vuetify (one of the, if not the, biggest Vue.js UI frameworks) and it was MERGED!

It was a relatively small PR/fix but given how massive and widely used the framework is I'm pretty pumped to have been able to contribute.

Collapse
 
jankoch profile image
Jan Koch

YEAH! You're up to an exciting journey, so happy for you!!!

Collapse
 
austinstanding profile image
Austin Standing

This week I recieved my Certified SAFeยฎ 4 Practitioner (SP)!

Collapse
 
dzhavat profile image
Dzhavat Ushev

Congrats. I went to a one day SAFe training (followed by two days of planning) last week. It was intense. This thing is not a joke :D

Collapse
 
austinstanding profile image
Austin Standing

Yeah I got thrown in the deep end my first week in it haha

Collapse
 
sanjeevpanday profile image
sanjeev

Congrats!

Collapse
 
scrabill profile image
Shannon Crabill

I finished my Sinatra project.

Collapse
 
drewclem profile image
Drew Clements • Edited

I started implementing user accounts into ColtXP!!!!!! Which means I started learning about Vue/Nuxt and Firebase authentication and user flow!

Collapse
 
rugamaga profile image
rugamaga

My PullRequest for an OSS is merged!

Collapse
 
yamitrvg12 profile image
yamit villamil

I've got flu :/

Collapse
 
mattpass profile image
Matt Pass

Getting ICEcoder v7.0 released, has been 2 years since last release. Community seem to really like it so that's cool! :-)

icecoder.net

Collapse
 
alexanderbelldev profile image
Alexander Bell

Solving a technically complex problem by not giving up even though I told myself I would multiple times...

Collapse
 
ferventer profile image
Dana G

So excited for you! Congrats! :)

Collapse
 
erikthered profile image
Erik Nelson

I opened 2 PRs for Hacktoberfest! Also the first golang project I've contributed to.

Collapse
 
majse14 profile image
Majse14

Wins: 2 PR'S in Hacktoberfest! ๐Ÿ‘ฝ

Collapse
 
nalcaraz profile image
Nallely

I finally started that website I promised my sister for her photography business!

Collapse
 
bugsysailor profile image
Bugsy Sailor

I committed to a weekend without attempting to create, code, or design a thing.

Collapse
 
simphiwehlabisa profile image
simphiwe sifiso hlabisa

I just reacted ๐Ÿคก

Collapse
 
amourycodes profile image
Amoury

I made my first ever contribution to open source. Loved the experience!

Collapse
 
skydevht profile image
Holy-Elie Scaรฏde

Going from ~100 to 500 followers...
I'm happy that what I wrote is important enough to trigger people to click that follow button. That encourages me to write more...

Collapse
 
petecodes profile image
Pete

I made $920 today with my website: nocsdegree.com/open

Collapse
 
mohanarpit profile image
Arpit Mohan

Took an entire day to fix a bug in Spring Webflux. ๐Ÿฅบ

It's hard to move from imperative programming to reactive programming, but I'm finally beginning to understand Project Reactor. Yaay!

Collapse
 
dwaseel profile image
Waseel-Almhre

My biggest win this week was to win over ten new customers in one week and satisfy them

Collapse
 
roelofjanelsinga profile image
Roelof Jan Elsinga

I finished hacktoberfest, that was a huge win for me! Also, I've managed to get 100% test coverage on most of my open-source projects. Now it'll be much easier to work on them in the future.

Collapse
 
zchtodd profile image
zchtodd

I've kept up with the daily SQL challenges that I started publishing a little over a week ago. I still have a ways to go (only on day 9 so far) but it's been fun.

Collapse
 
highcenburg profile image
Vicente G. Reyes

I just finished season 4 of Silicon Valley

Collapse
 
codenutt profile image
Jared

Honestly, just getting any work done while I was sick lol

Collapse
 
vinniew1rus profile image
Vinnie

I signed my new contract at a company as a Software Developer! Looking forward to learning a lot of new things :)

Collapse
 
skyandsand profile image
Chris C

I got user access I need to actually be able to SSH to the server I need to do my job (3 months later) lol

Collapse
 
elasticrash profile image
Stefanos Kouroupis

not getting angry when someone told me that unit tests are more or less pointless.

Collapse
 
eclecticcoding profile image
Chuck

Finished first month at Flatiron School Bootcamp and passed my Ruby GEM CLI portfolio project TODAY. Exciting day.โ˜บ
Take a look: Weather Ferret

Collapse
 
carlmungazi profile image
Carl Mungazi

Just published the latest tutorial in my build-your-own-JS-framework-series! ๐Ÿ˜

Collapse
 
hellovietduc profile image
Duc Nguyen • Edited

Starting that 7-minute workout, already skipped one day :(

Collapse
 
philnash profile image
Phil Nash

I gave my first talk at a Python conference!

Collapse
 
brandonskerritt profile image
Autumn
  • Started learning LaTeX for my dissertation
  • I wrote a new blog post
  • I remembered to smile, and managed 7 days of meditation using Headspace :)
Collapse
 
pvsukale profile image
Prithviraj sukale

Finally started working on my sideproject

Collapse
 
lucashogie profile image
Lucas H.

Two or three weeks ago, I talked about my bass part.
Today, I had the final performance.
It went well! :)
That's all.

Collapse
 
lexplt profile image
Alexandre Plt

We finally started to work on the standard library of a language I was working on solo, and about 4 new contributions popped up from the void!

Collapse
 
andy profile image
Andy Zhao (he/him)

I successfully moved to a new place!

Collapse
 
sama profile image
Samaila Bala

Wrote my first article on this platform

Collapse
 
slashgear_ profile image
Antoine Caron

First workshop in a conference at "Paris Web" about my webpack workshops.

webpack-workshop.netlify.com/

Collapse
 
tuwang profile image
TuWang

Wrote the first post on dev.to ;)

Collapse
 
radgade profile image
Rishi Adhikari

I fixed a bug in my posenet js application

Collapse
 
sagartyagi121 profile image
Gajender Tyagi

Wrote an article on dev that got great response.

Collapse
 
flrnd profile image
Florian Rand
  • Finished my first #Hacktoberfest and waiting for the 17th to collect the loot >:)
Collapse
 
allanwhite profile image
Allan White

Starting up blogging againโ€”right here at Dev.to! It felt better than I expected.

Collapse
 
krnsk0 profile image
Jon Kurinsky

Figuring out how to clear the annoying Catalina update badge notifications: dev.to/krnsk0/turn-off-macos-badge...