Dailytip.net

Articles on pretty much anything.

About the author

Author Name is someone.
E-mail me Send mail

Recent posts

Recent comments

Tags

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008


Setting up an Ubuntu media server

ubuntulogo

In today's tip I'm going to run through how to setup an Ubuntu media server. First of all, what is Ubuntu. Wikipedia says:

Ubuntu is a Linux distribution for desktops, laptops, and servers. It has consistently been rated among the most popular of the many GNU/Linux distributions. Ubuntu's goals include providing an up-to-date yet stable operating system for the average user and having a strong focus on usability and ease of installation.

It is very much like apache, which I showed you how to setup in my article on how to make your computer into a local server, in that it is commonly used as a server software. Now then, what is a media server?

More...

Currently rated 2.8 by 4 people

  • Currently 2.75/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:
Posted by Andy on Saturday, April 19, 2008 5:03 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Sharing playlists and libraries using iTunes

How often have you wanted a friend or co-worker a cool tune from home? How often have you not been able to do it because you can't send it to them? Well with this little trick, you can solve that problem by reading today's quick and painless article about sharing your playlists and libraries using iTunes. Hit more to learn.

More...

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Andy on Monday, April 14, 2008 3:54 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Custom context menus for individual file types

thumb

Some files open with certain programs. For example, .PSD files generally open with Adobe Photoshop and .PDF files open with Adobe Acrobat Reader. Have you ever found that it takes ages to open a program and then, using the program, find and open the file you want? No? Thought not. Well, in today's (short) article I'm going to explain how to make it say "Open with X" or "Edit with X" when you right click certain file types. This is called making custom context menus and this is how it's done:

More...

Currently rated 3.0 by 2 people

  • Currently 3/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Andy on Thursday, April 10, 2008 12:04 PM
Permalink | Comments (0) | Post RSSRSS comment feed

ASP.NET's membership and roles provider

In languages like PHP, or Ruby, you can spend a lot of time writing a really effective and useful membership system. It can takes days - even weeks sometimes. Not in ASP.NET 2.0 and 3.5 though. Click "more" to find out more about .NET and why developing a user system is a very quick and painless task.

More...

Currently rated 1.0 by 1 people

  • Currently 1/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Andy on Monday, April 07, 2008 4:04 PM
Permalink | Comments (0) | Post RSSRSS comment feed

phpBB 3: How to access user details

This article is a follow up to the article I wrote about integrating the phpBB 3 login with your site.You can find that article here. This time I'd like to take it a little bit further and take a look at what we can do once our user is logged in. I'm going to assume you have sufficient knowledge of PHP to understand the code and, at least, the basics of object orientated programming in PHP. I'm also assuming you have a fully functioning and installed phpBB 3 forum at the point.

To go further into the topic, we'll need to be able to access the data for our user(s). To do this, we have to use the user object and access it's data member which, predictably, holds all the user data. Here's the piece of code we'll need every time we want to use the phpBB user system in our pages. I'll explain the source code after.

 

0:  define('IN_PHPBB', true);
1:  $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : '/PATH/TO/FORUMS';
2:  $phpEx = substr(strrchr(__FILE__, '.'), 1);
3:  include($phpbb_root_path . 'common.' . $phpEx);
4:  include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
5:  // Start session management
6:  $user->session_begin();
7:  $auth->acl($user->data);

More...

Currently rated 5.0 by 9 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Andy on Wednesday, April 02, 2008 2:51 PM
Permalink | Comments (15) | Post RSSRSS comment feed

Set up a local FTP server for your network!

In my experience, networking with Windows XP\ME\98(se) isn't that good; it's unreliable at the best of times and it seems files can only be shared intermittently. That's why I bought a 500gb external hard-drive and turned it into a file server\FTP server. In this article I'd like to run though how to set up a local FTP server for your network.

More...

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:
Posted by Andy on Monday, March 31, 2008 12:18 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Notepad tips and tricks

Notepad. Ever lasting and ever useful. What can't you do in notepad? Well here's 2 things you might not have known you could do.

Use notepad as a diary!

There are 2 ways to use notepad as a diary. You can do it the automated way - or the manual way.

Manual way

Open notepad and save the text file to somewhere. Now that you've got the text file saved, we can start making a diary. On a new line press "F5" to insert the time and date - you can easily delete parts of this as it comes out as text. Press enter and type in your diary entry. Do it every day, every other day, once a week or any other interval of time you fancy

More...

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Andy on Saturday, March 29, 2008 12:23 PM
Permalink | Comments (0) | Post RSSRSS comment feed