Resultats de text complet:
- java_lectura_escriptura
- egir arxius de text fem servir dues classes: - **File**: representa una ruta al sistema de fitxers, i p... de lectura d'arxius de text: <code java> package FileReadWrite; import java.io.File; import java.io.FileNotFoundException; import java.util.Scanner; public class Main { public static
- syntax @wiki
- is behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled. ... ?php /** * Customization of the english language file * Copy only the strings that needs to be modifie... ning the syntax for links and [[#images_and_other_files|images]] (see below) like this: [[http://php.... ted in link names. The whole [[#images_and_other_files|image]] and [[#links|link]] syntax is supported
- integracio_de_django_amb_react
- --> Proposta d'implementació Customer i Account# <file python models.py> class Project(models.Model): ... self): return self.description </file> <-- <WRAP todo> Aquest model no contempla que le... a //INSTALL_APPS// com es mostra a continuació: <file python settings.py> INSTALLED_APPS = [ 'custo... es', 'corsheaders', 'rest_framework', ] </file> També cal que el port localhost 3000 estigui en
- django_lliga
- er a l'equip en el què jugava en aquell moment. <file python models.py> # models Lliga, Equip, Jugador,... etalls = models.TextField(null=True,blank=True) </file> <-- --> Proposta implementació Partit# Els part... l partit. Això es pot implementar com segueix: <file python models.py> class Partit(models.Model): ... vent.EventType.GOL,equip=self.visitant).count() </file> <-- \\ ===== Implementar admin panel ===== Vi
- django_docker
- ckerfile permet crear la imatge del contenidor. <file Dockerfile Dockerfile> # We Use an official Pytho... ","manage.py"] CMD ["runserver","0.0.0.0:8000"] </file> Fixeu-vos en què la darrera instrucció equival ... da en producció juntament amb la base de dades: <file yaml docker-compose.yml> version: '3.1' services... volumes: - ./db.sqlite3:/code/db.sqlite3 </file> Per posar-ho en marxa primer cal crear un arxiu
- nodejs_selenium
- te, encara que no estiguem treballant en NodeJS: <file text .gitignore> node_modules/ </file> \\ ===== Desenvolupament ===== En aquests tests funcionals, e... <tabbox Versió Linux> === run.sh per a PHP === <file bash run.sh> #!/bin/bash # directori del script r... rc # engeguem el PHP server php -S 0.0.0.0:8000 </file> === run.sh per a Cordova === <file bash run.sh>
- ids-maltrail
- }} quick start instal·lació For Ubuntu/Debian <file bash Instal·lació-mailtrail-debian> sudo apt-get ... do python3 sensor.py & sudo python3 server.py & </file> Exemple de detecció {{:maltrail2.jpg?400|}} d... rything is up and running execute the following <file bash comanda-ping> ping -c 1 136.161.101.53 cat /var/log/maltrail/$(date +"%Y-%m-%d").log </file> Per realitzar el bloqueig dependrà de la classi
- dockerfile
- sió elemental del ''Dockerfile'' seria aquesta: <file Dockerfile Dockerfile> # imatge base. "scratch" =... xa un servei en primer plànol CMD ["/bin/bash"] </file> Els fitxers que posarem a la carpeta ''src'' lo... com posar variables d'entorn com ''PATH'', etc. <file bash /etc/bash.bashrc> echo "Benvingut al docker ... de bash." echo "Mes comandes ...coming soon..." </file> Comprova que ens apareix el missatge si reconst
- java_sqlite
- n = null; try { String url = "jdbc:sqlite:" + filePath; conn = DriverManager.getConnection(url);... tem.getProperty("user.dir") + "/"; String filePath = basePath + "database.db"; ResultSet... ix) Connection conn = UtilsSQLite.connect(filePath); // Llistar les taules Arra... e { public static Connection connect (String filePath) { Connection conn = null;
- fastapi
- cés "/api/index" que ens retornarà el missatge. <file python main.py> from fastapi import FastAPI app =... ndex(): return {"message": "Hola FastAPI!"} </file> <code> uvicorn main:app --reload </code> <WRAP... àmiques de les peticions directament de la URL: <file python main.py> @app.get("/student/{id}") async def student_info(id:UUID): ..... ..... </file> ====Query parameters==== Son paràmetres del ti
- django_frontend
- rls.py de //mysite//. Afegeix a mysite/urls.py: <file python mysite/urls.py> ... from django.urls impor... ath('polls/', include("polls.urls")), ... ] </file> I afegiu l'arxiu ''urls.py'' amb el contingut: <file python polls/urls.py> from django.urls import pat... urlpatterns = [ path('', views.index ), ] </file> Ara teniu disponible la //view// index des de 2
- libgdx_comunicacions
- s en Android cal activar els permisos adequats: <file xml AndroidManifest.xml> <uses-permission and... me="android.permission.ACCESS_NETWORK_STATE" /> </file> Si volem compilar versió HTML: <file xml GdxDefinition.gwt.xml> <inherits name='com.github.czyzby.... e='com.github.czyzby.websocket.GdxWebSocket' /> </file> I el més important, ''build.gradle'' general de
- android_camera
- https://developer.android.com/studio/debug/device-file-explorer|Device File Explorer]] de l'Android Studio. {{tag> #Dam #DamMp08 #DamMp08Uf2 #DamMp08Uf02 An... //thumbnail// (miniatura)**: si no adjuntem cap ''File'' al ''Intent'', la App Camera ens retornarà un /... omplert cal donar permís a la App Camera amb un ''FileProvider''. \\ - Implementar **a la nostra pròpi
- php
- xercici 4 dels taulells de jocs amb el nom de les files (lletres) i columnes (números). - Crea un arra... ru): * [[https://www.php.net/manual/es/function.file.php|file()]] : carrega tot un fitxer en un array (cada línia serà un element) * [[https://www.php.net/manual/es/function.file-put-contents.php|file_put_contents()]] : guarda l
- python_web
- **) precedida per un **decorator (app.route)**: <file python web.py> #... codi previ... @app.route('/h... o(): return 'Hello again!' #...mes codi... </file> ==== Mètodes [GET,POST,+] ==== A més, cal tenir... nt exemple, utilitzant ''request.form['nom']'': <file python web.py> # si no especifiquem res al decora... .form["nom"] return "Salut, {}".format(nom) </file> ==== Exercici ==== <WRAP todo> * Crea un form