Most ruby parsing nagios related news are at:
bytemine appliance 6a16er 14 Aug 2013 | 03:00 am
Exactly one year ago we started distributing the bytemine appliance 6a16e a.k.a. Axiomtek NA-320FL. As it performs very well with its dual core Atom CPU, is rock-solid without moving parts and zero fa...
bytemine Infrastruktur - Teil 2 12 Aug 2013 | 03:00 am
Dies ist der zweite Teil unserer Serie über verlässliche Infrastruktur, den ersten Teil finden Sie hier: bytemine Infrastruktur - Teil 1 Im ersten Teil konzentrierten wir uns auf den Unterbau unserer ...
More ruby parsing nagios related news:
Parsing Excel files with Roo, Rails 3, Ruby 1.9.2, and home_run alexle.net 12 Oct 2010 | 07:05 am
Ruby 1.9.2 is nice with speed boost and better unicode/encoding support, but it comes with a few backward incompatibilities. The biggest pain is Date.parse is now default to parse dd/mm/yyyy (Europe...
How to parse a CSV file using ruby teamtutorials.com 15 Sep 2012 | 12:47 am
Here’s a simple tip on how to parse a comma separated value or CSV file using ruby. Ruby has a standard library available that makes this task very simple. All we need to do is open a CSV file, read i...
Parsing large XML files with Woodstox library softwarepassion.com 16 Sep 2012 | 03:34 am
Today I wanted to play a bit with the library providing support for StAX (The Streaming API for XML) – JSR-173. Recently I have worked a bit with XML parsers in Ruby (like LibXml) while I was reading ...
Ruby NET::HTTP requests library cheatsheet kdelchev.com 9 May 2013 | 11:10 pm
Nice cheat sheet resource of Ruby HTTP requests is published on rubyinside.com. Since the comments are disabled I decided to add one note here: When using uri = URI.parse("http://google.com/") it is g...
Updates for April 1, 2013 jumpbox.com 1 Apr 2013 | 10:40 pm
JumpBox for Ruby on Rails JumpBox for Gallery 3.x JumpBox for JasperReports Server JumpBox for Nagios 3.x JumpBox for Moodle
Ruby bindings for Gumbo HTML5 parser intertwingly.net 15 Aug 2013 | 11:06 pm
Jonathan Tang: We’re pleased to announce the open source release of the Gumbo HTML parser, a C implementation of the HTML5 parsing algorithm. I’ve posted a proof of concept Ruby binding to github.
Einstieg in Ruby on Rails • Re: Fehlermeldung - überforderter Rails-Einstiger... ruby-portal.de 26 Aug 2013 | 12:45 pm
joschi81 hat geschrieben: syntax error on line 295, col 14: `' Das ist ein YAML-Parsing-Fehler. Normalerweise sollte der dir auch die zugehörige YAML-Datei irgendwo angeben, wenn nicht, musst du mal...
Einstieg in Ruby on Rails • Re: Fehlermeldung - überforderter Rails-Einstiger... forum.ruby-portal.de 26 Aug 2013 | 12:45 pm
joschi81 hat geschrieben: syntax error on line 295, col 14: `' Das ist ein YAML-Parsing-Fehler. Normalerweise sollte der dir auch die zugehörige YAML-Datei irgendwo angeben, wenn nicht, musst du mal...
[Ruby] Nokogiri を使って、ページ内全ての a タグの href 属性の値を取得する codaholic.org 11 Aug 2013 | 12:30 pm
Nokogiri を使って、ページ内にある a タグの href 属性を全て取得するサンプルコードです。 [ruby] require ‘nokogiri’ require ‘open-uri’ html = open(‘http://codaholic.org’) do |data| data.read end doc = Nokogiri::HTML.parse(html) doc.cs...