Website construction nowaday!


 
Thread Tools Search this Thread
Top Forums Web Development Website construction nowaday!
# 1  
Old 02-20-2012
Website construction nowaday!

Hello,

Actually I am not sure how to ask this question, which is about the technique advance on website construction/design. Compared with HTML/CSS, which ones are the most popular for website construction? My colleague recommends Drupal for Linux platform. Any other? Thanks!

Yifang
# 2  
Old 02-20-2012
That depends on your application. I don't like Drupal very much. I think if you are going to pick a high level framework for a website, when in doubt, go with Wordpress... but then again, it depends on what you are planning to do with the web site.
# 3  
Old 02-20-2012
Thank Neo!
I am learning bioinformatics which would include mainly static webpage plus some online programs using local databases with MySQL. I am only a beginner and confused very much with those choices such as PHP-MySQL-Apache, Wordpress, Drupal, HTML/CSS etc. Also perl-script or Javascript are choices, but I was told perl-script is out of date.
I am familiar with Linux (Ubuntu), Perl and MySQL, and some idea with PHP-Apache, HTML, so that I posted my question to ask some suggestions from experts to save my struggling and focus my self on specific bundle before getting lost.
Thanks again! Yifang
# 4  
Old 02-21-2012
Quote:
Originally Posted by yifangt
Thank Neo!
I am learning bioinformatics which would include mainly static webpage plus some online programs using local databases with MySQL. I am only a beginner and confused very much with those choices such as PHP-MySQL-Apache, Wordpress, Drupal, HTML/CSS etc. Also perl-script or Javascript are choices, but I was told perl-script is out of date.
I am familiar with Linux (Ubuntu), Perl and MySQL, and some idea with PHP-Apache, HTML, so that I posted my question to ask some suggestions from experts to save my struggling and focus my self on specific bundle before getting lost.
Thanks again! Yifang
Hi Yifang,

I guess you're looking at lower level server side stuff. Have a look at http://en.wikipedia.org/wiki/LAMP_(software_bundle). HTML/CSS/Javascript are all client side, and they are used for making a website more pleasant. As you've probably observed most websites hosting bioinformatic tools focus more on the function and not so much on aesthetics.

I've built simple laboratory information management system using LAMP (P for Perl) and it worked well. If you choose to stick with Perl, learn the DBI and CGI Perl modules and mod_perl for Apache. You can build extremely useful tools. As for the appearance, I just downloaded some freely HTML/CSS templates and made my own modifications.

I know people who work in bioinformatics that are switching towards Python from Perl and the Python bioinformatics community is growing. They claim the code is much more readable and more understandable. But I've been still sticking with Perl.

As for high-end stuff, I've used Wordpress and Drupal, and I prefer Wordpress. Just try it for yourself.

Dave
This User Gave Thanks to z1dane For This Post:
# 5  
Old 02-21-2012
LAMP for Bioinformatics

Couldn't be more clear of your explanation! Thanks a lot Dave!
Yifang
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep command construction

Hi, I have an array variable "arr" that reads string from a file "vari.txt". Thus, the array will be of variable length depending how many entries are present in "vari.txt" I use a for loop to traverse through the array. However, i need a grep command to grep for a file "output.txt" and... (3 Replies)
Discussion started by: mohtashims
3 Replies

2. Shell Programming and Scripting

case construction for basic Arithmetics calculation

the scrip (q4.sh) should perform the following calcuation (+, -, / and *) it should be used like this: q4.sh number1 operation number2 I wrote it already but the "*" does not work. #!/bin/bash #Date: 2010.10.19 # un script qui utilisera une instruction case pour effectuer des opérations... (6 Replies)
Discussion started by: flash80
6 Replies

3. Shell Programming and Scripting

Help with regex construction

I am trying to construct a regular expression that will filter a log file containing the following table: aP mP mC,mI oP oC oF oI tP tI hP ... (8 Replies)
Discussion started by: euval
8 Replies

4. Shell Programming and Scripting

Matrix construction

Hi I have to construct a rectangular matrix with 6012 rows and 2221 columns. Here the rows and columns were given by alphanumeric ids in a file named row.txt and column.txt respectively. with this row nd column ids I have to construct a matrix ie 6012*2221 and compare the column ids with... (0 Replies)
Discussion started by: riyabio
0 Replies

5. Shell Programming and Scripting

Matrix construction

Hi experts How to construct a rectangular matrix for a text file with 6012 rows and 2221 columns. Thank You (1 Reply)
Discussion started by: riyabio
1 Replies

6. Cybersecurity

Password Construction

Could someone please help, I am new to unix and I am trying to do the following: o Each password must have at least eight characters. Only the first eight characters are significant. PASSLENGTH is found in /etc/default/passwd and is set to 6. ... (1 Reply)
Discussion started by: tumbikikani
1 Replies
Login or Register to Ask a Question