Sponsored Content
The Lounge What is on Your Mind? Business origins - MalWareBytes - interesting read Post 303037108 by hicksd8 on Tuesday 23rd of July 2019 02:23:59 PM
Old 07-23-2019
Business origins - MalWareBytes - interesting read

Interesting to read about the origin of the MalWareBytes company.

Link from BBC Business news:

'I kept my multimillion dollar business secret' - BBC News
These 4 Users Gave Thanks to hicksd8 For This Post:
 

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Some interesting questions

Hello All, I have some questions; 1) process1 | process2, A)now if I kill process2 what happens to process1? B) if I kill process1 what happens to process2? 2) Why kill -9 is a strong kill? If possible I would like to know what happens internally. 3) What a pipe actually do, in... (3 Replies)
Discussion started by: willhunter
3 Replies

2. Shell Programming and Scripting

interesting problem

Hi, I am new in this forum and I am glad to be a part of it. I have a problem that has two parts: 1/ extract just the timestamp from a filename: for example, I have a file called 'sales20080226144525.txt' and I want to extract just the '20080226144525' part out of it. 2/ Now, take that... (5 Replies)
Discussion started by: ChicagoBlues
5 Replies

3. Red Hat

Cron entry for every 10 mints on business day business hour

Could you “crontab” it to run every 10 minutes on work days (Mo - Fr) between 08:00 and 18:00 i know to run every 10 mints but can any one guide me how to achieve the above one (2 Replies)
Discussion started by: venikathir
2 Replies
Template::Plugin::XML::RSS(3pm) 			User Contributed Perl Documentation			   Template::Plugin::XML::RSS(3pm)

NAME
Template::Plugin::XML::RSS - Plugin interface to XML::RSS SYNOPSIS
[% USE news = XML.RSS('news.rdf') %] [% FOREACH item IN news.items %] [% item.title %] [% item.link %] [% END %] DESCRIPTION
This Template Toolkit plugin provides a simple interface to the XML::RSS module. [% USE news = XML.RSS('mysite.rdf') %] It creates an XML::RSS object, which is then used to parse the RSS file specified as a parameter in the USE directive. A reference to the XML::RSS object is then returned. An RSS (Rich Site Summary) file is typically used to store short news 'headlines' describing different links within a site. This example is extracted from http://slashdot.org/slashdot.rdf. <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/"> <channel> <title>Slashdot:News for Nerds. Stuff that Matters.</title> <link>http://slashdot.org</link> <description>News for Nerds. Stuff that Matters</description> </channel> <image> <title>Slashdot</title> <url>http://slashdot.org/images/slashdotlg.gif</url> <link>http://slashdot.org</link> </image> <item> <title>DVD CCA Battle Continues Next Week</title> <link>http://slashdot.org/article.pl?sid=00/01/12/2051208</link> </item> <item> <title>Matrox to fund DRI Development</title> <link>http://slashdot.org/article.pl?sid=00/01/13/0718219</link> </item> <item> <title>Mike Shaver Leaving Netscape</title> <link>http://slashdot.org/article.pl?sid=00/01/13/0711258</link> </item> </rdf:RDF> The attributes of the channel and image elements can be retrieved directly from the plugin object using the familiar dotted compound nota- tion: [% news.channel.title %] [% news.channel.link %] [% news.channel.etc... %] [% news.image.title %] [% news.image.url %] [% news.image.link %] [% news.image.etc... %] The list of news items can be retrieved using the 'items' method: [% FOREACH item IN news.items %] [% item.title %] [% item.link %] [% END %] AUTHORS
This plugin was written by Andy Wardley inspired by an article in Web Techniques by Randal Schwartz. The XML::RSS module, which implements all of the functionality that this plugin delegates to, was written by Jonathan Eisenzopf. COPYRIGHT
Copyright (C) 1996-2006 Andy Wardley. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Template::Plugin, XML::RSS, XML::Parser perl v5.8.8 2008-03-01 Template::Plugin::XML::RSS(3pm)
All times are GMT -4. The time now is 03:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy