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
| [ { | |
| "id": "1", | |
| "firstname": "Wilhelm Conrad", | |
| "surname": "R\u00f6ntgen", | |
| "born": "1845-03-27", | |
| "died": "1923-02-10", | |
| "bornCountry": "Prussia (now Germany)", | |
| "bornCountryCode": "DE", | |
| "bornCity": "Lennep (now Remscheid)", | |
| "diedCountry": "Germany", |
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
| <!-- Window snapping code we are adding --> | |
| <keybind key="Super-Left"> | |
| <action name="UnmaximizeFull"/> | |
| <action name="MoveResizeTo"> | |
| <width>50%</width> | |
| <height>100%</height> | |
| <x>0%</x> | |
| <y>0%</y> | |
| </action> | |
| </keybind> |
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
| site_name: Preseed Ubuntu Desktop ISO 💿 per Emmy Noether | |
| nav: | |
| - Una Ubuntu ISO per Emmy Noether: index.md | |
| - Què significa crear un preseed per una ISO d'Ubuntu?: preseed.md | |
| - Com editar un fitxer ISO?: | |
| - "Instal·lació d'ISO Master": editariso/isomaster.md | |
| - "Edició i emmagatzemament de la ISO": editariso/edicio.md | |
| - Els fitxers a modificar: | |
| - "Configuració de ks.preseed": fitxers/kspreseed.md | |
| - "Configuració de txt.cfg": fitxers/txtcfg.md |
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
| import nbformat as nbf | |
| ntbk = nbf.read("Exercises_numpy.ipynb", nbf.NO_CONVERT) | |
| cells_to_keep = [] | |
| for cell in ntbk.cells: | |
| if cell.cell_type == "markdown": | |
| cells_to_keep.append(cell) | |
| new_ntbk = ntbk | |
| new_ntbk.cells = cells_to_keep | |
| nbf.write(new_ntbk, "new_md_only_notebook.ipynb", version=nbf.NO_CONVERT) |
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
| from flask import Flask | |
| app = Flask(__name__) | |
| @app.route("/") | |
| def hello(): | |
| return "Hello World!" |
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
| failover Python3 InnoDB Cluster |
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
| # | |
| # MySQL 8 Shell | |
| # | |
| # This example shows a simple X DevAPI script to work with relational data | |
| # | |
| from mysqlsh import mysqlx # needed in case you run the code outside of the shell | |
| # SQL CREATE TABLE statement | |
| CREATE_TBL = """ | |
| CREATE TABLE `factory_sensors`.`trailer_assembly` ( | |
| `id` int auto_increment, |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "bento/ubuntu-16.04" | |
| # Use the vagrant-persistent-storage plugin to make a disk | |
| config.persistent_storage.enabled = true | |
| config.persistent_storage.location = "disks/sourcehdd2.vdi" | |
| config.persistent_storage.size = 500 |
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 ad { | |
| <# | |
| .SYNOPSIS | |
| AD is an advanced Powershell function. It gives you a menu of powerful Active Directory commands. | |
| .NOTES | |
| Author: Patrick Gruenauer, MVP PowerShell | |
| Web: https://sid-500.com |