Sponsored Content
The Lounge What is on Your Mind? New UNIX and Linux History Sections Post 303035509 by Neo on Monday 27th of May 2019 12:25:46 AM
Old 05-27-2019
Update:

Added two short bios, Ken Thompson and Dennis Ritchie. More to come as I have time ...


Code:
$rand = mt_rand(0, 7); 

if ($rand == 0) { 
    eval('$history_div_for_users = "' . fetch_template('unix_linux_history') . '";'); 
} elseif ($rand == 1) { 
    eval('$history_div_for_users = "' . fetch_template('linux_unix_history') . '";'); 
} elseif ($rand == 2) { 
    eval('$history_div_for_users = "' . fetch_template('red_hat_history') . '";'); 
} elseif ($rand == 3) { 
    eval('$history_div_for_users = "' . fetch_template('ubuntu_history') . '";'); 
}  elseif ($rand == 4) { 
    eval('$history_div_for_users = "' . fetch_template('gnu_history') . '";'); 
} elseif ($rand == 5) { 
    eval('$history_div_for_users = "' . fetch_template('man_page_history') . '";'); 
} elseif ($rand == 6) { 
    eval('$history_div_for_users = "' . fetch_template('ken_thompson_history') . '";'); 
}elseif ($rand == 7) { 
    eval('$history_div_for_users = "' . fetch_template('dennis_ritchie_history') . '";'); 
}else{ 
    $history_div_for_users = ''; 
}

Please contribute if you have time, otherwise I'll have to have all the "historical" fun myself.
These 5 Users Gave Thanks to Neo For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix History Question: Why are filenames/dirnames case sentsitive in Unix?

I tried looking for the answer online and came up with only a few semi-answers as to why file and directory names are case sensitive in Unix. Right off the bat, I'll say this doesn't bother me. But I run into tons of Windows and OpenVMS admins in my day job who go batty when they have to deal... (3 Replies)
Discussion started by: deckard
3 Replies

2. Solaris

unix command history

is there any way to determine the last command entered on a unix machine??? Thanx (3 Replies)
Discussion started by: mm00123
3 Replies

3. SuSE

Linux SuSE 10 - Disable Unsuccessful Login History.

When we login to any remote connections in SuSE Linux, say for example, telnet , the following line is displayed "Last Login : Date and time is displayed" I would like to disable this. In SuSE 9, I could find the solution . Please suggest me a solution to disable the line displayed for SuSE... (3 Replies)
Discussion started by: Laksmi
3 Replies

4. Shell Programming and Scripting

stop users from running 'history -c' in Linux

Hi All, My question is how can i stop my users on system from deleting their history. How can i stop the users from running 'history -c'. I have searched thoroughly on the forum but didn't find any satisfactory solution to the problem. kindly help if you any suggestions Thanx in... (3 Replies)
Discussion started by: xander
3 Replies

5. UNIX and Linux Applications

Unix History

Hi everybody Im Megadrink!!! This is my first thred. Ive recently been introduced to Unix and i was interested in Unix's History. Can anyone give me a breif History On Unix. Just when it was invented/released. Maybe someother cool things about it. Thx for the information in advance!! :D (2 Replies)
Discussion started by: Megadrink
2 Replies

6. Linux

History of executed command in Linux

Hi All, Is there a way to check command executed by users in Linux for a specific date? I know we can use history, but it doesn't shows yesterday's executed commands. rgds, (3 Replies)
Discussion started by: ronny_nch
3 Replies

7. UNIX for Dummies Questions & Answers

How to clear history in Linux

Hello All, Good Morning. I am trying to erase history list in my linux box, but my below command is failing. What is the actual way to clear it? > history clear -bash: history: clear: numeric argument required Also when I run my commands in my command prompt, my team lead can see my... (7 Replies)
Discussion started by: NARESH1302
7 Replies

8. Shell Programming and Scripting

History file in UNIX

commands to view the history file in unix. I am not sure whether it is bash_history.sh (1 Reply)
Discussion started by: ramkumar15
1 Replies

9. What is on Your Mind?

The Great History of UNIX (1969-1999) | 30 Years of UNIX History | YouTube Video

I am pleased to announce this new video in 1080 HD for UNIX lovers honoring thirty years of UNIX history spanning from 1969 to 1999 presented in 150 seconds (two and a half minutes) in 1080 HD, celebrating the 50th anniversary of UNIX. The Great History of UNIX (1969-1999) | 30 Years of UNIX... (8 Replies)
Discussion started by: Neo
8 Replies

10. UNIX for Advanced & Expert Users

How to find out and monitor IO spikes history in Linux?

hello all i have application which according to AWS monitoring is reaching to high spikes of IO at random time . and causing the server to crash and restart . my question is how can i find out what cause the spike and if i can't with the native linux tools what free open source minimon... (6 Replies)
Discussion started by: umen
6 Replies
WebService::YouTube::Feeds(3pm) 			User Contributed Perl Documentation			   WebService::YouTube::Feeds(3pm)

NAME
WebService::YouTube::Feeds - Perl interface to YouTube RSS Feeds VERSION
This document describes WebService::YouTube::Feeds version 1.0.3 SYNOPSIS
use WebService::YouTube::Feeds; my $feeds = WebService::YouTube::Feeds->new( { ua => '...' } ); my @videos = $feeds->tag($tag); my @videos = $feeds->user($user); my @videos = $feeds->recently_added; my @videos = $feeds->recently_featured; my @videos = $feeds->top_favorites; my @videos = $feeds->top_rated; my @videos = $feeds->most_discussed_month; my @videos = $feeds->most_discussed_today; my @videos = $feeds->most_discussed_week; my @videos = $feeds->top_viewed; my @videos = $feeds->top_viewed_month; my @videos = $feeds->top_viewed_today; my @videos = $feeds->top_viewed_week; DESCRIPTION
This is a Perl interface to YouTube RSS Feeds. See About RSS <http://youtube.com/rssls> for details. SUBROUTINES
/METHODS new( \%fields ) Creates and returns a new WebService::YouTube::Feeds object. %fields can contain parameters enumerated in "ACCESSORS" section. parse_rss($rss) Parses RSS and returns the result. $rss should be an object that XML::Simple can understand. tag( $tag ) Returns an array of WebService::YouTube::Video object. $tag is a keyword string separated by a space. See <http://youtube.com/rssls> for details. user( $user ) Returns an array of WebService::YouTube::Video object. $user is an username. See <http://youtube.com/rssls> for details. recently_added( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. recently_featured( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. top_favorites( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. top_rated( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. most_discussed_month( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. most_discussed_today( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. most_discussed_week( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. top_viewed( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. top_viewed_month( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. top_viewed_today( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. top_viewed_week( ) Returns an array of WebService::YouTube::Video object. See <http://youtube.com/rssls> for details. ACCESSORS ua LWP::UserAgent object DIAGNOSTICS
CONFIGURATION AND ENVIRONMENT
WebService::YouTube::Feeds requires no configuration files or environment variables. DEPENDENCIES
HTTP::Date, LWP::UserAgent, XML::Simple, WebService::YouTube::Util, WebService::YouTube::Video INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
No bugs have been reported. Please report any bugs or feature requests to "bug-webservice-youtube@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebService-YouTube>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. AUTHOR
Hironori Yoshida <yoshida@cpan.org> LICENSE AND COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. perl v5.10.1 2010-08-01 WebService::YouTube::Feeds(3pm)
All times are GMT -4. The time now is 12:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy