ATOM Activity Stream Digital Media Digital Marketing by Dani I'm trying to create an ATOM activity stream ala http://activitystrea.ms/ However, I'm confused a bit by the proper format, and also wondering if the JSON version is replacing the ATOM version?? Here's what I have so far: http://www.daniweb.com/stats/activity_stream Is there a place I can validate it?? Re: ATOM Activity Stream Digital Media Digital Marketing by Dani No because that is for the JSON spec. I tried to follow this one: http://activitystrea.ms/specs/atom/1.0/ but I'm not sure if I did it right. Atom information parser Programming Web Development by Pytho … the right side where is the chemical information of that atom. Well, I want to make key-value pairs of the… Intel: no more Centrino Atom chipsets Hardware and Software Linux and Unix by happygeek … Intel has decided that there will be no more Centrino Atom chipsets. Fear not, mobile Internet device loving gadget fans,… is that they will not be powered by Centrino Atom as everyone pretty much expected, but rather the chipset… than that. Perhaps it has something to do with Atom powered hardware, the so-called Mobile Internet Devices or … Re: From IDF 2010: Programming the Atom Processor Programming Mobile Development by shans2213 …that has a whole set of tools is the Atom processor. The Atom is a very low-power x86-based processor … he gave an hour-long introduction to developing for the Atom. The developer program includes a complete app store, where…]. Have fun![/QUOTE] Intel today announced its low-power Atom processor line has two new models designed to be used… From IDF 2010: Programming the Atom Processor Programming Mobile Development by jeffcogswell …that has a whole set of tools is the Atom processor. The Atom is a very low-power x86-based processor meant… cool digial music stand[/URL] that contains a dual-core Atom processor. Yes, dual core. Sweet.) While not new (the… he gave an hour-long introduction to developing for the Atom. The developer program includes a complete app store, where … Programming for the Newest Intel Atom Processor Programming Mobile Development by jeffcogswell …s why we need to know about Intel's Atom processor. The Atom processor is an x86-based processor (and now… real-time weather, and entertainment, all powered by an Atom processor running the MeeGo operating system. (MeeGo is Linux-based…is also creating an In-vehicle Infotainment system that is Atom-based and includes a dual display and 3D graphics. (… Re: XML Atom feed IE6 and Firefox vs. IE7 problem Programming Web Development by TheAlex …URL] [QUOTE]The use of the default namespace in the Atom feed means that the <feed>, <entry>…; etc. elements are in the Atom namespace. In your stylesheet, you’re doing: <xsl:for… prefix whenever you refer to an Atom element: <xsl:for-each select="atom:feed/atom:entry"> ... </xsl:… XML Atom feed IE6 and Firefox vs. IE7 problem Programming Web Development by TheAlex …feed.xsl"?> <feed xmlns:atom="http://www.w3.org/2005/Atom"> <title>-- Latest …;http://www.w3.org/2005/Atom">[/inlinecode] to [inlinecode]<feed xmlns:atom="http://www.w3.org/…2005/Atom">[/inlinecode] or infact if I… Re: Programming for the Newest Intel Atom Processor Programming Mobile Development by charmmarkin If Intel Atom PC enough for my needs? I would like to develop a software,using the latest Java technologies like JSP, Servlets and use of application servers, etc. And because this will be a PC that I have also used programs like Adobe Reader to read eBooks on the same PC. Extracting Images from Atom Feeds Programming Software Development by vaibhav1983 … Has anybody worked with extracting an image from RSS/Atom Feeds using Perl There is a modulke XML::RSS which… extracts images from RSS feeds. But in Atom feeds the images are embedded in the description using the… on extracting the image from the description from Atom Feeds. I would appreciate any help Thanks Vaibhav Ranglani Re: Parsing an atom feed Programming Web Development by LastMitch **@Antonbomb22** >How would i go about parsing an atom feed in php? I know it's **7** years to later. Here is couple of links about it: http://magpierss.sourceforge.net/ http://www.joevasquez.info/development/parsing-xml-feeds-with-php-rss-and-atom/ Parsing an atom feed Programming Web Development by Antonbomb22 How would i go about parsing an atom feed in php? and how would i construct one also;) HW suggestions for a Atom based file server (NAS) Hardware and Software Hardware by danni999 … consume little power. I was thinking to get a Pineview Atom based mobo with 4 SATA ports (a good overview is… Re: HW suggestions for a Atom based file server (NAS) Hardware and Software Hardware by gbarnas … consume little power. I was thinking to get a Pineview Atom based mobo with 4 SATA ports (a good overview is… Re: ATOM Activity Stream Digital Media Digital Marketing by pritaeas http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.daniweb.com%2Fstats%2Factivity_stream Re: ATOM Activity Stream Digital Media Digital Marketing by Dani That link gave the error `Use of unknown namespace: http://activitystrea.ms/spec/1.0/` and a lot of the errors are related to unknown elements. Plus, there are some things that it claims to want in order to validate, but the activitystrea.ms website doesn't list them as valid properties. So now I'm more confused than ever. :( Re: ATOM Activity Stream Digital Media Digital Marketing by pritaeas Did you follow this spec? http://activitystrea.ms/specs/json/1.0/ Re: ATOM Activity Stream Digital Media Digital Marketing by pritaeas Hmz, cannot find any obvious issues. Re: Atom information parser Programming Web Development by Stefano Mtangoo [QUOTE=Pytho;1658366] Did you understand? ............English isn't so good - yet.[/QUOTE] Sorry I have no idea yet as to what you want to do! Re: Atom information parser Programming Web Development by Pytho I want to parse the table from the Wikipedia page and put it in a PHP array. For example there are "Nimi: Vety" and "Tunnus: H". I want to put them in an array like this [CODE]<?php $info = array(array("Nimi", "Vety"), array("Tunnus", "H"));[/CODE] Re: Atom information parser Programming Web Development by chrishea It will probably be easier if you paste the info into a spreadsheet, save it as a CSV file then read it into your PHP program and create your array. This may still take quite a bit of manual work if all of the info isn't in the same order / format. I don't think there is any solution for that unless you find a single source that has all of the data… Re: Atom information parser Programming Web Development by diafol Agree with chris, but as a chemist myself, I think I understand what you're trying to do - did the same myself once. You're scraping data from Wikipedia to build a datatable? If you drill down into the view source, you'll see this: [CODE]<td colspan="2" align="center"><b>Yleistä</b></td> </tr> &… Re: Atom information parser Programming Web Development by Pytho Yep, thanks ardav. I've already gotten the site with file_get_contents and I have parsed it quite ok with str_replace and preg_replace functions. Actually I have all the data in an array. There are keys and values, and now I should create a MySQL query to insert the data into a database. I think I'll need to create multiple if-else conditions to … Re: Atom information parser Programming Web Development by diafol Ensure the array has the right number of items and in the right order, so multiple ifs with provision of a default value if the data is absent from the page may be the way to go. Re: Atom information parser Programming Web Development by trangman Personally I don't like scraping it's too fragile. Have you looked at the Wiki API which gives live access to Wiki databases. [URL="http://www.mediawiki.org/wiki/API:Main_page"]http://www.mediawiki.org/wiki/API:Main_page[/URL] I don't know if it will meet your requirements but it worth a look Re: Atom information parser Programming Web Development by Pytho Thanks for replies. Now I have a parser that is almost working. Now I need to get the right part from the full source. There is a part like this in the Wikipedia page of Hydrogen. [CODE]<tr bgcolor="#E7E7E7"> <td colspan="2" align="center"><b>Yleistä</b></td> </tr> <tr> <… Storing a part of string split into array Programming Software Development by hazeeel ATOM 1430 CB ASP A 187 [B]54.776 12.063 20.348[/B] 1.00 50.88 C How do I store the above in bold into a 1x3 arrray after using StringSplit? Re: From IDF 2010: Programming the Atom Processor Programming Mobile Development by NicAx64 Thanks Jeff Cogswell , write more articles like this for the paralization too. we are very much like to read. --Thanks in advance-- Re: Programming for the Newest Intel Atom Processor Programming Mobile Development by marrygorden There are certainly a lot of software engineers working in that realm, but for those of us who program for PCs, we had little interest in embedded technology. These all things are great.