Ubuntu: add a proxy for apt-get
In file: /etc/apt/apt.conf add the following line
Acquire::http::Proxy "http://www.bytefreaks.net:8008/";
and replace the http://www.bytefreaks.net:8008/ with your proxy server information
In file: /etc/apt/apt.conf add the following line
Acquire::http::Proxy "http://www.bytefreaks.net:8008/";
and replace the http://www.bytefreaks.net:8008/ with your proxy server information
setxkbmap -option grp:switch,grp:alt_shift_toggle,grp_led:scroll us,gr
or
setxkbmap -option grp:switch,grp:alt_shift_
SISAL (Streams and Iteration in a Single Assignment Language) is a general-purpose single assignment functional programming language with strict semantics, implicit parallelism, and efficient array handling. SISAL outputs a dataflow graph in Intermediary Form 1 (IF1). It was derived from VAL (Value-oriented Algorithmic Language, designed by Jack Dennis), and adds recursion and finite streams. It has a Pascal-like syntax and was designed to be a common high-level language for numerical programs on a variety of multiprocessors. — From: http://en.wikipedia.org/wiki/SISAL
Download Compiler from: http://sourceforge.net/projects/sisal/
How to install SISAL version 14.0.6 on Ubuntu 12.04 LTS (Precise Pangolin):
Language Reference Manual: http://www2.cmp.uea.ac.uk/~jrwg/Sisal/index.html
Other Similar Stuff:
SISAL (Streams and Iteration in a Single Assignment Language) is a general-purpose single assignment functional programming language with strict semantics, implicit parallelism, and efficient array handling. SISAL outputs a dataflow graph in Intermediary Form 1 (IF1). It was derived from VAL (Value-oriented Algorithmic Language, designed by Jack Dennis), and adds recursion and finite streams. It has a Pascal-like syntax and was designed to be a common high-level language for numerical programs on a variety of multiprocessors. — From: http://en.wikipedia.org/wiki/SISAL
Download Compiler from: http://sourceforge.net/projects/sisal/
How to install SISAL version 14.0.6 on Ubuntu 12.04 LTS (Precise Pangolin):
— If you get the following compilation error:
/usr/bin/gcc -g -I/home/xeirwn/Downloads/sisal.14.0.6/Include -c -o sisal.o sisal.c
sisal.c:2013:20: error: conflicting types for ‘getline’
/usr/include/stdio.h:675:20: note: previous declaration of ‘getline’ was here
Then you need to edit the file sisal.14.0.6/Frontend/Front1/sisal.c and replace all instances of getline function with something else like getlinelocal.
When you are done re-issue the sudo make command and wait.
Language Reference Manual: http://www2.cmp.uea.ac.uk/~jrwg/Sisal/index.html
Other Similar Stuff: