Sunday 29 June 2014

Word 2003 resaltar lineas para Momi


Lo necesita para poder leer tanto pantalla como impreso

Sub resaltar_lineas()
'
' resaltar_lineas Macro
' Macro grabada el 29/06/2014 por Paloma
'
' ref: https://wiki.brown.edu/confluence/pages/viewpage.action?pageId=4429
    Options.DefaultHighlightColorIndex = wdYellow
    Do
        Selection.EndKey Unit:=wdLine, Extend:=wdExtend
        Selection.Range.HighlightColorIndex = wdYellow
        Selection.MoveRight Unit:=wdCharacter, Count:=1
        If Selection.MoveDown(Unit:=wdLine, Count:=1) <> 1 Then
            Exit Do
        End If
    Loop

End Sub

Saturday 28 June 2014

Empezar con lenguaje C

Libros:

C compilers

Online C compilers

http://stackoverflow.com/questions/3916000/online-c-compiler-and-evaluator
http://isocpp.org/blog/2013/01/online-c-compilers

http://code.hackerearth.com
- muchos lenguajes


http://www.compileonline.com/compile_c_online.php
- varios ficheros -- tiene buena pinta

http://codepad.org/
https://ideone.com/
- links para compartir

https://compilr.com/c-compiler
- hay que registrarse

http://www.botskool.com/online-compiler
- hay que registrarse

Installed

http://www.cs.virginia.edu/~lcc-win32/
self contained: you do not need anything else to get started programming in C in the Win32 environment

https://www.youtube.com/watch?v=pMMBZ3NkKjg
Creación de un programa lccWin32