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
import pyautogui | |
import time | |
msgs = [ | |
"word1", "word2" | |
] | |
def send_message(message): | |
# Click at reply button |
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
const timeCol = Object.freeze({ | |
'8.00 - 8.30': 'B', | |
'8.30 - 9.00': 'C', | |
'9.00 - 9.30': 'D', | |
'9.30 - 10.00': 'E', | |
'10.00 - 10.30': 'F', | |
'10.30 - 11.00': 'G', | |
'11.00 - 11.30': 'H', | |
'11.30 - 12.00': 'I', | |
'12.00 - 12.30': 'J', |
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
version: '3.8' | |
services: | |
api: | |
build: | |
context: . | |
dockerfile: go-air.Dockerfile | |
volumes: | |
- .:/app | |
working_dir: /app | |
ports: |
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
package org.example; | |
import java.util.HashMap; | |
import java.util.Map; | |
public class Main { | |
public static void main(String[] args) { | |
int[] list = new int[3]; | |
list[0] = 50; | |
list[1] = 49; |
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
const express = require('express'); | |
const cors = require('cors'); | |
const app = express(); | |
app.use(cors({ | |
origin: '*', | |
methods: ['GET', 'POST', 'PUT', 'DELETE'], | |
})) | |
app.use(express.json()); |
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
#include <stdio.h> | |
#include <stdlib.h> | |
typedef struct node { | |
int data; | |
struct node *next; | |
struct node *prev; | |
} Node; | |
typedef struct stack { |
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
#include <stdio.h> | |
#include <stdlib.h> | |
typedef struct _studentScore { | |
float firstSubject; | |
float secondSubject; | |
float thirdSubject; | |
float allSubject; | |
} StudentScore; |
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
Table users { | |
id int | |
email varchar | |
social_id varchar | |
lastname varchar | |
firstname varchar | |
role enum | |
created_at datetime | |
updated_at datetime | |
deleted_at datetime |
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
#include <iostream> | |
#include <iomanip> | |
using namespace std; | |
typedef struct { | |
int no; | |
string name; | |
int level; | |
} Patient; |
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
#include <stdio.h> | |
typedef struct { | |
int id; | |
float score; | |
char name[50]; | |
} Review; | |
float findAvg(Review review[], int size) { | |
float sum = 0; |
NewerOlder