Which version of Rebol 2 do I use on CentOS? - cgi

Can somebody please tell me which version of Rebol 2 to use on CentOS?
There are a couple of Linux versions on this page:
http://www.rebol.com/platforms.html
I'm going to have a go at this tutorial:
Quick and Easy CGI - A Beginner's Tutorial and Guide By Carl Sassenrath.
Thanks

As a guess, since CentOS is derived from Red Hat and so is Fedora, I would go with the Fedora build. But even if you choose incorrectly, you will probably find out fairly quickly that you've got the wrong package.

Related

Install Kotlin on ubuntu 21.04 Desktop(arm64)

i have a raspberry pi 4 with ubuntu 21.04 Desktop and i want to install kotlin (I don't want to use snap).
Can anyone tell me how to do it?
Thanks.
The easiest/officially supported way to get started is using IntelliJ IDEA Community. Take a look at this guide for an in-depth explanation on RPi, without Snap. The Kotlin plugin comes bundled with the application, so it should be installed by this point. You can then create a new project, and IntelliJ will guide you on setting up a native (binary executable/shared library) or JVM (compatible with Java) project.
Hope this helps! Let me know if you need anything else.

MAMP Pro and PDO-dblib

For some days I've been using MAMP Pro 3.07 from http://www.mamp.info.
Great tool and all works fine.
But now I have the problem, that for a new project I need to connect to MSSQL.
I searched for a howto the last 3 hours in www, but canĀ“t find a working answer or am I to stupid?
Is there a possibility to install "PDO-dblib" on MAMP on OSX Yosemite?
Or can somebody explain me how I can do this?
Thanks in advance!
From PHP website:
PDO_DBLIB: This extension is not available anymore on Windows with PHP 5.3 or later.
I see MAMP allows you to use different versions of PHP, so if you choose php 5.1.6 it may work. There is also a comment there from a guy who wrote its own class for this purpose. I am adding you also the pecl repository for this PDODblib.
Apart of this I am recommending you to use the latest version of PHP and do not rely on maintained extensions. PDO, which comes now by default with PHP, allows you to connect to MSSQL databases and you can find documentation here and here.

AIX apache rpm dependencies

I am evaluating the Crowd SSO by Atlassian. Now to get apache to use Crowd for authentication, there is a connector available by the vendor.
Problem
Unfortunately they do not provide anything for my OS (AIX). Instead they provide source code with instructions. Now the example here uses yum -y install autoconf automake gcc httpd-devel libcurl-devel libtool libxml2-devel mod_dav_svn subversion-devel to download the required packages for which there is no alternate in AIX (AFAIK).
So I went to the AIX toolbox and got some packages. For the rest, I took Mr Perzl's help. And while installing the rpms ended up getting dependency errors.
Question
Do I go with
The solution given here dependency hell.
IBM way
Something else which Google and my limited exposure to AIX are not telling me.
I am not *nix expert, rather at basic user level. And any installations are actually done by the admins. I need expert advice so as to get it right and efficiently if possible.
Appreciate if someone would like to retag this question for getting attention from the right people.
It has been a while since I struggled with AIX and Linux, and have success with the Crowd Connector on Linux. So, having taken a look at both links, I would say:
The IBM documentation is only for the packages supplied with their Toolbox and there is a risk that if you use it for other things, you may end up with a dead-end as the utilities may refuse to play ball.
With Mr. Perzl's way, you are building it brick by brick, with known certainty. The main risk is that the right versions may not be available and/or one of the build tools may not work. In that case, you may still have to tweak the source and/or the build/make files to compile properly, but it will eventually work.
Once you have a compiled plugin and it works with a certain version of Apache, you will not need many of the dependencies, so the instructions you give to the admins to deploy will be minimal. Most likely, the runtime dependencies will be mod_dav_svn, curl and libxml
Please post an update when you get it working.

Ubuntu Server 64bit 11.04: setting up as "Ruby on Rails" server with SQLite3

I have looked so long for nice tutorials, but still couldn't find any for Ubuntu 11.04. I wan't to set it up to learn by this book: http://ruby.railstutorial.org/ruby-on-rails-tutorial-book
The tutorials I found are not quite up to date and also doesn't aren't for 11.04 Ubuntu.
I am asking for quick tutorial, what's the best way to set up RoR server.
Also if you know any other great Ruby on Rails tutorials, as the link I wrote above, please don't hold back and definitely share the link to it.
Ty in advance!
PS! I already messed up one of my Virtual Machines, but luckily I had made snapshot of clean install.
Ubuntu has Rails packages already. It should be as simple as doing apt-get install rails-ruby1.8, which'll install Ruby as a dependency as well.
Ryan Bigg has a very nice tutorial called Ubuntu, Ruby, RVM, Rails and You. Since you're configuring a server you will probably have a look at some tips about deployment & best practices written by the creator of RVM himself.
I'm sure you have it done already though since it's an old question, but I the links will be of use to someone else.

Extension tag in xsd not working for mono 1.9

I am using the extension tag in my xsd to validate XML, this works fine in the .Net framework in my windows local machine. But in Mono 1.9 machine the extension tag does not work, it does not validate the xml. I did some R & D on this issue and in one site it was given this problem as a bug and gave the solution to it referring to install some patch to mono.Here is the link
http://www.mail-archive.com/mono-bugs#lists.ximian.com/msg62811.html
I completely do not understand how to solve this issue and how the above link would help me. I would be glad if anyone helps me in solving this issue.
Thanks in advance
Mono 1.9 is ~3 years old. The patch is already included in more modern versions of Mono. Upgrading is probably your best bet.