Wednesday, November 27, 2019

Why You Shouldnt Overdo it at The Holiday Party - The Muse

Why You Shouldnt Overdo it at The Holiday Party - The MuseWhy You Shouldnt Overdo it at The Holiday Party Its all anyone can talk about these days the impending company holiday party. Conversations abound and ansturm the gamut what the dress code is, how long the open bar will last, wholl go out afterward, whether so-and-so will bring a date, and- of course- who will get stupid-drunk. This, as you probably already know, is a label you want to avoid. But its still all too common to look at your companys annual office party as an opportunity to get wasted. Yes, a holiday party is supposed to be fun. Its a much-deserved opportunity to kick back and relax with the people you work hard with every day. Its a thank-you from your bosses, and the very nature of it spells good time for all. But its also a chance to connect with the people who have taken over your inbox and spend some non-work time with the higher-ups- something thatll be pretty hard to do if youre plastered.Last year, at my co mpanys holiday party, I came dangerously close to drinking too much punch and waking up the next morning bedrngnis only with a pounding headache, but an awful pit in my stomach, wondering what inappropriate things I might have said- and to whom. Fortunately, before it was too late, I put the punch down and alternated it with cups of seltzer, pacing myself for the hours of celebrating ahead. And Im happy to say that I did the party right. So, take it from me Before you don your most festive attire and start lining up shots at the bar, think about five opportunities you can kiss goodbye if you have one too many.1. Escaping the Reputation of Being That Guy or GirlYou knew this was coming- so might as well get it out of the way first. Nobody wants to be known as the drunk idiot who couldnt hold his or her liquor. Sure, your over-tequilaed brain might think that getting up on the bar and inviting your co-workers to do shots off of your bare stomach makes you the life of the party, but re ally, its a move that will label you the drunkest one of all. Dont be that person. If its got to be someone, its in your best interest to let anotlageher member of the team take it on.2. Getting to Know the Higher-upsDepending on the size of your company, you may or may not get an opportunity to get a one-on-one with a member of the senior management team, but that doesnt mean you shouldnt make an effort to finagle your way into a group conversation at least. When you do manage to insert yourself into a circle of higher-ups (and youre not a complete mess), youll be at an advantage to introduce (or re-introduce) yourself, give your spiel about what you do (and how awesome you are), and then change the topic to something non-work related in an effort to make a real connection.3. Making New Work FriendsThe company holiday party is a terrific way to get to know co-workers you mostly make small talk with day in and day out. Even if youre a regular at the monthly happy hours, theres a goo d chance that far more of your colleagues will be in attendance at the holiday party. And hey, you could end up with a new friend by nights end, or even a mentor. Having a trusted confidant is huge and can make the daily grind that much more bearable. (Oh, but, a word of caution here Getting trashed and, consequently, too cozy with your co-workers may make you look creepy and probably wont result in the kind of bonding you were seeking.)4. Having FunYouve been there, Ive been there Get too drunk, and youre no longer having a good time. Youre just a sloppy mess who cant stand up straight and has a spinning head and an inevitable feeling of dread to look forward to in the morning. And, OK, even if in your drunken state of euphoria you believed you (and everyone around you) was having a blast, remember you were probably just fodder for gossip about that drunk guy/girl over there. Worse though is the next morning when you have no memory of what happened the night before. How much fun is that?5. Letting People Get to Know Your Best SelfYour co-workers know you give a mean presentation. Your group speaking skills are enviable around the office, and your GIFs on company-wide emails are the best. Maybe a handful even know how you like your coffee or that you keep a little jar of sea salt on your desk. But most of what they see of you is work-related. The company holiday party is your chance to show off your best you- and for you to get to know their best them. How will you ever know if you and Jocelyn from the creative department both share a love of snowboarding if youre stuck vomiting in the bathroom? Consider the party as a way to not only show off your fun-loving self outside the boardroom, but also as a way to see your colleagues in the same, unfamiliar light. In the long run, it could actually make you like your job more.Obviously, you should enjoy yourself and kick back with a cocktail or two. But, know your limits, and remember the importance of pacing when it s an open-bar situation. Yes, theres a lot of bad stuff that can happen if you overdo it, but theres also all that good stuff youll never know if youre out of control.

Friday, November 22, 2019

Microsoft .NET Framework Best Practices

Microsoft .NET Framework Best PracticesMicrosoft .NET Framework Best PracticesThere are countless ways for developing applications using the Microsoft .NET framework. Here are four best practices cherry-picked by a developer with many years of experience creating applications built on .NET.With a flexible development platform like the Microsoft .NET framework, there are a few key areas where youll want to apply best practices. I tapped Rion Williams, a longtime .NET developer, to help explain unterstellung areas. They includeCoding practices and conventionsDesign and architecturePerformanceSecurity1. Coding Practices and ConventionsFollowing best practices when writing code in the Microsoft .NET framework allows you to create consistency and facilitate refactoring and maintenance. You also can avoid errors and exceptions.Consider naming conventions. They may bedrngnis affect performance, but they can often directly affect the readability of your code. Using variables with meaningful names can help you infer what is going on.For examplevar carsPassed = 0is a clearer thanvar c = 0Every developer working with the Microsoft .NET framework has his or her own conventions. But there are some commonly accepted standards around naming, code layout, appearance and the like. The following resources can clue you in to unterstellung standardsTop 7 Coding Standards and Guideline Documents for C/.NET DevelopersC Coding Standards for .NET (PDF)Microsoft All-In-One .NET Code Framework2. Design and ArchitectureThe biggest reason to incorporate best practices in the design and architecture of apps you create in the Microsoft .NET framework is to avoid errors and costly rewrites.There are hundreds of patterns out there to help govern the design of your application. Youve probably heard of design patterns with names like MVC, Gang of Four, MVVM, Repository, Unit-of-Work and Singleton, for example. All of these are widely used and each serves a different purpose. They can be used on their own or in conjunction with other patterns if your application calls for it.Another common concept within the Microsoft .NET framework is N-Tier, or N-Layer, design. The most common of these for smaller applications is three-tier architecture. If youre using a three-tier architecture for the first time or want to brush up, check out these resourcesThree-Tier Web Application DevelopmentA Simple 3-Tier Layers Application in ASP.NETMVC N-Tier EMR SampleAn N-Tier Architecture Sample With ASP.NET MVC3, WCF and Entity FrameworkThe following additional resources can help you delve even deeper into different Microsoft .NET framework design and architecture patterns.NET Design PatternsDiscover the Design Patterns Youre Already Using in the .NET FrameworkASP.NET Patterns Every Developer Should KnowMicrosofts Patterns and Practices Site3. PerformanceLooking for some instant gratification? Pay close attention to Rions suggestions for improving performance.One of the best ways to identify possible areas of improvement is to use an analyzer to take a look at your code (or the Web Requests that are made from your application). Check out these analyzers for the Microsoft .NET frameworkReSharper, says Rion, is the single greatest tool available in the .NET development world. It provides code suggestions for improvements as you develop your applications. The tool also offers code quality analysis, error elimination and code testing. ReSharper is available for purchase, but you can download a 30-day free trial before you buy.EQATEC Profiler is a free tool that identifies areas for improvement and areas of weakness within your code.Another tool Rion raves about is the Web Developer Checklist, which he describes as an excellent resource for improving web application performance.4. SecuritySome of the major concerns relating to security within applications built on the Microsoft .NET framework are SQL Injection and XSS (Cross Site Scripting) Injection. These attacks could cri pple your data or web application if you arent properly protected, Rion says. By default, .NET implements its own measures to help prevent this from happening. But there are additional precautions you should take.One example, Rion says, is the use of SQL Parameters as opposed to simply concatenating strings when building SQL queries.If you are calling your Stored Procedure or query through ASP.NET and are simply concatenating the values of something like a TextBox with your SQL call that calls your query, that could make your code susceptible to SQL Injection.You should always populate any values that are pulled from your application as SQL Parameters to ensure proper encoding. You never want to give users an opportunity to write their own SQL code (or inject it) into one of your queries, Rion cautions.If Stored Procedures are an option within your Microsoft .NET framework application, consider using them. Stored Procedures are safer than using direct SQL code because they have this same functionality already integrated into them.Here are some additional resources to learn more about Stored ProceduresDo Stored Procedures Prevent SQL Injection?How to Prevent SQL Injection in Stored ProceduresDoes Stored Procedures Help Eliminate SQL Injection?Armed with the Microsoft .NET framework best practices and resources mentioned above, you can develop more consistent, better performing and more secure applications.Find out starting salaries for .NET developers in your areaDOWNLOAD THE SALARY GUIDEThis post has been updated to reflect more current information.

Thursday, November 21, 2019

Entry Level Logging Resume Template 2018s Top Format

Entry Level Logging Resume Template 2018s Top FormatEntry Level Logging Resume Template - 2018s Top FormatCreate ResumeDouglas Soy100 Main Street, Cityplace, CA, 91019 (555) 322-7337 example-emailexample.comProfessional SummaryReliable worker with strong mechanical aptitude and a willingness to learn. Automotive Technician focused on completing preventative maintenance and repairs in a timely fashion and giving proper attention to every vehicle and customer. Automotive Technician focused on completing preventative maintenance and repairs in a timely fashion and giving proper attention to every vehicle and customer.SkillsExtensive experience withweldingworking with hand toolsfabricationfast learnerWork Historygreen chain puller Jul 2012 Currentswansons group Springfield, ORPull green veneer off the green chain. I know how to run the deck, the clipper, and the stackerauto body teck and painter Jul 2009 May 2011plattsmouth auto body Plattsmouth, NEI did all the prep work on the cars to get them ready for paint then i masked them off for paint , then i mixed the paint and painted the car. I replaced body panels and fixed the dents a.nd did lots of welding on the body of the cars and the frames. I did lots of fabrication on the classic carsauto body teck Oct 2005 May 2009simons auto body Eugene, OR i did auto body work replacing body parts, frame work, and fixing dents. i got certified in mig weldingauto body and painter Jul 2003 Aug 2005rpm muscle Merlin, ORI painted cars. prepped them for pant, sanded, masked off the car for pain, wet sanded and buffed the car. i also did body work fix dents and replaced parts. i know how to weld and have all my own tools.fuel clrek Sep 2002 Jul 2003albertsons Grants Pass, OR pumped gaslead installer Oct 1998 Aug 2002lucent teck Medford, OR installed phone equpment and phone wire in the central offices. We also put in the elecrcal to all the equpment and put up all the litesEducationAssociate of Applied Science auto body and p aint, street rod and custom fab 2003 wyo teck lermaime, wyHigh School Diploma 2007 grants pass high Grants Pass, ORCustomize ResumeMore Skilled Trades Resume TemplatesLogging Resume TemplatesExperienced Manufacturing and Production Resume TemplatesEntry Level Manufacturing and Production Resume Templates