DEV Community

Cover image for What was your win this week?

What was your win this week?

Gracie Gregory (she/her) on August 27, 2021

Hi everyone! Looking back on this past week, what was something you were proud of accomplishing? All wins count β€” big or small πŸŽ‰ Examples of 'w...
Collapse
 
ben profile image
Ben Halpern

I joined a new co-working space β€” pandemic isn't over on a global scale to say the least, but locally there is very high vaccination rates and I'm really excited to get back amongst people a little bit more.

Collapse
 
olistik profile image
olistik

I started working from one that is very close to my home and opened just a few months ago and since I'm the only co-worker I feel extremely safe. ^_^'

Collapse
 
gillarohith profile image
Rohith Gilla

I have written my longest blog post
dev.to/gillarohith/develop-url-sho...

FEELS GOOD

Collapse
 
cleveroscar profile image
Oscar Ortiz

Keep up the great work!

Collapse
 
gillarohith profile image
Rohith Gilla

Thanks πŸ™‡β€β™‚οΈ

Collapse
 
polgarj profile image
Jozsef Polgar

I started my blog about accessibility. 😊
uselessdivs.com/

Collapse
 
posandu profile image
Posandu

I think @inhuofficial also needs to see this.

Collapse
 
grahamthedev profile image
GrahamTheDev • Edited

I have already been to his article on it...you didn't think something about accessibility would slip by me did you πŸ˜‰πŸ€£πŸ€£

Keep shouting for me to look at stuff, it always makes me smile and is super useful!

(have you released anything lately, not seen you in the feed @posandu ?)

Collapse
 
polgarj profile image
Jozsef Polgar

Thank you @posandu :)

Collapse
 
siddharthshyniben profile image
Siddharth

Nice name :D

Collapse
 
polgarj profile image
Jozsef Polgar

Thank you :)

Collapse
 
nickytonline profile image
Nick Taylor • Edited
Collapse
 
graciegregory profile image
Gracie Gregory (she/her)

Woot WOOT!

Collapse
 
silviaespanagil profile image
Silvia EspaΓ±a Gil

I started a Redux Course!

Collapse
 
siddharthshyniben profile image
Siddharth

Remember the framework I mentioned last week? I did a lot of work on that. Now, styles can be scoped per component, and components can be imported! Last thing to work on is templating (<p>Hello {name}</p>). Expect a public release any week

Collapse
 
kayis profile image
K

Getting Honeycomb running with Pulumi 🀯

Collapse
 
vishnup95 profile image
vishnu prasad

I completed a short tiny npm cli introduction. Small wins: dev.to/vishnup95/let-s-build-a-sim...

Collapse
 
cleveroscar profile image
Oscar Ortiz

Managed to get the introduction of JavaScript finally published! Time for part two !

dev.to/cleveroscar/javascript-intr...

Collapse
 
anishkumar profile image
Anish Kumar • Edited

Setup my blog and published first two articles. In case JavaScript, problem solving, algorithms etc. interest you, feel free to have a peek. Pretty sure you won't be disappointed ;)

stackfull.dev/

Collapse
 
billraymond profile image
Bill Raymond

My podcast, Agile in Action with Bill Raymond celebrated its one year anniversary!

agileinaction.com

And I had the opportunity to interview David Pereira, who is proposing a Product Manifesto. That will release soon, but if you want to take a look at his proposal, check it out. He’s looking for collaborators.

bootcamp.uxdesign.cc/agile-manifes...

Collapse
 
thumbone profile image
Bernd Wechner

I think I finally understand Javascript Promises.

Collapse
 
namwebdev profile image
Tran Phuong Nam

I can setup and run React Native project for the first time. I'm so proud!!!!

Collapse
 
ajinkyax profile image
Ajinkya Borade

I finally got my Unity 3D object to run and controller 3rd perspective camera smoothly and with less code. Thanks to WFH, I'm learning so much.

Thanks to new Input System Package (copy pasted) and replaced Input with Input controls component. -> docs.unity3d.com/ScriptReference/C...

moveAction = playerInput.actions["Move"]

...
void Update() {
Vector2 input = moveAction.ReadValue<Vector2>();
...
Enter fullscreen mode Exit fullscreen mode
Collapse
 
eljayadobe profile image
Eljay-Adobe

I learned that this is undefined behavior in C++:

struct Foo{};
int main() {
  Foo* p = nullptr;
  delete p; // okay
  delete p; // undefined behavior
}
Enter fullscreen mode Exit fullscreen mode

To make it well defined behavior:

struct Foo{};
int main() {
  Foo* p = nullptr;
  delete p; // okay
  p = nullptr;
  delete p; // okay
  // ... but hereafter p is once again read inaccessible.
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
olistik profile image
olistik

I made some steps towards using OpenBSD as my daily driver (i3wm + Ruby on Rails). #yay

Collapse
 
denvercoder1 profile image
Jonah Lawrence

Just reached a 100 day streak of GitHub contributions!

Github Streak

Collapse
 
bernardbaker profile image
Bernard Baker

Overcoming my nerves when pair programming with a senior developer. Don't have to do that too often. As I'm usually the person offering to pair.

Good session though. Had to automate a manual task of editing archived file content and re-archiving the files and then batch publishing via npm.

Not sure why I felt nervous. Maybe it was a brief moment of anxiety. Feeling as though I didn't know what to program. Even though I've written so many different programs in the past. And live coded many times before.

An hour later the scripts were finished. Just before the end of the working day.

Collapse
 
bertilmuth profile image
Bertil Muth

I started my GitHub project for building modular monoliths.

Collapse
 
oreckc profile image
Thanh Hoang

I've just started my coding journey this week, that's actually a big win to me! Let's check my commitment to learn coding: dev.to/oreckc/i-ve-just-started-my....

Collapse
 
dylanmorley profile image
Dylan Morley

Am challenging myself to write more, so posted my first article to dev.to.

My changes to Azure Service Bus Terraform module were merged and released and are now being used in our CI/CD pipelines!

Collapse
 
nald profile image
Nald • Edited

by posting this on time compared to last week, @graciegregory you should count this as your this week's win πŸ˜ƒ

Collapse
 
bobbyiliev profile image
Bobby Iliev

We launched a new product called MarkdownX 🀩

It is a new markdown editor built for the TallStack πŸ™Œ

producthunt.com/posts/markdownx

Collapse
 
star_trooper profile image
Atharva Shirdhankar

I have crossed total 9000 views on my blogs on devto and that close to cross 10k viewsπŸš€

Really a great moment for me🀩

Collapse
 
bairrada97 profile image
bairrada97

congratz!
How old is your blog?

Collapse
 
star_trooper profile image
Atharva Shirdhankar

Around 1 and more than half month.
I started blogging on Devto from 20 July

Collapse
 
rwngallego profile image
Rowinson Gallego

Released the version v1.4.0 of a self-hosted Web Push Server for WordPress, now it's x2300 faster: docs.perfecty.org/wp/performance-i...

Collapse
 
rwngallego profile image
Rowinson Gallego

If you want more details, you can read my latest entry post: dev.to/rwngallego/making-a-self-ho...

Collapse
 
ariajanke profile image
Aria Janke

Recently got back into making some progress again with a new SPA after days of getting nothing done due to my depression having gotten really bad. c:

Collapse
 
yousufejazahmad profile image
Yousuf Ejaz Ahmad

I wrote my first Dev.to blog post
dev.to/yousufejazahmad/easiest-way...

Collapse
 
sdkdeepa profile image
Deepa Subramanian

Made Indian sweets and savouries!

Collapse
 
Sloan, the sloth mascot
Comment deleted
Collapse
 
billraymond profile image
Bill Raymond

Just two little things :)

Collapse
 
whykay profile image
whykay πŸ‘©πŸ»β€πŸ’»πŸˆπŸ³οΈβ€πŸŒˆ (she/her)

I officially found out this week that I was awarded the PSF Community Service Awards, and I accepted it (after picking my jaw off the ground)! πŸ₯° python.org/community/awards/psf-aw...

Collapse
 
andrewbaisden profile image
Andrew Baisden

Posted a lot of articles in a short space of time and all of them had great engagement.

Collapse
 
mmuller88 profile image
Martin Muller

Launching my first #AWS Security product <3
t.co/ULOiJLu74T