Profile

Work

I am a Full-Stack Web & Software Developer with over fifteen years of experience. Over countless hours I have discovered that I have a passion and talent for creating works that are both highly functional and technically sound.

I have also discovered that I have a knack for understanding new theories & concepts – I am an adamant perfectionist when it comes to just about anything I do.

Current Skill set

Web
  • Responsive Mobile first HTML & CSS3 – Bootstrap, SASS
  • JavaScript (Vanilla JS, JQuery, Angular)
  • PHP (Web Server & CRON)
  • CRM / CMS packages – WordPress, OsCommerce, Marketo
  • MySQL
  • Git
  • SEO & PPC
Applications
  • Java
  • Python
Legacy Technology
  • ASP (classic)
  • Visual Basic
  • Adobe Flash
Software Packages
  • Adobe Photoshop
  • MySQL
  • Jet Brains Web Suite
  • Microsoft Word
  • Microsoft Excel
  • Microsoft Access
  • Maya 3d
  • and more…

Study

At the start of 2019, I am entering my 4th year of a 6 year course Studying a Bachelor of
Computer Science with gaming specialisation at Charles Sturt University

Hobbies

Pyrotechnic

A license Pyrotechnician in the state of N.S.W. Australia for over twenty years, performing
professional grade pyrotechnic shows ranging from from Chinese String Crackers, Indoor Close
Proximity Fireworks, Aerial Shells up to 125mm and Aerial Salutes up to 75mm.

A founding member of the Pyrotechnics Industry Association of Australia (PIAA), Based in Sydney
but have performing shows all over NSW for all types of events.

Car Enthusiast

An active member in the Skylines Australia NSW car club I regularly volunteer to help run events.

Social Media

You can connect with me professionally on LinkedIn,
or stalk me through Twitter

Portfolio

Employment

Wizardry Fireworks

PRODOCOM Australia

Hannover Fairs Australia

E-Web Marketing

Freelance Websites

Personal Projects

Tipping Comp

cruizen’

National Pyrotechnics

iblott accessories

Blog

What are CSS Pre-processors (SASS, LESS)?

In the ever-evolving world of web development, maintaining clean, efficient, and scalable CSS can be a daunting task. This is where CSS pre-processors like SASS and LESS come into play. But what exactly are CSS pre-processors, and why should you consider using them? In this article, we’ll dive into the essentials of CSS pre-processors, focusing on SASS and LESS, and how they can revolutionize your workflow.

What is a CSS Pre-processor?

A CSS pre-processor is a scripting language that extends the capabilities of regular CSS. It introduces features like variables, nesting, mixins, functions, and more, making CSS more dynamic and maintainable. Pre-processors compile the enhanced code into standard CSS that browsers can understand, bridging the gap between developer efficiency and browser compatibility.

Benefits of Using CSS Pre-processors

  1. Code Reusability:
    • Pre-processors allow you to define reusable code snippets (e.g., mixins), reducing repetition and making your code DRY (Don’t Repeat Yourself).
  2. Improved Readability and Maintainability:
    • Features like nesting enable you to structure your styles hierarchically, closely mirroring your HTML structure.
  3. Variables for Consistency:
    • Define variables for commonly used values like colors, font sizes, and spacing, ensuring consistency across your project.
  4. Advanced Features:
    • Functions, inheritance, and operations (e.g., mathematical calculations) make it easier to implement complex styling logic.
  5. Scalability:
    • Break down your CSS into smaller, manageable files and import them as needed, improving organization.

SASS: Syntactically Awesome Stylesheets

SASS is one of the most popular CSS pre-processors, offering a powerful set of tools for writing clean and efficient styles. Here are some key features:

  • Syntax Options: SASS supports two syntaxes — the original indented syntax (.sass files) and the newer SCSS syntax (.scss files), which is closer to traditional CSS.
  • Nesting: Organize your code logically by nesting selectors inside one another.
  • Mixins: Create reusable chunks of CSS with parameters to make them dynamic.
  • Partials and Imports: Split your styles into smaller files and import them into a main file.
  • Built-in Functions: Perform operations like color manipulation, math calculations, and more.

Example:

$primary-color: #3498db;
$padding: 10px;

.button {
  background-color: $primary-color;
  padding: $padding;

  &:hover {
    background-color: darken($primary-color, 10%);
  }
}

LESS: Leaner Style Sheets

LESS is another popular CSS pre-processor with similar capabilities to SASS. It’s easy to learn and integrates seamlessly with Node.js projects.

Key Features:

  • Variables: Store reusable values for consistency.
  • Mixins: Define reusable styles with or without arguments.
  • Nested Rules: Organize styles hierarchically.
  • Operations: Perform calculations directly in your styles.
  • Functions: Use built-in functions to manipulate colors and other values.

Example:

@primary-color: #3498db;
@padding: 10px;

.button {
  background-color: @primary-color;
  padding: @padding;

  &:hover {
    background-color: darken(@primary-color, 10%);
  }
}

Choosing Between SASS and LESS

When deciding between SASS and LESS, consider the following:

  1. Community and Ecosystem:
    • SASS has a larger community, extensive documentation, and broader adoption in frameworks like Bootstrap.
  2. Syntax Preference:
    • SASS offers both SCSS and indented syntax, while LESS sticks to its own syntax.
  3. Tooling:
    • SASS integrates well with various build tools (e.g., Webpack, Gulp), while LESS is popular in projects that rely on Node.js.
  4. Features:
    • While both are powerful, SASS offers slightly more advanced features and a more modern syntax.

Conclusion

CSS pre-processors like SASS and LESS are invaluable tools for modern web development. They simplify complex tasks, enhance code organization, and improve maintainability. Whether you choose SASS or LESS, incorporating a pre-processor into your workflow can save time and boost your productivity.

Ready to take your CSS to the next level? Start experimenting with SASS or LESS today and see the difference for yourself!

Published by
February 13, 2025 9:43 am

Comments are closed here.


Creative

I studied Digital Media for 12 months at Mt Druitt TAFE. While  doing so we studied The 3D Modeling Program ‘Maya’. During the course I produced a number of 3D scenes and a couple of 3D animated movies.

I have also played in other programs such as Bryce 3D, 3D Studio Max, Lightwave, Vue D’esprit and a few others. However, i have always returned to Maya as a personal preference.

Bellow are a number of works that i have produced from these various programs.

Bryce 3D: Balls

Vue D’esprit: Sulfuric

Maya: Living Room

Maya: Gauntlet

Loading...