Comando | Descripción |
---|---|
git init | Crear un nuevo repositorio |
git clone ruta/repositorio | Clonar un repositorio local |
git clone usuario@password@host:repositorio | Clonar un repositorio remoto |
git add fichero | Agrega cambios al INDEX |
git add * | Agrega todos los cambios realizados al INDEX |
git rm fichero | Borra los cambios realizados |
This file contains 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
<MovilizerRequest | |
systemId="${#Project#SystemID}" | |
systemPassword="${#Project#Password}" | |
numResponses="0" | |
synchronousResponse="true" | |
useAutoAcknowledge="false" | |
xmlns="http://movilitas.com/movilizer/v14"> | |
<moveletDelete moveletKey="scanItems" ignoreExtensionKey="true" /> | |
This file contains 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
<!-- | |
How to check and uncheck buttons in a row. | |
Only from Movilizer client 2.4.7 | |
--> | |
<MovilizerRequest | |
systemId="${#Project#SystemID}" | |
systemPassword="${#Project#Password}" | |
numResponses="0" | |
synchronousResponse="true" | |
useAutoAcknowledge="false" |
This file contains 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
<MovilizerRequest requestTrackingKey="" systemId="${#Project#SystemID}" systemPassword="${#Project#Password}" | |
numResponses="1000" synchronousResponse="true" | |
useAutoAcknowledge="true" xmlns="http://movilitas.com/movilizer/v15"> | |
<moveletDelete moveletKey="timeUtils" ignoreExtensionKey="true" /> | |
<moveletSet> | |
<movelet moveletKey="timeUtils" initialQuestionKey="q1" > | |
<question key="q1" type="41" title="Epsilon screen" backNavigationAllowed="false"> | |
<answer key="q1.a1" nextQuestionKey="END" /> | |
</question> |
This file contains 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
<!-- | |
Google Maps API functions | |
--> | |
<MovilizerRequest | |
systemId="${#Project#SystemID}" | |
systemPassword="${#Project#Password}" | |
numResponses="0" | |
synchronousResponse="true" | |
useAutoAcknowledge="false" | |
xmlns="http://movilitas.com/movilizer/v15"> |
This file contains 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
<!-- | |
How to connect with a bluetooth printer from a Movelet | |
--> | |
<MovilizerRequest | |
systemId="${#Project#SystemID}" | |
systemPassword="${#Project#Password}" | |
numResponses="0" | |
synchronousResponse="true" | |
useAutoAcknowledge="false" | |
xmlns="http://movilitas.com/movilizer/v15"> |
This file contains 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 java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.SQLException; | |
public class ConexionSingleton { | |
// Propiedades | |
private static Connection CONEXION = null; | |
// Constructor |
This file contains 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
# -*- coding: utf-8 -*- | |
from tqdm import tqdm # Requiere instalar la librería -> pip install tqdm | |
from time import sleep | |
tareasQueRealizar = 100; | |
for i in tqdm(range(tareasQueRealizar)): | |
sleep(0.2) |
This file contains 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
package Movicoders; | |
import java.text.DateFormat; | |
import java.text.ParseException; | |
import java.text.SimpleDateFormat; | |
import java.util.ArrayList; | |
import java.util.Date; | |
import java.util.GregorianCalendar; | |
import java.util.List; |
This file contains 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
# -*- coding: utf-8 -*- | |
from openpyxl import load_workbook # Requiere instalar openpyxl | |
import os.path | |
rutaXLSX = "fichero.xlsx" | |
if os.path.isfile(rutaXLSX): | |
libro = load_workbook(rutaXLSX) # Abro el excel para extraer los campos |
NewerOlder