Wednesday, December 31, 2008

Varicose Veins Ceragem

ASP - Calculate the day Easter

In this post I will show how to calculate the day of the Passover from a year ago.

This is a very simple ASP function which spend a year or a date.

function is this:


\u0026lt;%
'script for the calculation of Easter
' Author: Mark Brunelli - www.giuba.it
calcolapasqua function (date)
dim X, A, B, C, D, E, F, G, H, M, J, K, L, N, P, Pday
if IsDate (date) then
'if I had a date
X = year (date)

else' if I spent a number
X=data
    end if
    'calcolo la pasqua
    A=X mod 19
    B= int(X/100)
    C=X mod 100
    D=int(B/4)
    E=B mod 4
    G=int((8*B+13)/25)
    H=(19*A+B-D-G+15)mod 30
    M=int((A+11*H)/319)
    J=int(C/4) K=C mod 4
    L=(2*E+2*J-K-H+M+32) mod 7
    N=int((H-M+L+90)/25)
    P = (H + L-M + N +19) mod 32
Pday = P & "/" & N & "/" & X
calcolapasqua = FormatDateTime (Pday, 1)

end function%> ;


Just pass the function a year (positive integer) or date and this will "shoot out" the day of the Passover!
If you do not want to see the day (Sunday) as a result of the function, put this in the penultimate line

calcolapasqua = FormatDateTime (Pday)

instead of

calcolapasqua = FormatDateTime (Pday, 1)


Or look for a guide to the asp function 'FormatDateTime'!

Attention to pass correct values \u200b\u200bto the function. This time I did not do error checking!

as usual for the lazy links or zippino with the script already!

Tuesday, October 21, 2008

Funny Mental Hospital Answering Machine Number

Graduation Party

Image and video hosting by TinyPic

Wednesday, October 15, 2008

Sore Throat And Tongue Bumps

Architecture 2008 Calendar Fall 2008 Thesis

Con riferimento al DOC 05 del 13 Ottobre ’08, a firma congiunta del Preside, del Presidente del CCdLSA4/S-Pa e del Coordinatore delle Tesi di Laurea, si pubblica qui di seguito il calendario dello svolgimento delle lauree e delle attività ad esse connesse.

Si informa che in occasione dell’avvio del nuovo regolamento è stata istituita la Sala delle Lauree, un nuovo spazio allestito per lo svolgimento degli esami di Laurea e per
esposizioni temporanee, sito al 4° piano nell’ala nord dell’edificio centrale.
Si informa altresì che la mostra delle tesi di Laurea sarà allestita presso gli spazi comuni al 3° and 4th floors of the building.

The conduct of the October session will be divided according to the following timetable

Thursday, October 2, 2008

What Are The Tuitions For Yale?

WINDOWS - Change the attributes of a file / folder

I know that right now Linux users scoff brutally Windows users and this post but we windowsiani "to change the attributes of files or directories we need a little help if the difference in linux cava with the simple command "Touch".

time ago as I was trying to do but I did not find anything. Yesterday, the first research here is what I found: I state

that in this post already talking about how to change the attributes of a file with the command "attrib" launched by windows dos promt but it merely set the following boolean attributes:
  • read-only file attribute .
  • archive file attribute.
  • file attribute system.
  • hidden file attribute.
  • file attribute is not indexed.
But if I wanted to have something more? For example, to change the dates of creation / modification / access of a file or directory in order to confirm the boss that the work I had done some time ago and not today's race? : D

are 2 solutions:
  1. Utilizzo il comando Touch con linux, se ho linux
  2. Utilizzo questo programmino iper tazzo con windows !
Si tratta di Attribute Changer , un piccolo software che una volta installato è raggiungibile dal menu contestuale (quello che si apre col clic sul tasto destro del mouse) di windows explorer.

Prova tu stesso! Se hai Windows 98, Me, 2000, Xp, 2003 o Vista scarica il programma e installalo (se hai un sistema operativo a 64 bit questo software NON va bene)

Fatto questo prova a cliccare col tasto destro su un file o una cartella e clicca sulla voce " Cambia attributi... ". Ora non ti resta che smanettare a bit 'and do what you want! The software is simple and is in Italian so there are no problems. From the first window that opens you can see how to change the dates of creation / access / modification of our file / directory!

One last thing though .... careful not to get caught by your boss! : D