{
"success": true,
"message": "User account created.",
"data": {
"access_token": "JWT-TOKEN",
"token_type": "bearer",
"expires_at": "2025-02-01 22:19:48"
"user": {
"id": "01ARZ3NDEKTSV4RRFFQ69G5FAV",
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ######################### | |
# Frontend service | |
# ######################### | |
# node:22-alpine version should be in sync with compatible react,next,react-dom verions in frontend/package.json | |
# Stage 1: Build | |
FROM node:22-alpine AS insights-frontend-builder | |
WORKDIR /app | |
# install frontend dependencies before copying the frontend code | |
# into the container so we get docker cache benefits |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG goversion=1 | |
ARG alpineversion=3.20.3 | |
ARG argocdversion=v2.12.6 | |
######################### | |
# Base builder | |
######################### | |
FROM golang:${goversion}-alpine3.20 AS builder-base | |
WORKDIR /core | |
RUN apk --no-cache --update add \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Aws\Sns\SnsClient; | |
use Aws\Exception\AwsException; | |
/** | |
* Sends a text message (SMS message) directly to a phone number using Amazon SNS. | |
* | |
* This code expects that you have AWS credentials set up per: | |
* https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_credentials.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"connector.class": "io.confluent.connect.jdbc.JdbcSinkConnector", | |
"transforms.TimestampConverter1.target.type": "Timestamp", | |
"transforms.TimestampConverter2.target.type": "Timestamp", | |
"connection.password": "xxxxxxxxx", | |
"transforms": "RenameField1,RenameField2,TimestampConverter1,TimestampConverter2", | |
"transforms.TimestampConverter1.type": "org.apache.kafka.connect.transforms.TimestampConverter$Value", | |
"transforms.RenameField1.type": "org.apache.kafka.connect.transforms.ReplaceField$Value", | |
"transforms.TimestampConverter2.type": "org.apache.kafka.connect.transforms.TimestampConverter$Value", | |
"insert.mode": "upsert", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Kodeeo Limited is looking for a Frontend Developer (JS/React.js). | |
### Must have: | |
- Solid understanding of JS/ES6+ | |
- Solid understanding of React.js and related tools | |
- At least 1+ year of working experience with React.js | |
- Experience with Functional Component(s) and Hook(s) | |
- Experience with at least one state management solution (Redux Toolkit/Zustand/Recoil) | |
- Experience with consuming REST API |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/systemd/system/url-shortener.service | |
``` | |
[Unit] | |
Description=url-shortener | |
Wants=network.target | |
After=network.target | |
[Service] | |
Type=simple |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
age>=24,<30 | |
islamic==100 | |
honest==100 | |
polite==100 | |
education=="graduate" | |
height>=163cm | |
weight<60 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace ${NAMESPACE}; | |
/** | |
* ${NAME} | |
* | |
* @author Muhammad Sumon Molla Selim <[email protected]> |
NewerOlder