I hereby claim:
- I am balvinder294 on github.
- I am tekraze (https://keybase.io/tekraze) on keybase.
- I have a public key ASDABlNd8ywIvGd_SlH_qsL9JKh5jafX6U6Clj3SooNelwo
To claim this, I am signing this object:
| #author @tekraze | |
| import falcon | |
| import requests | |
| coalList = "https://gitlab.com/blurt/openblurt/coal/-/raw/master/coal.json" | |
| class CoalList: | |
| def on_get(self, req, resp): |
I hereby claim:
To claim this, I am signing this object:
| --- | |
| version: "2.0" | |
| services: | |
| web: | |
| image: balvinder294/react-resume:1.0.0 | |
| expose: | |
| - port: 80 | |
| as: 80 | |
| to: |
| --- | |
| version: "2.0" | |
| services: | |
| jenkins: | |
| image: jenkins/jenkins:lts-jdk11 | |
| expose: | |
| - port: 50000 | |
| to: | |
| - global: true |
| --- | |
| version: "2.0" | |
| services: | |
| web: | |
| image: linuxserver/taisun | |
| expose: | |
| - port: 3000 | |
| as: 80 | |
| to: |
| --- | |
| version: "2.0" | |
| services: | |
| web: | |
| image: ghcr.io/linuxserver/webtop | |
| env: | |
| - PUID=1000 | |
| - PGID=1000 | |
| - TZ=America/New_York |
| --- | |
| version: "2.0" | |
| services: | |
| web: | |
| image: ghcr.io/linuxserver/openssh-server | |
| expose: | |
| - port: 2222 | |
| as: 80 | |
| to: |
| /** | |
| * Get ZoomMeeting by Meeting id | |
| * | |
| * @param meetingId the id of meetting from Zoom | |
| * @return the meetingObjectDTO with meeting details | |
| */ | |
| @Override | |
| public ZoomMeetingObjectDTO getZoomMeetingById(String meetingId) { | |
| log.debug("Request to get single meeting by id {}", meetingId); | |
| String getMeetingUrl = "https://api.zoom.us/v2/meetings/" + meetingId; |
| import io.jsonwebtoken.Jwts; | |
| import io.jsonwebtoken.SignatureAlgorithm; | |
| import io.jsonwebtoken.security.Keys; | |
| /** | |
| * Request to list all meetings by userId/email of the user | |
| * | |
| * @param userIdOrEmail optional userId/email value | |
| * | |
| * @param meetingType scheduled/live/upcoming |
| import io.jsonwebtoken.Jwts; | |
| import io.jsonwebtoken.SignatureAlgorithm; | |
| import io.jsonwebtoken.security.Keys; | |
| import org.springframework.web.client.RestTemplate; | |
| import org.springframework.web.multipart.MultipartFile; | |
| import org.springframework.web.util.UriComponentsBuilder; | |
| import org.springframework.http.HttpEntity; | |
| import org.springframework.http.HttpHeaders; | |
| import org.springframework.http.HttpMethod; | |
| import org.springframework.http.ResponseEntity; |