Author archive: ZERIN

Camera Features Photography
DSLR Camera + Photography Terms
March 24, 2020
0
, ,
AV Means – Aperture Priority
Coding Wordpress Wordpress Development Wordpress Theme Development
WordPress Theme Building Tutorial Link
March 22, 2020
0
You can learn WordPress theme development from the below URL: This is from Traversy Media. I am posting it because I found it useful to learn, these videos are copyrighted by Traversy Media.
Coding Commands Programmer
How To Install SAAS on Mac
March 21, 2020
0
SaaS is very important to generate CSS with variables You can install it on your MAC by typing the below command: brew install sass/sass/sass if you are not using MAC, click the URL https://sass-lang.com/install for details to install it for other OS sudo gem install sass Now, suppose I am working on my WordPress Theme […]
Commands Email Linux CentOS Server Uncategorized
DKIM Set for my subdomain
January 26, 2020
0
, , ,
I faced so much trouble while setting DKIM for one of my sub domain, there are so many online tutorials but not a single tutorial that describes everything at one spot. So I was thinking why not I write my own blog on it. What is DomainKeys Identified Mail (DKIM)? DomainKeys Identified Mail (DKIM)? It […]
Books Business Principal System The Toyota Way
TPS – Toyota Production System – the Toyota Way – 14 Principles
November 27, 2019
0
The 14 Principles Section I — Long-Term Philosophy Principle 1 Base your management decisions on a long-term philosophy, even at the expense of short-term financial goals. People need purpose to find motivation and establish goals. Section II — Long-Term Philosophy Principle 2 Create a continuous process flow to bring problems to the surface. Work processes […]
Books Business Business Principal System The Toyota Way
QCDSM
November 27, 2019
0
QCDSM is an acronym, which stands for Quality, Cost, Delivery, Safety, and Morale. Understanding QCDSM Quality – The quality of the products that are produced must be very high. Just as important is that the quality must be consistently good. Many companies use a Six Sigma strategy to help improve quality when implementing QCDSM. Cost – The costs for […]
Books Business Business Principal The Toyota Way
PDCA – Plan-Check-Do-Act
November 27, 2019
0
PDCA (plan–do–check–act or plan–do–check–adjust) is an iterative four-step management method used in business for the control and continuous improvement of processes and products.[1] It is also known as the Deming Circle/Cycle/Wheel, the Shewhart Cycle, the control circle/cycle, or plan–do–study–act (PDSA). Another version of this PDCA cycle is OPDCA. The added “O” stands for observation or as some versions say: “Observe the current condition.” This emphasis on observation and current condition has currency with […]
Books Business Business Principal System The Toyota Way
TPS:: Toyota Production System
November 27, 2019
0
The Toyota Production System (TPS) is an integrated socio-technical system, developed by Toyota, that comprises its management philosophy and practices. The TPS organizes manufacturing and logistics for the automobile manufacturer, including interaction with suppliers and customers. The system is a major precursor of the more generic “lean manufacturing“. Taiichi Ohno and Eiji Toyoda, Japanese industrial engineers, developed the system between 1948 and […]
Coding Flutter UI Clone
Flutter:: Chat UI Screen
November 27, 2019
0
lib/main.dart import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:my_app1/chat-ui.dart'; import 'package:flutter/services.dart'; void main() { runApp(ChatUI()); } lib/chat-ui.dart import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/services.dart'; import 'dart:math'; import 'package:my_app1/widgets/category_selector.dart'; import 'package:my_app1/chat-ui-chat-screen.dart'; class User { final int id; final String name; final String imageUrl; User({ this.id, this.name, this.imageUrl, }); } class Message { final User sender; final String […]
Coding Flutter Model
Flutter:: Proposed Folder Structure
November 26, 2019
0
Assets Folder — assets/fonts/— assets/images/ Lib Folder — lib/models— lib/pages— lib/widgets/widgets.dart— lib/routes/routes.dart— lib/utilities/styles.dart