Guide for Technical Peer review of a webpage

Peer review (2 person)

    1. Person A:   Describes the overall structure of the page/site (requirements, wireframes, notes, file structure)
      – Question from person B
    2. Person A:   Goes through the code behind the page (Use terms like: elements, tags, attributes, Css rules, js elements)
      -Question from person B
    3. Person A:  Discuss bugs (that have been solved and learned from), possible improvements (code style, comments)
      -Question from person B
    4. Person A: Status on task (requirement, backlog)
      -Question from person B
    5. Change roles an start from 1.

Interview: Will McVay

Interview: Will McVay

Will McVay er udvikler med flere års erfaring i både store og små virksomheder. Da vi fik lov at interviewe Will, arbejdede han hos Sainsbury’s som Javascript front end developer hvor han i øjeblikket arbejder på deres “store locater” der er en webapp der ved hjælp af google API hjælper brugeren til at finde Sainsbury butikker. Sainsbury’s er Storbritanniens tredje største supermarkedskæde med en omsætning på omkring 21-22 milliarder om året.
Will var meget snaksagelig og fortalte med stor entusiasme om hvilke nye trends der var indenfor web-programmering. Will forklarer i interviewet at han mener at det er vigtigt for enhver programmør at holde sig opdateret på nye teknologier og arbejdsmetoder, men at man skal passe på at man ikke spilder for meget energi på noget der måske ikke bliver det nye.
Desuden har Will været inde over ansættelsen af praktikanter i Sainsbury’s udviklingsafdeling, og kunne derfor fortælle om hvad de havde søgt efter når de valgte praktikanter til deres to års “apprenticeships”. Han forklarede her at det vigtigste var gåpåmod og ens evne til at kunne begå sig på en arbejdsplads. Erfaring med kode var naturligvis en bonus, men ikke en nødvendighed. Denne insiderviden virkede yderst relevant i forhold til vores praktikforløb det kommende semester.


interview_image



Link to youtube

WP Theming

Learning Objectives

  • Child Themes
  • Barebone
  • From Scratch

Sources

Inspiration – CssZengarden

If you want to experiment with style, then the CSSZengarden is an excellent challenge. When your CSS is ready just implement your new creative style in WP.

Also try to install some Web Developer Tools in your favorite browser. I use the Web Developer for Chrome, but you may want something more fancy than that.

From a designer’s point of view much can be done using CSS. But you have to analyze the ids and classes in WP – when you know them – the magick of the designer may begin.

Dive into a Child Theme

  1. Find the ids and classes in a not too complicated WordPress theme.
  2. Hack a CSS that will change some of these styles.
  3. Try to implement a fancy online font (e.g. google fonts) via CSS.
  4. Use CSS to hide what you do not need – and add ornaments, icons and elaborate decorations.

Ad A) The anatomy of a WP theme

The minimum requierements for a WP theme is:

A basic overview of a WP theme on Siteground: “How to Create WordPress Theme”

Ad B) Child Themes

If you modify the code in a WP theme everything is lost when you update to a new version. Updating is important for security reasons. So how do you avoid this problem? The answer is:

– Use a child theme!

Create a folder on your PC for the files. Then make a file and name it style.css. Edit the comments for wordpress. Import all stylesheets from your theme. Then you’re ready to improve the design. Below is a sample style.css file.

Ad C) Themes (more or less) From Scratch

Security

Usefull tools