Sponsored Content
Full Discussion: Endangered Freedom ?
The Lounge What is on Your Mind? Endangered Freedom ? Post 302534637 by Neo on Tuesday 28th of June 2011 10:35:48 AM
Old 06-28-2011
Yes, I understand... but every system has boundaries, and for these forums, we made the decision to keep the "signal-to-noise ratio" high by discouraging emotional arguments and "religious opinions".

Is this a "perfect system"? No, it is not; but it is the system here; and it seems to work quite well. We are not the biggest forum on the net, but we are certainly, with little doubt, one of the highest quality forums.

So, we intentionally created some system "boundaries" here, and those boundaries will make some comfortable and others uncomfortable. That is the nature of boundaries and systems.

... and on a personal basis, I loathe forums and discussion groups where emotions run high, logic is lost, and manipulation and gang and chic mentality runs rampant. I really don't like it when someone who cannot formulate a technical argument in a debate takes the low road and starts using ad hominems, false logic (fallacy), and personal attacks.

These forums were formed and are managed in this manner; and yes, it is not a perfect system, but it is the system here.
 

2 More Discussions You Might Find Interesting

1. Red Hat

The Journey of OpenJDK 6 into Fedora, EPEL, and freedom - podcast with Tom Fitzsimmon

The first morning of JavaOne was a great serendipitous event. How often does something fall into place like this: I saw Barton George, who looks after Sun’s relationships with Linux communities, and we decided to cook up a podcast about OpenJDK 6 in Fedora 9. As we walked to the recording room,... (0 Replies)
Discussion started by: Linux Bot
0 Replies

2. Red Hat

Happy Document Freedom Day

Document Freedom Day (DFD) is a global grassroots effort* to promote and build awareness of the importance of free document formats in particular and open standards in general.* If you have ever received a document from a friend that your software could not open, then you know the frustration of... (0 Replies)
Discussion started by: Linux Bot
0 Replies
MIME::Base64::URLSafe(3pm)				User Contributed Perl Documentation				MIME::Base64::URLSafe(3pm)

NAME
MIME::Base64::URLSafe - Perl version of Python's URL-safe base64 codec SYNOPSIS
use MIME::Base64::URLSafe; $encoded = urlsafe_b64encode('Alladdin: open sesame'); $decoded = urlsafe_b64decode($encoded); DESCRIPTION
This module is a perl version of python's URL-safe base64 encoder / decoder. When embedding binary data in URL, it is preferable to use base64 encoding. However, two characters ('+' and '/') used in the standard base64 encoding have special meanings in URLs, often leading to re-encoding with URL-encoding, or worse, interoperability problems. To overcome the problem, the module provides a variation of base64 codec compatible with python's urlsafe_b64encode / urlsafe_b64decode. Modification rules from base64: use '-' and '_' instead of '+' and '/' no line feeds no trailing equals (=) The following functions are provided: urlsafe_b64encode($str) urlsafe_b64decode($str) If you prefer not to import these routines to your namespace, you can call them as: use MIME::Base64::URLSafe (); $encoded = MIME::Base64::URLSafe::encode($decoded); $decoded = MIME::Base64::URLSafe::decode($encoded); SEE ALSO
MIME::Base64 Fore more discussion on using base64 encoding in URL applications, see: http://en.wikipedia.org/wiki/Base64#URL_Applications AUTHOR
Kazuho Oku <kazuho ___at___ labs.cybozu.co.jp> Copyright (C) 2006 Cybozu Labs, Inc. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available. perl v5.8.8 2006-01-05 MIME::Base64::URLSafe(3pm)
All times are GMT -4. The time now is 04:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy