Curious & Strange Videos


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Curious & Strange Videos
# 1  
Old 12-22-2008
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Two curious questions

Hi, I have been thinking about a few things that I have no idea of how to do with a scripting language (awk/sed I know to make proper use of just these 2). 1. Is there a way to have persistent variables? Say a variable that will be held in memory, and which can be accessed by subsequent... (7 Replies)
Discussion started by: jamie_123
7 Replies

2. Shell Programming and Scripting

Curious

I dont get something about sed If i have a text file inside contain a:a:a:a:a sed "s/"$title:$author:$price:$qtyAvailable:$qtySold"/"$Ntitle:$author:$price:$qtyAvailable:$qtySold"/" This work!! but If i have a text file inside contain Tom Tom:La La:Di Di :Do Do :De DE It cannot work... (2 Replies)
Discussion started by: GQiang
2 Replies

3. UNIX for Dummies Questions & Answers

Curious about the -9

I was talking to a coworker and we got into a discussion about the -9. No one knew where the -9 came from and it's not in the man. I suggested that it was like counting to 10 (0-9) and you finally get to the point that that's it, the durned thing is going to die. So how did the -9 come to mean... (3 Replies)
Discussion started by: pflickner
3 Replies

4. Shell Programming and Scripting

curious

sorry, just simple question: how can i do this in bash> foreach i( 1 2 3 ) sed 's/Hello/Howdy/g' test$i > test$i.new mv test$i.new test$i end (6 Replies)
Discussion started by: kurosaki
6 Replies

5. UNIX for Advanced & Expert Users

Curious 'ls' Issue

Hi, I am seeing a curious issue with 'ls' command. If I open a telnet session of my Solaris box and give "ls". The output is in 3 columns. a b c d e f g h i j k l However, if I give the same command after a couple of hours in the same window, it goes to 6 columns according to the... (7 Replies)
Discussion started by: vibhor_agarwali
7 Replies

6. Linux

Curious?

To correct most of the problems with this language, How do I remove the DOS and WORD stuff from it? These come from the fact that it was written on those with a Microsoft supplied platform at the writers request. (1 Reply)
Discussion started by: River Freight
1 Replies

7. UNIX for Dummies Questions & Answers

Curious Dummy

I have a website but I do not for the life of me know how to upload using unix based command lines. Can someone send me a good site that has these commands. That and I am curious to know more about command line based interfacing. :D Curious Dummy (1 Reply)
Discussion started by: highway39
1 Replies

8. UNIX for Dummies Questions & Answers

Curious

Dear All I am curious to know, that in a system compromise, when someone has access to a box, does that individual have access to a shell on the system, i.e. the person is logging into the system using telnet or SSH to remotely access the box?? How does this individual/ hacker access the system. ... (2 Replies)
Discussion started by: skotapal
2 Replies
Login or Register to Ask a Question
RDF::Trine::Serializer::Turtle(3pm)			User Contributed Perl Documentation		       RDF::Trine::Serializer::Turtle(3pm)

NAME
RDF::Trine::Serializer::Turtle - Turtle Serializer VERSION
This document describes RDF::Trine::Serializer::Turtle version 1.000 SYNOPSIS
use RDF::Trine::Serializer::Turtle; my $serializer = RDF::Trine::Serializer::Turtle->new( namespaces => { ex => 'http://example/' } ); print $serializer->serialize_model_to_string($model); DESCRIPTION
The RDF::Trine::Serializer::Turtle class provides an API for serializing RDF graphs to the Turtle syntax. XSD numeric types are serialized as bare literals, and where possible the more concise syntax is used for rdf:Lists. METHODS
Beyond the methods documented below, this class inherits methods from the RDF::Trine::Serializer class. "new ( namespaces => \%namespaces, base_uri => $base_uri )" Returns a new Turtle serializer object. "serialize_model_to_file ( $fh, $model )" Serializes the $model to Turtle, printing the results to the supplied filehandle "<$fh">. "serialize_model_to_string ( $model )" Serializes the $model to Turtle, returning the result as a string. "serialize_iterator_to_file ( $file, $iter )" Serializes the iterator to Turtle, printing the results to the supplied filehandle "<$fh">. "serialize_iterator ( $sink, $iter )" Serializes the iterator to Turtle, printing the results to the supplied sink object. "serialize_iterator_to_string ( $iter )" Serializes the iterator to Turtle, returning the result as a string. "serialize_node ( $node )" Returns a string containing the Turtle serialization of $node. "node_as_concise_string" Returns a string representation using common Turtle syntax shortcuts (e.g. for numeric literals). BUGS
Please report any bugs or feature requests to through the GitHub web interface at <https://github.com/kasei/perlrdf/issues>. SEE ALSO
<http://www.w3.org/TeamSubmission/turtle/> AUTHOR
Gregory Todd Williams "<gwilliams@cpan.org>" COPYRIGHT
Copyright (c) 2006-2012 Gregory Todd Williams. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-29 RDF::Trine::Serializer::Turtle(3pm)