Pages

Wednesday, April 10, 2013

Add CSS in Codeigniter

1. First create a folder in root folder (where application, system these folder are placed).
2. Name it Modify(or anything you like).
3. Under Modify, create another folder named css.
4. In the css folder place your css file (like. style.css).
5. Go to config.php (application/config/config.php).
6. Change
               $config['base_url'] = '<>'; 
                                  (path and name of your project == <>)
7. Open autoload.php (application/config/autoload.php)
8. Change:
                from:
              $autoload['helper'] = array();
                to
              $autoload['helper'] = array('url', 'file');
9. Now link like below:
 
Hopefully your CSS file is linked

Sunday, June 3, 2012

Shortcomings of a 'derailed' manager

There are four major shortcomings.

1. Problems with interpersonal relationships.
2. Failure to meet the organizational objectives.
3. Failure to build and lead a team.
4. Inability to change and adapt during a transition.

Friday, April 27, 2012

Write Bangla in Linux

আজকে আমি আপনাদের দেখাব কিভাবে লিনাক্স মিন্ট বা উবুন্তুতে বাংলা লিখবেন অভ্র দিয়ে। - -


প্রথম এ Synaptic Package Manager এ গিয়ে m17n-db এবং scim-m17n ডাউনলোড করে, ইন্সটল করে নিন। 


তারপর নিচের লিঙ্কটি থেকে অভ্র ডেবিয়ান ভারশোনটা ডাউনলোড করে নিন -


http://scim-avro.googlecode.com/files/scim-avro_0.0.2-1ubuntu9.04_i386.deb


তারপর টারমিনাল ওপেন করে তাতে "im-switch -c" টাইপ করুন এবং এন্টার চাপুন।


এখন একটা উন্ডো অপেন হবে, ওখান থেকে SCIM সিলেক্ট করুন। তারপর লগ অউট হয়ে এবার লগিন হন। তাহলে দেখবেন আপনার টুলবার এ একটা কিবোরড মত ইকন। 


এখন কোন word-processing program চালু করে ওই toolbar এর keyboard এর মত ইকন এ click করে Bengali - Avro Phonetic সিলেক্ট করুন। এখন type করলে দেখবেন বাংলা লেখা হচ্ছে।


কোন প্রব্লেম হলে নিচে comment করুন। জতোটুকু পারব সাহাজ্য করব।



Sunday, February 19, 2012

Alternate of hjsplit

Hay guys!! Those who use linux, lxsplit is the alternate of hjsplit.

lxsplit is a software which splits and joins pdfs.

Suppose you have a big pdf and you want to upload it in a website, but for the big size you can't upload it. So you can split the pdf and upload all the parts separately, and afterwords you download all the parts and use lxsplit/hjsplit to join those parts and get the whole pdf.

command to install lxsplit:
  $sudo apt-get install lxsplit

command to split a pdf: (after the filename you have to mention the size you want to be for each part)
  $lxsplit -s filename.pdf 20M

command to join a pdf:(just need to mention the first part name)
  $lxsplit -j filename.pdf.001

Enjoy Linux!! Best of Luck..

Thursday, December 22, 2011

Advantages of smaller PDUs

The advantages of smaller PDUs(Protocol Data Units), are mentioned below:

1. The communications network may not be able to send/receive such size of block data. Like, ATM network allows blocks only of 53 octets, whereas Ethernet allows blocks of 1526 octets.

2. Error detection can be done quickly if the PDU is small and can be quickly re-transmitted if necessary.

3. The buffer of the receiver will not be busy for a continuous long time.

4. In shared systems, data can be sent to shared devices without delaying much.

5. There is CLOSURE, so the network can check situations and restart/recovery operations if needed.