home.social

Search

1000 results for “btp”

  1. #Frahm tauchte zum ersten Mal im Protokoll der 190. Sitzung des 20. Deutschen Bundestages am 09.10.2024 auf. Das Protokoll findet sich unter dserver.bundestag.de/btp/20/20

  2. (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 ...

    #climat #climate #climatechange #anthropocene #year1910

  3. (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).

    #climat #climate #climatechange #anthropocene #year1910

  4. (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é vie-publique.fr/rapport/279397 + 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

  5. #Missy tauchte zum ersten Mal im Protokoll der 158. Sitzung des 20. Deutschen Bundestages am 15.03.2024 auf. Das Protokoll findet sich unter dserver.bundestag.de/btp/20/20

  6. New #SAP Influencing request: Use custom logo defined in tenant settings also for Profile Management / User Profile Application influence.sap.com/sap/ino/#/id (S-User required) #SAPBTP #BTP #IAS

  7. 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! 🚀 community.sap.com/t5/sap-codej @sap

  8. 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 class Application in 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/java can 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

  9. #Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter dserver.bundestag.de/btp/20/20

  10. #Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter dserver.bundestag.de/btp/20/20

  11. #Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter dserver.bundestag.de/btp/20/20

  12. #Sappi tauchte zum ersten Mal im Protokoll der 87. Sitzung des 20. Deutschen Bundestages am 01.03.2023 auf. Das Protokoll findet sich unter dserver.bundestag.de/btp/20/20

  13. + 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

  14. = 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

  15. 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

  16. 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*

    #work #sick #stubborn

  17. (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

  18. "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

  19. 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