This tutorial is an introduction to the Yii MVC framework. We use version 1.1 and go through some of its great features. Some of the topics that I reviewed in this tutorial are listed below Installing the frameworkRunning a webserverDirectory StructureCreating a hello world applicationRouting and UrlsControllers and ViewsModels, Databases and MigrationsThe Gii Tool for … Continue reading Yii 1.1 Tutorial for beginners and Programmers
Author: Wynton Franklin
An introduction to react tutorial for beginners and programmers
In this tutorial we look at react and some of its most important features that beginners should know about. Some of these features are, creating lists, components, click events and the state object.
Working with jsx and components in React – A beginners guide
I finally got around to working with React a UI framework that I was always curious about. This blog post describes me playing around with it. It's meant to be unofficial so don't quote me on any of this stuff.
Creating an advanced bookmark manager with electron
I created an app for work to manage some of the internal websites, credentials and web apps that I needed to access. Its kinda like a bookmark manager but better ( at least I think so). I built it using electron and since I saw that my electron app tutorial gets a lot of views … Continue reading Creating an advanced bookmark manager with electron
Working with Pipes in Angular
In this short tutorial we look at working with pipes in angular. Pipes allow us to transform data. So I have some examples below of using pipes and the different default pipes available. You can also create custom pipes but I'm not going so far. This tutorial continues my dive into angular as I continue to explore the framework.
Social Login using PHP and Google
Social logins help users incorporate single sign on in their lives. They have a google account and they can access many services with that one account. This article goes through creating a social login with google.
Table filtering in Vue.js
So in this tutorial we are going to create a table and have our table be filtered automatically. The first thing we do is include our vue.js script. We are using it as a script and not compiling it. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.js"></script> This tutorial is more of a continuation from some vue.js with php tutorials I … Continue reading Table filtering in Vue.js