19 Sep 2011
juntar vários documentos do word num só
19 Sep 2011
Sub MergeDocs()
Dim rng As Range
Dim MainDoc As Document
Dim strFile As String
Const strFolder = "C:\Book\Chapters\" 'change to suit
Set MainDoc = Documents.Add
strFile = Dir$(strFolder & "*.doc") ' can change to .docx
Do Until strFile = ""
Set rng = MainDoc.Range
rng.Collapse wdCollapseEnd
Selection.InsertBreak Type:=wdPageBreak ' inserir quebra de página
rng.InsertFile strFolder & strFile
strFile = Dir$()
Loop
End Sub
copiar gráficos e dados
16 Sep 2011
scripts para windows
16 Sep 2011
http://www.rlmueller.net/index.html
dsquery ou > xana.txt
mount --bind
15 Sep 2011
http://aplawrence.com/Linux/mount_bind.html
para montar no fstab:
/path1 /path2 none defaults,bind 0 0
http://www.linuxquestions.org/questions/linux-general-1/mount-bind-fsta…
ip_conntrack_ftp
15 Sep 2011
proftpd
15 Sep 2011
recover
14 Sep 2011
Programmatically creating menu items in Drupal
13 Sep 2011