Search
1000 results for “btp”
-
#Frahm tauchte zum ersten Mal im Protokoll der 190. Sitzung des 20. Deutschen Bundestages am 09.10.2024 auf. Das Protokoll findet sich unter https://dserver.bundestag.de/btp/20/20190.pdf
-
(6/8)
- colonie Indochine/France (cf 10e 16e 17e siècle) : gouverneur général Paul Doumer (cf 1897 1902) inaugure chemin de fer > 800 km reliant port de Haïphong Annam Vietnam au Yunnan capitale Kunming avec viaducs en #acier /400 ponts/150 tunnels #btp dans la #jungle pour processus d’expansion territoriale (cf 1885) + améliorer rentabilité commerce/contrôle économico-politique + espoir intégrer la province chinoise à l’Empire ... -
(5/8) ... Caire devant les femmes favorites d'un harem -> Élise Deroche obtient son brevet de pilote d'aéroplane par l'Aéro-Club de France = fait tous les meetings aériens internationaux et concours avec les hommes -> graves blessures suite à une manœuvre aérienne haineuse d'un concurrent masculin allemand (cf 1882 1906 1909 1913) + architecte Fritz Beblo supervisé la Grande-Percée centre-ville #btp de Strasbourg (cf 1919).
-
(12/23) ... Gouvernement au Parlement sur la mise en œuvre du mécanisme d’obligations réelles environnementales et sur les moyens d’en renforcer l’attractivité https://www.vie-publique.fr/rapport/279397-mecanisme-d-obligations-reelles-environnementales + reconstruction #btp lit de la Loire 60 millions d'€ -> duis + France admet ses responsabilités dans le génocide rwandais (cf 1994) + soutien aux agriculteurs coincés entre #lobbies pesticides/réchauffement climatique/ #corruption ...
#year2021 #anthropocene #climat #climate #climatechange #climatecrisis
-
#Missy tauchte zum ersten Mal im Protokoll der 158. Sitzung des 20. Deutschen Bundestages am 15.03.2024 auf. Das Protokoll findet sich unter https://dserver.bundestag.de/btp/20/20158.pdf
-
New #SAP Influencing request: Use custom logo defined in tenant settings also for Profile Management / User Profile Application https://influence.sap.com/sap/ino/#/idea/371119 (S-User required) #SAPBTP #BTP #IAS
-
@Mianbsp @ceedee666 no Announcement at #SAPTechEd but an update at https://community.sap.com/t5/technology-blog-posts-by-sap/btp-trial-update-cf-runtime-availability/bc-p/14272987/highlight/true#M186479 saying it will take until next year to bring Cloud Foundry back to the #SAPBTP Trial.
-
Hurray another CodeJam next month on #SAPBTP, specifically on the btp CLI and APIs. Join us in the lovely city of Wrocław, PL on Fri 06 Jun and then you're also set for the Inside Track event the day after. Win! 🚀 https://community.sap.com/t5/sap-codejam/hands-on-with-the-btp-cli-and-apis-wroc%C5%82aw-pl/ev-p/14105401 @sap
-
SAP has five open positions, [2 Senior Developers](https://jobs.sap.com/job/Garching-Senior-Developer-%28fmd%29-SAP-Cloud-Application-Programming-Model-%28CAP%29%2C-SAP-Munich-85748/1179887401/) and [3 (Associate) Developer](https://jobs.sap.com/job/Garching-%28Associate%29-Developer-%28fmd%29-SAP-Cloud-Application-Programming-Model-%28CAP%29%2C-SAP-Munich-85748/1179885801/), for a new SAP Cloud Application Programming Model team in Munich.
#sapcap @sapcap #jobs #joboffers #java #javascript #typescript #btp #SAPBTP
-
A Kotlin-based CAP Java Application (Part 1)
Introduction
I recently asked myself whether it is possible to develop a full-fledged cloud application using Kotlin and the SAP Cloud Application Programming Model for Java (CAP Java). Instead of only thinking about it, I decided to start a project to check this.
I'm developing the application in several steps, each step is accompanied by a small blog article. I won't go into every detail when it comes to CAP Java, so knowledge in this area is beneficial to follow the steps.
The application will be a link aggregator where users can add URLs to interesting information on the web. Links can be marked as private, mutual (only visible for other logged-in users), and public (visible for all).
Creating and Adjusting the Project
The first step is to create a CAP Java project as described in CAPire. I'm not going to go into depth here but only show what needs to be changed to use Kotlin for developing the microservice. Make sure that you have a model and database for local development. I chose SQLite to be on the safe side when it comes to integration of multi-tenancy in a later step.
Let's start with the required changes in the parent pom file.
1. Add a property for the Kotlin version in the
<properties>:<kotlin.version>2.1.0</kotlin.version>2. Add the dependency for the Kotlin standard library to the dependency management:
<!-- KOTLIN --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency>3. Add the Kotlin compiler plugin:
<!-- KOTLIN PLUGIN --> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> <sourceDir>${project.basedir}/src/main/java</sourceDir> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> <sourceDir>${project.basedir}/src/test/java</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin>4. Adjust the Java compiler plugin:
As we still need Java compilation of the POJOs generated by the CDS compiler we have to adjust the settings of the Java compiler plugin. This is the change entry:
<!-- JAVA COMPILER --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>${jdk.version}</release> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <id>default-compile</id> <phase>none</phase> </execution> <execution> <id>default-testCompile</id> <phase>none</phase> </execution> <execution> <id>java-compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>java-test-compile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin>As the perent pom is now complete, some changes need to done in the
srv/directory.1. Add the dependency for the Kotlin standard library:
<!-- KOTLIN --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> </dependency>2. Create Kotlin source directory:
Create the directory
srv/src/main/kotlin, create the base package for your project and add the Kotlin classApplicationin the base package with the following content:package io.github.linkaggregator import org.springframework.boot.SpringApplication import org.springframework.boot.autoconfigure.SpringBootApplication @SpringBootApplication open class LinkAggregatorApplication fun main(args: Array<String>) { SpringApplication.run(LinkAggregatorApplication::class.java, *args) }3. Delete the Java source directory:
As we want to develop the service in Java, the directory
srv/src/main/javacan be deleted now.Now you can build and run the service!
That's it for the first part of this series. You can find the sources for this part on Github.
In the next part we're going to switch to Groovy and Spock to develop unit tests. So stay tuned!
@sap @sapcap #sapcap #cap #capjava #java #kotlin #cloud #sapbtp #btp
-
Create AI-Powered Solutions Faster with AI in SAP Business Technology Platform BTP https://youtu.be/amBCRzK7y_g?si=pTeNgCKSAmG9Lz2Y via @YouTube #SAP #AI #BusinessAI #genAI #LLM #SAPBTP
-
Quick Start: Build GenAI Apps on SAP BTP in Minutes with GenAI Starter Kit https://www.youtube.com/live/VUh4_-mDEiM?si=f3mRPp24hGz-XE0r via @YouTube #SAP #BusinessAI #GenAI #AI #LLM #SAPBTP #SAPCommunity #sapchampions
-
Tonight over on the desk, I review #MarvelsSpiderman2 how does it stack up, and is it a #goty2023 contender? Find out over on #substack
https://fromthedeskofchaos.substack.com/p/spider-man-2-ps5?r=2bscoe&utm_campaign=post&utm_medium=web -
Faire Lien avec le territoire... 😉
#cfabtp19 #formationcontinue #construction #formationprofessionnelle #limousin #correze #tulle #tulleencorreze #cfa #btp #btpcfa
-
#Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter https://dserver.bundestag.de/btp/20/20087.pdf
-
#Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter https://dserver.bundestag.de/btp/20/20087.pdf
-
#Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter https://dserver.bundestag.de/btp/20/20087.pdf
-
#Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter https://dserver.bundestag.de/btp/20/20087.pdf
-
via réseau de sociétés liées aux oligarques Iouri et Boris Kovaltchouk.
#btp #anthropocene #climat #climate #climatechange #climatecrisis #corruption #year2025
-
+ hôpital privé = cabinet de médecine générale équipé d’un appareil d’échographie, de tables d’examen/de massage, d’un laboratoire d’analyses, d’un électrocardiogramme et d’appareils de physiothérapie, d'un cabinet dentaire, d'un cabinet ORL, d'un bloc opératoire, d'une cabine de cryothérapie avec des températures à – 110 °C. + spa avec piscine #eau.
#btp #anthropocene #climat #climate #climatechange #climatecrisis #corruption #year2025
-
= 3,5 hectares au pied de falaises donnant sur la Mer Noire -> salle de réception de 233 m² avec une table pour 20 personnes, une chambre de 154 m² avec une salle de bains en marbre de 50 m² équipée d’un jacuzzi #eau dont la robinetterie est évaluée à elle seule à 30 000 €
= doté d’un héliport, d’une jetée, d’une plage artificielle de sable blanc #environnement
#btp #anthropocene #climat #climate #climatechange #climatecrisis #corruption #year2025
-
It sucks when you wake up wanting to go to work and you can't put weight on your foot cause you find out you've sprained it. I've been doing better and went for my usual lesson in #karate today and did fine till I had to spin in the air for a kata and it hurt pretty good. My instructor asked what happened and gently scolded me (which, for him, is being nice), and we adjusted. Long story short, I'm doing better, just don't be a dumb ass like me...
#life #martialarts #kenpo #stupid #stubborn -
All my coworkers: "Brandon you look like shit"
Me: "I'm fine"
Wife: "You look like shit!"
Me: "I'll be okay"
Back at work:
*Boss shows me my face (see gif)
Me: "Oh guess I don't look good huh?"
*Everyone looking at me like I'm insane*
-
(10/11) ... faire. Vous pouvez faire n’importe quoi. Les attraper par la chatte. Vous pouvez faire ce que vous voulez.” (cf 2016 2024 2025 2026).
- Europe : fibre minérale cancérogène de l' #amiante (cf 1861 1930 1951 1993 1997) interdit -> désamianter #btp présent dans canalisations/ciment/plaque et panneaux de construction des murs/sols/toit/bureaux/bateaux/avions avant ...#livre Exercices de survie de #JorgeSemprun
#year2005 #anthropocene #climat #climate #climatechange #climatecrisis
-
"Marge, gonna be a little late so a spaceship is parked outside the Krusty Burger...no, I'm not at Moe's."
#simpsons #lego #blacktron -
I read today this is going to be retired sooner than planned, so if you wanted to get it. I suggest you get in motion to do so
#lego #blacktron #LegoMania -
Was a long day at work, time to decompress