Ulyssesonline

the tech surfer

  • Home
  • About
  • Archives
You are here: Home / 2012 / Archives for October 2012

Archives for October 2012

October 11, 2012

TweetDeck’s New Design

Have you seen TweetDeck new design lately? I haven’t been using it for at least three years. Just wondering how it looks now, since Twitter has acquired TweetDeck in May of last year. I heard the creator and developer of TweetDeck, Iain Dodsworth, has received $40-$50 million dollars for selling his company to Twitter.

TweetDeck still looks familiar. The multi-column design is still there. You can easily switch back between the dark and light designs, which is a great idea by the way. Some people like white backgrounds. Some people like dark backgrounds.  Adding columns is very easy. You can practically add anything to each column.

You can add timelines, home, interactions, mentions, search, lists, trends, messages, favorites, activity, inbox, scheduled, @mentions and @me to any column that you desire. Sorting the columns is very easy. Simply click on the left and right arrows when you are adding or editing a column. The column will automatically slide left to right.

The only complaint I have is, I wished TweetDeck would have a responsive design.  I would love to see TweetDeck be responsive to any screen size. Having six columns might look good in a big monitor, but viewing it on smaller screen might involve moving the horizontal and vertical scrollbars.

Overall, I love the design. It’s very intuitive. You can easily add columns and customize content any way you want it.

Filed Under: General, Tech Tagged With: tweetdeck, twitter

October 4, 2012

Fixing CodeIgniter Email Setup

I have been using an application I wrote in CodeIgniter that sends email notifications when an advertising link is activated or when it has expired. Several weeks ago, it suddenly stopped working. It was no longer sending email notifications as intended. I was using GMail’s SMTP server to send out the email notifications. GMail’s SMTP does require authentication. Typically, the CodeIgniter’s email preferences are located in the “config/email.php” file. It dawned on me that changing my GMail password broke my script. Here’s my email preferences found in the config/email.php file.

$config['protocol']='smtp';
$config['smtp_host']='ssl://smtp.gmail.com';
$config['smtp_port']='465';
$config['smtp_timeout']='30';
$config['smtp_user']='yourusername@gmail.com';
$config['smtp_pass']='your password';
$config['charset']='utf-8';
$config['newline']="\r\n";

$config['protocol']='smtp'; $config['smtp_host']='ssl://smtp.gmail.com'; $config['smtp_port']='465'; $config['smtp_timeout']='30'; $config['smtp_user']='yourusername@gmail.com'; $config['smtp_pass']='your password'; $config['charset']='utf-8'; $config['newline']="\r\n";

So, updating the password fixed my problem.

Filed Under: General, PHP Tagged With: codeigniter, email, gmail, PHP, smtp

  • « Previous Page
  • 1
  • 2
  • 3

Copyright © 2003 - 2018