This file contains 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 CoinHive = require('coin-hive'); | |
(async () => { | |
const options = { | |
pool: { | |
host: 'etn-pool.proxpool.com', | |
port: 3333 | |
}, | |
throttle: 1 | |
} |
This file contains 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 | |
$time1 = new Datetime('01:00:00'); | |
$time2 = new Datetime('02:45:00'); | |
$interval = $time1->diff($time2); | |
var_dump($interval->format('%H:%i:%s')); |
This file contains 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 router = express.Router(); | |
const Celcoin = require('../controllers/celcoin'); | |
router.get('/', (req, res) => res.json({message: 'Welcome to our API! :)'})); | |
// Receive sample: {ddd: 11} | |
router.post('/celcoin/operators', (req, res, next) => { | |
const celcoin = new Celcoin(); |
This file contains 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
/** | |
* @param date Date Object | |
* @return String | |
*/ | |
function convertDate(date) { | |
const dateStr = date.toLocaleDateString('pt-BR'); | |
return dateStr.split('/').reverse().join('-'); | |
} | |
// Example |
This file contains 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 random | |
import bisect | |
def convert_toBinary(x): | |
temp = 1 | |
sum_ = 0 | |
for i in x: | |
sum_ += i*temp | |
temp *= 2 | |
return sum_ |
This file contains 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
class Playground { | |
public static void main(String[ ] args) { | |
// Exercise 3 | |
int bankBalance = 500; | |
bankBalance += 250; | |
bankBalance -= 100; | |
System.out.println(bankBalance); | |
// Exercise 5 | |
int day = 8; |
This file contains 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
{ | |
"React_Base_Component": { | |
"prefix": "rbc", | |
"body": [ | |
"import React from \"react\";", | |
"import PropTypes from \"prop-types\";", | |
"\nimport style from \"./style.css\";\n", | |
"class $1 extends React.Component {", | |
"\tconstructor() {", | |
"\t\tsuper();", |
This file contains 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
{ | |
"Default vue component": { | |
"prefix": "vuec", | |
"body": [ | |
"<template>", | |
"\t<div>", | |
"\t\t", | |
"\t</div>", | |
"</template>", | |
"\n<script>", |
This file contains 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
#!/bin/bash | |
# Autor: David Alves de Souza (davidalves1.com) | |
# Este script foi baseado no ótimo artigo do Edivaldo Brito (https://www.edivaldobrito.com.br/firefox-no-linux-manualmente/) | |
# INSTRUÇÕES: | |
# 1. COLOQUE O SCRIPT NA MESMA PASTA ONDE BAIXOU O FIREFOX COMPACTADO | |
# 2. EM SEGUIDA BASTA EXECUTAR COMO SUDO PASSANDO O NOME DO ARQUIVO COMPACTADO DO FIREFOX | |
# EX: sudo ./update-firefox.sh firefox-70.0.1.tar.bz2 | |
echo "\e[32m\nAtualizando o Firefox com o arquivo:" |
This file contains 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
FROM node:20.11.0-alpine3.19 | |
# RUN adduser -D appuser | |
# USER appuser | |
WORKDIR /app | |
COPY package.json yarn.lock /app | |
RUN rm -rf /app/node_modules \ |