Sponsored Content
Top Forums Web Development Header in mobile version UNIX.com Post 303044893 by Neo on Saturday 7th of March 2020 10:41:01 PM
Old 03-07-2020
After thinking about this.....

To be honest, I am inclined to stop development and updates on the current code base and migrate the forums to discourse.

Code:
https://en.wikipedia.org/wiki/Discourse_(software)

Code:
Discourse is an open source Internet forum and mailing list management software application founded in 2013 by Jeff Atwood, Robin Ward, and Sam Saffron.[2] Discourse received funding from First Round Capital and Greylock Partners.[3] The application is written with Ember.js”¯[4] and Ruby on Rails.[5] PostgreSQL serves as its back-end database management system.

From a usability perspective, Discourse breaks with existing forum software by including features recently popularized by large social networks, such as infinite scrolling, live updates, expanding links, and drag and drop attachments.[6] However, the stated goals of the project are social rather than technical, to improve online discussion quality through improved forum software.

The source code is distributed under the GNU General Public License version 2. Therefore Discourse can be self-hosted by anyone. Alternatively, hosting service can be bought from the company of the founders. As of October 2017, more than 700 businesses or instances have chosen this option.[7] On May 2017, co-founder Jeff Atwood said in an interview that the company is generating approximately 120,000 dollars per month at that time.[8] With the money the company pays salary for its full-time employees who maintain the software and develop new features which benefits those who are self-hosting the open source software, too. This is an example of an open source software business model where a company sells professional services to willing customers.

I think it is about time to "retire" the legacy vB site, in a controlled way.

See / continue:

Under Consideration: Migrate the Forums to Discourse
 

5 More Discussions You Might Find Interesting

1. Solaris

Migrate unix version 8 to version 9

i have a program writing in PRO C which currently running in unix version 8 tie with oracle 8i, but in the future company gonna migrate this OS to version 9. Anything i have to prepare for my PRO C program to run in unix version 9? or anything would that impact my program couldn't run well? what... (2 Replies)
Discussion started by: lsy
2 Replies

2. What is on Your Mind?

Mobile App for UNIX.com?

Do we have a mobile app for unix.com? (1 Reply)
Discussion started by: ahamed101
1 Replies

3. What is on Your Mind?

Mobile Friendly Version of UNIX.COM

Hello, I have noticed some problems with Google complaining our site is not "https://search.google.com/www.usearch-console/mobile-friendly" using only Tapatalk. So, after a lot of work, I have re-enabled our legacy mobile style and make some improvements and Google has declared us "mobile... (2 Replies)
Discussion started by: Neo
2 Replies

4. What is on Your Mind?

Prototyping New Responsive Mobile UNIX.COM

I'm working on updates to the mobile phone view, and it's going to look much better I think. Here are some current prototypes: Prototype Mobile Home Page: https://www.unix.com/members/1-albums214-picture690.jpg Prototype Mobile Search Page: ... (43 Replies)
Discussion started by: Neo
43 Replies

5. What is on Your Mind?

New UNIX.COM Mobile Site Icons

Having given up for the time being with a very difficult game engine project to virtualizing cyberspace, am working on the forums again. Just updated a few icons on the mobile site. Explanations in the picture captions: https://www.unix.com/members/1-albums214-picture855.jpeg ... (1 Reply)
Discussion started by: Neo
1 Replies
Gravatar::URL(3pm)					User Contributed Perl Documentation					Gravatar::URL(3pm)

NAME
Gravatar::URL - Make URLs for Gravatars from an email address SYNOPSIS
use Gravatar::URL; my $gravatar_id = gravatar_id($email); my $gravatar_url = gravatar_url(email => $email); DESCRIPTION
A Gravatar is a Globally Recognized Avatar for a given email address. This allows you to have a global picture associated with your email address. You can look up the Gravatar for any email address by constructing a URL to get the image from gravatar.com. This module does that. Examples of use include the author faces on <http://search.cpan.org>. See <http://gravatar.com> for more info. Functions gravatar_url # By email my $url = gravatar_url( email => $email, %options ); # By gravatar ID my $url = gravatar_url( id => $id, %options ); Constructs a URL to fetch the gravatar for a given $email or $id. $id is a gravatar ID. See "gravatar_id" for more information. %options are optional and are... rating A user can rate how offensive the content of their gravatar is, like a movie. The ratings are g, pg, r and x. If you specify a rating it is the highest rating that will be given. rating => "r" # includes g, pg and r size Specifies the desired width and height of the gravatar (gravatars are square). Valid values are from 1 to 512 inclusive. Any size other than 80 may cause the original gravatar image to be downsampled using bicubic resampling before output. size => 40, # 40 x 40 image default The url to use if the user has no gravatar or has none that fits your rating requirements. default => "https://secure.wikimedia.org/wikipedia/en/wiki/File:Mad30.jpg" Relative URLs will be relative to the base (ie. gravatar.com), not your web site. Gravatar defines special values that you may use as a default to produce dynamic default images. These are "identicon", "monsterid", "wavatar" and "retro". "404" will cause the URL to return an HTTP 404 "Not Found" error instead whereas "mm" will display the same "mystery man" image for all missing people. See <http://en.gravatar.com/site/implement/url> for more info. If omitted, Gravatar will serve up their default image, the blue G. border DEPRECATED! This key has been removed from the Gravatar protocol. It will be removed from future versions of Gravatar::URL. Gravatars can be requested to have a 1 pixel colored border. If you'd like that, pass in the color to border as a 3 or 6 digit hex string. border => "000000", # a black border, like my soul border => "000", # black, but in 3 digits base This is the URL of the location of the Gravatar server you wish to grab Gravatars from. Defaults to <http://www.gravatar.com/avatar/"> for HTTP and <https://secure.gravatar.com/avatar/> for HTTPS. short_keys If true, use short key names when constructing the URL. "s" instead of "size", "r" instead of "ratings" and so on. short_keys defaults to true. https If true, serve avatars over HTTPS instead of HTTP. You should select this option if your site is served over HTTPS to avoid browser warnings about the presence of insecure content. https defaults to false. gravatar_id my $id = gravatar_id($email); Converts an $email address into its Gravatar $id. THANKS
Thanks to gravatar.com for coming up with the whole idea and Ashley Pond V from whose Template::Plugin::Gravatar I took most of the original code. LICENSE
Copyright 2007 - 2009, Michael G Schwern <schwern@pobox.com>. Copyright 2011, Francois Marier <fmarier@gmail.com>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/artistic.html SEE ALSO
Template::Plugin::Gravatar - a Gravatar plugin for Template Toolkit <http://www.gravatar.com> - The Gravatar web site <http://en.gravatar.com/site/implement/url> - The Gravatar URL implementor's guide perl v5.14.2 2012-04-04 Gravatar::URL(3pm)
All times are GMT -4. The time now is 04:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy