But still I enjoy it very much.

subroutine caller(arg, called) | |
integer :: arg | |
external :: called | |
call called(arg) | |
end subroutine caller |
subroutine caller(arg, called) | |
integer :: arg | |
interface | |
subroutine called(arg) | |
integer :: arg | |
end subroutine called | |
end interface | |
call called(arg) | |
end subroutine caller |
program main | |
implicit none | |
interface | |
subroutine to_be_called(arg, nx, ny, arr) | |
integer :: arg, nx, ny | |
integer, allocatable, intent(out) :: arr(:, :) | |
end subroutine to_be_called | |
end interface | |
print *, "Hello" | |
call caller(5, to_be_called) | |
end program main | |
subroutine to_be_called(iarg, nx, ny, arr) | |
integer :: iarg, nx, ny | |
integer, allocatable, intent(out) :: arr(:, :) | |
allocate (arr(nx, ny)) | |
arr = iarg | |
end subroutine to_be_called | |
subroutine caller(arg, called) | |
integer :: arg | |
interface | |
subroutine called(arg, nx, ny, arr) | |
integer :: arg, nx, ny | |
integer, allocatable, intent(out) :: arr(:, :) | |
end subroutine called | |
end interface | |
integer :: nx, ny | |
integer, allocatable :: arr(:, :) | |
nx = 5; | |
ny = 5; | |
call called(arg, nx, ny, arr) | |
print *, size(arr) | |
print *, arr | |
end subroutine caller |
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
crontab mycrontab
50 7 * * * cd $HOME && ./alarm.sh
#!/bin/bash
export DISPLAY=:0.0
/usr/bin/firefox "http://www.youtube.com/watch?v=ebBBdJSHzJk&feature=PlayList&p=C262E364FC4756AF&playnext_from=PL&index=18&playnext=2"
radar2:tmp huziy$ ./port_cleaner.sh 33 Password: ---> Uninstalling hdf5-18 @1.8.4-patch1_1 ---> Uninstalling hdfeos5 @1.12_0 ---> Uninstalling ImageMagick @6.6.2-0_0+q16 ---> Uninstalling iso-codes @3.16_0 ---> Uninstalling libtool @2.2.6b_1+darwin ---> Uninstalling mc @4.7.0.2_0+slang2 ---> Uninstalling mpfr @2.4.2-p1_0 ---> Uninstalling mpfr @3.0.0_0 ---> Uninstalling openmotif @2.3.2_2 ---> Uninstalling openssl @0.9.8n_0+darwin ---> Uninstalling python26 @2.6.5_1 ---> Uninstalling xorg-libX11 @1.3.3_0 ---> Uninstalling xorg-libXcomposite @0.4.1_0 ---> Uninstalling xorg-libXdamage @1.1.2_0 ---> Uninstalling xorg-libXext @1.1.1_0 ---> Uninstalling xorg-libXfixes @4.0.4_0 ---> Uninstalling xorg-util-macros @1.8.0_0
#! /bin/bash | |
# exit on error | |
set -e | |
the_list=($( port installed | grep -v active | grep -v : )) | |
size=${#the_list[@]} | |
let size=$size-1 | |
echo $size | |
for ((i=0; i < size; i+=2)) | |
do | |
sudo port uninstall ${the_list[i]} ${the_list[i+1]} | |
done |
__author__="san" | |
__date__ ="$18-May-2010 11:48:34 PM$" | |
from datetime import datetime | |
from reportlab.platypus import * | |
from reportlab.platypus.tables import * | |
from datetime import timedelta | |
from datetime import * | |
from reportlab.lib.styles import * | |
from reportlab.lib.units import * | |
def main(places): | |
doc = SimpleDocTemplate('gfe.pdf') | |
data = [ | |
['P1','_____'], | |
['P2','_____'], | |
['P3','_____'], | |
] | |
elements = [] | |
styles = getSampleStyleSheet() | |
end_date = datetime(year = 2010,month = 8, day = 15) | |
start_date = datetime(year = 2010,month = 5, day = 16) | |
d = start_date | |
dt = timedelta(days = 7) | |
week_number = 1 | |
while d < end_date: | |
d += dt | |
insert_in_data(data, places) | |
cycle(places) | |
t = Table(data, rowHeights = 13.5) | |
t.setStyle(TableStyle([ | |
('INNERGRID', (0,0), (-1,-1), 0.25, colors.black), | |
('BOX', (0,0), (-1,-1), 0.25, colors.black), | |
])) | |
elements.append(t) | |
p = Paragraph(d.strftime("%B %d ----") + '- end of week %d' % week_number, styles['Normal'] ) | |
elements.append(p) | |
week_number += 1 | |
doc.build(elements) | |
def insert_in_data(data, the_places): | |
for i, place in enumerate( the_places ): | |
if len(data[i]) > 2: | |
data[i].pop(1) | |
data[i].insert(1, place) | |
def cycle(the_list): | |
tail = the_list.pop() | |
the_list.insert(0,tail) | |
if __name__ == "__main__": | |
places = ['Salle de bain', 'Cuisine', 'Place de sejour'] | |
main(places) | |
print "Hello World" |