Coding

Coding Flutter
Flutter: Flex
November 19, 2019
0
, , ,
Code pubspec.yaml flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true assets: - images/pic1.jpg - images/pic2.jpg - images/pic3.jpg lib/main.dart import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart' show debugPaintSizeEnabled; void main() { debugPaintSizeEnabled = false; // […]
CodeIgniter Framework Coding php
Severity: Warning Message: Cannot modify header information – headers already sent by
November 13, 2019
0
, ,
Suddenly I am getting the below error message in my Codeigniter project after updating my server with new PHP upgraded version –“Severity: Warning Message: Cannot modify header information – headers already sent by“ The Simple way to solve it is write the below command in php.ini: output_buffering = On
Coding Programmer svn
SVN Command to manage tracking of personal projects.
March 11, 2019
0
I was recently working on some of projects of my start-up. I wanted to make sure that I can see the revision logs of my project source code so that I can find why I have changed the code & in case accidental delete of a running good code I can restore by reviewing the […]
Coding IOS + Swift
IOS + Swift Code: Read Data from Remote Json File
September 6, 2017
0
, ,
My JSON FILE: {"teams":[{ "id": "1", "clubName": "USJF", "isDeleted": "0" }, { "id": "2", "clubName": "Docume", "isDeleted": "0" }, { "id": 3, "clubName": "Chelsea", "isDeleted": 0 }, { "id": 4, "clubName": "Bercelona", "isDeleted": 0 }]} JSON FILE Screenshot: IOS CODE: // // ViewController.swift // HelloJson // // Created by Arifur Rahman Zerin on 9/5/17. // […]
CodeIgniter Framework Coding
CodeIgniter: How To Call A Controller from another Controller
October 2, 2015
0
Suppose you have two controllers file, one is users.php and another one is welcome.php. For some reason, you want to load the a function from users controller from inside the controller welcome. Write the below code in your welcome controller file: $this->load->library('../controllers/users'); $this->users->function_name();