DEV Community

Michael Tharrington for CodeNewbie

Posted on

What you learning about this weekend?

Hey folks πŸ‘‹

What ya learning on this weekend?

Whether you're sharpening your JS skills, making PRs to your OSS repo of choice πŸ˜‰, sprucing up your portfolio, or writing a new post here on DEV, we'd like to hear about it.

Best of luck on your learnings... remember to take breaks and enjoy yourself this weekend!

Finn the Human from Adventure Time thinking incredibly hard... as we zoom into his face, we dive down to the molecular level and see thoughts forming chemically.

Top comments (14)

Collapse
 
imthedeveloper profile image
ImTheDeveloper

Salesforce setup / development at the moment.

Getting into utilising products and opportunity products to define expected fees that can be obtained by winning an opportunity. Relating these to vairous types of opportunity such as fund raising, financial management, consulting and lending.

Salesforce can be quite overwhelming at first. I think I'm slowly getting there. As with most systems that have grown so large over time elements of permissions and various "views" of the same data and pages is probably the hardest part to get your head around.

Collapse
 
thedailystruggle profile image
Chad Montgomery

I just finished the Odin Project foundations with my calculator project. I'm quite happy with how it turned out and what I learned making it.

Now I am starting down the JavaScript and Node path, currently learning about SASS before diving back in to more JavaScript.

Collapse
 
kurealnum profile image
Oscar

Taking it slow, and trying to get a bit of a schedule built up for the summer!

Collapse
 
michaeltharrington profile image
Michael Tharrington

Woot! Smart move. Good to recharge!

Collapse
 
integerman profile image
Matt Eland

Not as much as last weekend. I'll read a bit of another book on Blazor, but more want to clean and organize that home office and be rested for the new role starting Monday.

Collapse
 
michaeltharrington profile image
Michael Tharrington

A clean, organized home office sounds majorly rewarding and is a good way to quick off the week.

Collapse
 
integerman profile image
Matt Eland

Oh it's super refreshing. It's not all the way there yet, but it's moved from a draining space to a professional feeling one that energizes me.

Collapse
 
villelmo profile image
William Torrez • Edited

LABEL IN PERL

use strict;
use warnings;


OUTER:
while (1) {
    print "start outer\n";
    while (1) {
        print "start inner\n";
        last OUTER;
        print "end inner\n";
    }
    print "end outer\n";
}
print "done\n";

Enter fullscreen mode Exit fullscreen mode
Collapse
 
danbailey profile image
Dan Bailey
  • Grunt
  • Azure AZ-104 certification
Collapse
 
audreyevergreene profile image
EverGreene

I'm working on a React/ Bootstrap site, and finishing my Scrimba Front End Tutorial on the side!

Collapse
 
michaeltharrington profile image
Michael Tharrington

Oh rock on! I hope the site-building has been going well and that you're able to apply those new Front End skills. πŸ™Œ

Collapse
 
pengeszikra profile image
Peter Vivo

Start using vim on working laptop, also install neovim my mac.

Collapse
 
michaeltharrington profile image
Michael Tharrington

Rock on! Sounds like a productive weekend. πŸ™Œ

Collapse
 
montyharper profile image
Monty Harper

I'm learning about delegates in Swift.