All posts filed under “Resources

All the Resources-related tutorials, ideas and various posts in Stampede Constructs

Learn Git in 30 Minutes
comment 0

Got 30 Minutes to Spare? Learn to Git!

Git, you’ve heard of it but likely not gotten into it. The thing is that it can really help out with the work of web development, by documenting all of changes we have made. Since it is well documented, it is much easier to pass the development process to another developer. Besides that, Git also allows us to revert back to last change we have made, just like a check point. That is the basic function of it does.

Read More

Multiple WordPress Sites? We've Got You Covered
comment 0

Multiple WordPress Sites? We’ve Got You Covered

Are you running multiple WordPress (WP) websites? Maintaining a WordPress (WP) website is not very hard, and this is partly thanks to its user friendly interface and its ease of coding for developers. It will start to become a chore when you need to install and setup WP websites almost every week. Here’s a solution that we’ve found that solves this problem, it’s called WP-CLI.

Read More

comment 0

Type Anything

Many web designers and Developers have been using lorem ipsum to instil the visual element in viewing content of the website. But is it still relevant?

Sure, it’s fine if you insert dummy text into your mock design, but it veils between you and reality. You will not see the variations once real text or information starts replacing it. The length and height of text placeholders may overflow. At this point, does it still look good?

Read More

Getting Started with Emmet
comments 2

Getting Started with Emmet

When you think of the name Emmet, the hero from the Lego movie probably comes to mind. Today we’re going to be looking at a different Emmet, one you might not be familiar with. This Emmet we’re referring to is a plugin for many text editors. It helps with the development of HTML by granting your text editor, short-hand coding superpowers.

Read More

Shortcuts And Tips For Improving Your Productivity With Sublime Text
comment 0

Shortcuts and Tips for Improving Your Productivity with Sublime Text

Sublime Text is by far my favorite code editor, and it’s not just me. There are many around the world that use it as their main code editor.

One of the reasons is that, Sublime Text is a powerful  and lightweight in its build. There are many shortcuts that will increase your speed in development, and the shortcuts itself are very handy.

Read More

10 Best CSS Code Generators for Web Developers
comment 0

CSS Code Generators for Web Developers

Nowadays, styling webpages with CSS is not just about adding color or background for the elements. It is more complex than that. Classes such as text shadow, border radius, gradient, animate are some of which are not ordinary. To achieve that, you will need longer code. Also, different browsers use different code. If done manually, it will be waste of time.

Read More

Getting Started with Flexbox
comment 0

Getting Started with Flexbox

Flexbox is a new layout method that was introduced in CSS3, made to create and control layouts using CSS. By using grids (flex container), it allows you to modify the width or height of child elements to dynamically fill available spaces in the best way possible. It is highly valuable when developing for different screen sizes.

Read More

Understanding Code Smells and How to Prevent It
comment 0

Understanding Code Smells and How to Prevent It

Programmers are people, and like people we come from different backgrounds. This affects how we first learned to code. For some, it can be from formal education in computing (tertiary education) and for others, they are self-taught out of an interest or necessity. The quality of code produced can be seen (but it also depends on the individuals themselves).
Read More

REST
comment 0

The Basics of REST and RESTful API Development

As a web developer, have you ever come across other developers talking about REST?

It is spoken often in the web development community and stands for Representational State Transfer. It is a method of creating APIs with certain organizational principles used for data transmission that is commonly used for web applications. It can also be used to transfer data to software as well.
Read More