gap> path := Directory("/cygdrive/c/gap-4.10.2/pkg/GAPDoc-1.6.2/example");;
gap> main := "/cygdrive/c/gap-4.10.2/pkg/GAPDoc-1.6.2/example/example.xml";;
gap> files := [];;
gap> bookname := "Example";;
gap> doc := ComposedDocument("GAPDoc", path, main, files, true);;
gap> r := ParseTreeXMLString(doc[1], doc[2]);;
gap> MakeGAPDocDoc( path, main, files, bookname);
#I Composing XML document . . .
#I Parsing XML document . . .
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example config file /etc/vsftpd.conf | |
| # | |
| # The default compiled in settings are fairly paranoid. This sample file | |
| # loosens things up a bit, to make the ftp daemon more usable. | |
| # Please see vsftpd.conf.5 for all compiled in defaults. | |
| # | |
| # READ THIS: This example file is NOT an exhaustive list of vsftpd options. | |
| # Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's | |
| # capabilities. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 驴C贸mo hacer la copia de seguridad? | |
| Crea un archivo llamado backup.sh y copia en 茅l lo siguiente: | |
| --------------------------------------------------------------------------------------- | |
| #!/bin/sh | |
| #################################### | |
| ## Backup script. | |
| ##################################### | |
| # 驴De que queremos hacer el Backup? | |
| backup_files="/home/var/mis_fotos" | |
| # 驴Donde lo vamos a almacenar? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DECLARE | |
| /* aqui van las variables */ | |
| BEGIN | |
| /* estructura del programa, sentencias SQL */ | |
| EXCEPTION | |
| /* manejo de excepciones */ | |
| END; | |
| /* final del bloque */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>GAP package AutoDoc</title> | |
| <link rel="stylesheet" type="text/css" href="stylesheets/styles.css"> | |
| <link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css"> | |
| <script type="text/javascript" | |
| src="javascripts/scale.fix.js"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ---------------------------------------- | |
| # GENERALIDADES | |
| # vectores y matrices | |
| # ---------------------------------------- | |
| # NOTA: Asignar un valor a una variable: | |
| # a partir de la version de R2000 equivalen los simbolos | |
| # <- | |
| # = |
#############################################
##############################################
$ git init
$ git add .
$ git commit -m "primer commit"
$ git remote add origin https://github.com/*usuario*/*nombredelrepositorio*.git
$ git push -u origin master'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Creamos el grupo: | |
| gap> s3:=SymmetricGroup(3); | |
| Sym( [ 1 .. 3 ] ) | |
| ## Tiene 3 clases de conjugaciones de elementos: | |
| gap> cc:=ConjugacyClasses(s3); | |
| [ ()^G, (1,2)^G, (1,2,3)^G ] | |
| gap> Length(cc); | |
| 3 |