Skip links

Adding CKEDITOR 4 to laravel application

Its quite simple to add Ckeditor to any laravel application. Its a javascript library so it doesn’t matter which laravel version you are using. Steps to follow Visit Ckeditor Website – https://ckeditor.com/ckeditor-4/download/ Download full package (without Easy Image) Extract download zip forlder and paste ckeditor folder in your laravel public folder Now Simply Include ckeditor […]

Three Principles of Redux

Single Source of Truth State is Ready Only Changes are made with Pure functions (reducers) Single Source of Truth The global state of your application is stored as an object inside a single tree. For example, continuing with the previous post: State is Read Only The only way to change the state is to dispatch […]

Getting started with Redux

Redux is a pattern and a library for organizing global state in your application, outside of the React componentry. Redux, itself, does not depends on any UI library. It’s most commonly-used with React. And the idea is that you provide a separation between the code that manages your data and updates it and the parts […]

Python: First steps with Python

First Steps with Python Display Print Text! Extension – fileName.py Comments in python Variables in Python You don’t need to define a variable type in python, in the below case, a is an integer, b is float, c is a string, d is boolean and e is special None Type Variable Running python files in […]