Saturday, October 31, 2009

Colorful Bracelets Meanings

Via Taveggia - Horn Medal (Lecco)

For people like me is near Lecco ... began the season :-) Medale


It starts from the Cassin ... and the following week to go to Taveggia ...


Via fifth-degree ... Maybe 6th ... but little forced ... The attack is written the name of the street ... therefore impossible to make mistakes ... the report we had not ... but the route does not require much sense of direction ... you can only go wrong negli ultimi tiri ... infatti ho sbagliato :-) direi che l'unico consiglio è ... attenzione agli ultimi due tiri quelli prima dell'uscita dalla via (III) ... alla partenza del pen'ultimo tiro, dopo il primo fittone io ho tenuto dritto in un diedrino (chiodo e piastrina poco affidabili) la via invece passa a destra , certo il chiodo sembra chiamare "è di qui vieni ... c'è anche una piastrina ..." così io mi ci infilo ... ma la roccia diventa rotta e instabile, se proprio decidete di fare questa variante occhio a dove mettete mani e piedi ... comunque ... rimontato il diedro (chiodo) si recupera la via.Anche sull'ultimo tiro (toccato a Valter) attenzione ... tenere sempre la destra ... come in autostrada ... è Play it safe ... move to the left of the nails are rock but you end up running ... the tap-roots are a little 'distant but the difficulties do not exceed the fifth grade.

positive note is the close proximity to the streets and Eternium Mexico and Clouds ... for us (out of practice) is still too demanding ... but nice to see friends and Stefano Luciano climb over. The rest of last shot offers an ideal location to take pictures on Luciano tiro chiave di Messico e Nuvole una placca mozzafiato che termina con una fessura (5 protezioni sul tiro di 20-25 metri). Settimana prossima l'Anniversario ...
Lecco all'alba ...
Il Medale ... e Valter
L'attacco della via ...
a metà parete ...



Luciano on Mexico and Clouds ... the crux ...





























Largest Average Women In The World

Recursive functions (VB)

ecco due funzioni ricorsive semplici semplici ... io amo le funzioni di questo tipo ... risultano spesso sconvenienti ma sono affascinanti ... e aiutano a ragionare in modo diverso ... la prima è per verificare il numero di dimensioni di una matrice ... la seconda serve a calcolare il fattoriale di un numero ... Function N_Dim(arr As Variant, Optional ByVal l As Long = 1) As Long On Error Resume Next
ArrayDims = LBound (arr, l) If Err Then
N_Dim N_Dim = (arr, l + 1) End If
End Function Function
Fact_If (ByVal N As Long) As Double 'recursive function to calculate the factorial ' of a number N =

Fact_If If N = 1 Then Fact_If Fact_If Fact_If * (N - 1)
End Function








California Tax Deed Sales

Cavandoli Test (Excel - Scatter charts)

Here's what I wrote in the email sent to colleagues
"you ride a short test to assess your preparation on the scatter charts in Excel" in the attached file that you can scaricare a questo link

Link al file
<>

Friday, October 30, 2009

Build Sand Rail Frame

English Ordinals (Excel-VBA-VBSript)

Da una piacevole conversazione con Nur sono nate alcune funzioni che propongo ... Della serie ... Funzioni inutili ... ecco English_Ordinal O_R e Ordinals_R che trasforma un numero nel rispettivo ordinale inglese ... e Is_Ordinal che verifica se la stringa passata come argomento è o meno un ordinale inglese. Il gioco stava nel *costringersi* ad usare le RegExp ... ma in questo caso forse hanno perso la gara ...

'lanciare test
Sub test()
Dim i As Long For i = 0 To 999 Cells(i + 1, 1) = English_Ordinal(i) End Sub

Function English_Ordinal(L As Long) As String
Dim re As Object
Dim S As String

S = L Set re = CreateObject("vbscript.regexp") re.Pattern = _
"((1[2-9]1)(2[2-9]2)(3[2-9]3)([04-9]1[0-9][2-9]0[2-9][4-9]))$"
S = re.Replace(S, ";$2st$3nd$4rd$5th")
re.Pattern = "(.*);.*?(\d+[a-z]{2}).*$"
English_Ordinal = re.Replace(S, "$1$2")
End Function

Public Function Is_Ordinal(S As String) As Boolean
Dim re As Object
S = "0" &amp; S
Set re = CreateObject("VBScript.RegExp")
re.Pattern = "^\d*([02-9](1st2nd3rd[04-9]th))(1\dth)$"
Is_Ordinal = re.test(S)
End Function

Function Ordinals_R(l As Long) As String
Dim v, c As Long, i As Long
v = Array("th", "st", "nd", "rd")
c = Right(l, 1)
If Right(l, 2) - 10
c Then _
If c
Ordinals_R = l &amp; v(i)
End Function

Function O_R(l As Long) As String
'breve
Dim v, c As Long
v = Array("th", "st", "nd", "rd")
c = Right(l, 1)
O_R = l &amp; v (IIf (Right (l, 2) - 10 = c, 0, IIf (C> 3, 0, c))) End Function



<>
< 4 Then i = c