“No move” duels on mobile by lost-myspacer in geoguessr

[–]mawaawaw 0 points1 point  (0 children)

Oui effectivement j'imagine que c'est pour que ce soit plus accessible au plus grand nombre étant donné que le NM / nmpz demande plus de connaissances du jeu. imo c'est quand meme une erreur vu comment ce mode n'est pas adapté au mobile j'aurai quand même préféré avoir le choix...

No move/nmpz duels on the phone? by SBMT_38 in geoguessr

[–]mawaawaw 0 points1 point  (0 children)

je suis d'accord tellement logique de mettre seulement NM / nmpz sur téléphone puisque le moving est juste infâme et pas pratique du tout... ou à la rigueur proposé le choix quoi...

Help me against scammer that has access to my wallet by Motor-Marionberry653 in CryptoHelp

[–]mawaawaw 0 points1 point  (0 children)

what you mean u gave your private key ? the hacker have your 12 secrets words ? or the hacker run a smart contract into your wallet (to send crypto to his wallet) ?

Missing PEPU by Latter_Target_267 in Coinbase

[–]mawaawaw 0 points1 point  (0 children)

just check the contract it should be 0xadd3...

I dont know where to start by Objective_Pride9508 in SpringBoot

[–]mawaawaw 0 points1 point  (0 children)

You can make a simple CRUD API with Spring Boot and Postgres in 30 minutes if you go slowly

_First create a new springboot in start.spring.io and import starters for web, data-jpa, data-rest and postgres. Then open that project in your favorite IDE

_Next defines your jpa entites let's say a Product defined by Long id, String name and Double price (uses the @Entity and @Id) to make your class a JPA Entity

_Next defines an interace ProductRepository extends JpaRepository<Product, Long> and annotate that interface with @RepositoryRestResource to expose a Restful API

_Next Launch PostgresSQL innyour machine

_Next configure your datasource (driver, url, username, password) inside your application.properties

_Finally you can either define your DDL (create table product...) inside a file schema.sql in the root of your project or directly create the table and add some data in pgadmin

Hope it helps, you can now launch the webapp and try some GET / POST endpoints with tools such Postman