This file has been truncated, but you can view the full file.
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
| The Project Gutenberg eBook of Don Quijote | |
| This eBook is for the use of anyone anywhere in the United States and | |
| most other parts of the world at no cost and with almost no restrictions | |
| whatsoever. You may copy it, give it away or re-use it under the terms | |
| of the Project Gutenberg License included with this eBook or online | |
| at www.gutenberg.org. If you are not located in the United States, | |
| you will have to check the laws of the country where you are located | |
| before using this eBook. |
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
| The Project Gutenberg eBook of Argentina, Legend and History | |
| This eBook is for the use of anyone anywhere in the United States and | |
| most other parts of the world at no cost and with almost no restrictions | |
| whatsoever. You may copy it, give it away or re-use it under the terms | |
| of the Project Gutenberg License included with this eBook or online | |
| at www.gutenberg.org. If you are not located in the United States, | |
| you will have to check the laws of the country where you are located | |
| before using this eBook. |
This file has been truncated, but you can view the full file.
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
| The Project Gutenberg eBook of Diccionario Ingles-Español-Tagalog | |
| This eBook is for the use of anyone anywhere in the United States and | |
| most other parts of the world at no cost and with almost no restrictions | |
| whatsoever. You may copy it, give it away or re-use it under the terms | |
| of the Project Gutenberg License included with this eBook or online | |
| at www.gutenberg.org. If you are not located in the United States, | |
| you will have to check the laws of the country where you are located | |
| before using this eBook. |
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
| --- /etc/grub.d/10_linux | |
| +++ /etc/grub.d/10_linux | |
| @@ -144,7 +144,7 @@ | |
| fi | |
| printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/" | |
| fi | |
| - message="$(gettext_printf "Loading Linux %s ..." ${version})" | |
| + message="$(gettext_printf "Loading Linux %s ..." ${display_version})" | |
| sed "s/^/$submenu_indentation/" << EOF | |
| echo '$(echo "$message" | grub_quote)' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #!/bin/sh | |
| # https://jupyter-docker-stacks.readthedocs.io/en/latest/index.html | |
| # https://docs.docker.com/reference/cli/docker/container/exec/ | |
| systemctl is-active --quiet docker || systemctl start docker | |
| systemctl is-active --quiet containerd || systemctl start containerd | |
| PORT=8888 |
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
| digraph G { | |
| node [ shape=box ]; | |
| compound=true; | |
| subgraph cluster_objetos { | |
| rankdir=same | |
| node [ shape=box, style=filled, fillcolor=white ]; | |
| C [ label="Barrio" ]; | |
| D [ label="Parada" ]; | |
| label="Objetos"; |
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
| commit a6d41f067eb1bc64eb5d721df4d2880c457fe82a | |
| Author: mjkloeckner <martinjkloeckner@gmail.com> | |
| Date: Sat Apr 15 21:09:02 2023 -0300 | |
| flaotrules relative to monitor size | |
| floatrules now accepts a new option which is `isrel` in case of being 1 | |
| the floatx, floaty, floatw, floath can be specified in terms of the | |
| percentage of the monitor with floating values in the range 0.00 - 1.00, | |
| being 0.00: 0% and 1.00: 100%, 0.50: 50%, etc. |
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
| function VerboseMark() | |
| echo '' | |
| let c = nr2char(getchar()) | |
| exe "mark" c | |
| echon "created mark '" c "' at line " line(".") | |
| endfunction | |
| nnoremap m :call VerboseMark()<CR> |