Wednesday, March 18, 2020

Resume Tips Part 2 Words and Phrases to Delete from Your Resume

Resume Tips Part 2 Words and Phrases to Delete from Your Resume This is one of my favorite resume tips. It will help you show employers exactly what you did and what you can do for them. Most of us are familiar with the concept of â€Å"power verbs† on a resume. We also have unlimited resources for finding and choosing power verbs, such as  this list organized by category from the University of Iowas Pomerantz Career Center. How many times have you heard, â€Å"Every bullet in a resume should start with a verb? Dozens at least, right? Then why are you starting your bullets with the phrase responsible for? Responsible is not a verb, no matter how many times it shows up on your resume. Furthermore, you can be â€Å"responsible for† something and not actually do it! Employers care about what you did. Employers (or their computer systems at least) also care about keywords. I promise you, â€Å"responsible† or â€Å"responsibility† will never show up in a list of sought-after keywords. Begin with a Power Verb Compare: a. Was responsible for submitting two sports-related blogs per month for publication on website. b. Submitted two sports-related blogs per month for publication on website. And compare: a. Responsible for raising $250,000 by recruiting staff to run door- to-door canvass reaching 200,000 people. b. Raised $250,000 by recruiting staff to run door-to-door canvass reaching 200,000 people. Version b in both cases is shorter and more powerful than version a. You might be there saying, â€Å"But I didn’t just do things, I was responsible for them!† If you had supervisory or managerial responsibilities, there are verbs for that. Some of them are: Supervised Developed Managed Ensured Handled Monitored Even if you had many significant responsibilities that are important to list on your resume, try including your responsibility in a bullet that also includes an achievement, along with the important keywords you see in the job description. And remember to start each bullet with a verb! Be responsible for the words you choose on your resume. I hope you found these resume tips useful. If you want professional assistance to craft a powerful resume, please contact us.

Monday, March 2, 2020

How to Format PHP Text

How to Format PHP Text So youve gone through the PHP  tutorials  or are new to PHP in general, and you can make some nifty things in PHP, but they all look like plain text. How do you jazz them up? Formatting PHP text isnt done with PHP; its done with HTML. You can do this in two ways. You can add HTML inside the PHP code or you can add the PHP code inside the HTML. Either way, the file must be saved as a .php or another file type that is allowed to execute PHP on your server. Changing PHP Text Color Using HTML Inside PHP For example, to change the PHP text color to red. Hello World!; ? In this case, the hex color number #ff0000 sets the PHP text that follows it to red. The number could be replaced by other  hex color numbers for other colors. Notice the HTML code is located inside the echo.   Changing PHP Text Color Using  PHP Inside HTML The same effect is achieved with the following code, which uses PHP inside HTML. In the second example, a single line of PHP is inserted inside the HTML. Although here it is only a line to make the text red in this example, it could be inside a fully formatted HTML page to get any look you want. Types of Formatting Available in HTML It is easy to make text formatting changes to PHP text inside HTML. Although many of these formatting commands have been suspended in Cascading Style Sheets, they all still work in HTML. Some of the text formatting commands that can be used include: Bold - Italic -      Underline -  Strike-out -   or  Small -  Font size -   , replace the ? with a number from 1 to 7, 1 being the smallestCenter text -   A complete list of text formatting tags is available.