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
| <!DOCTYPE html> | |
| <html lang="pt-br"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Internal Email Communication Analysis</title> | |
| <link | |
| rel="stylesheet" | |
| href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/4.4.0/chart.min.css" | |
| /> |
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
| RewriteEngine On | |
| RewriteCond %{HTTPS} off | |
| RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="refresh" content="0; url=https://njsharingnetwork.org"> | |
| <title>Redirecting...</title> | |
| <!-- Google Analytics --> | |
| <script async src="https://www.googletagmanager.com/gtag/js?id=UA-48837128-1"></script> | |
| <script async src="https://www.googletagmanager.com/gtag/js?id=UA-48837128-1"></script> | |
| <script> |
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
| bumblebee | |
| Chave ssh | |
| bumblebee-b127 | |
| Nome da Chaves | |
| bumblebee_key | |
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 { | |
| Injectable, | |
| CanActivate, | |
| ExecutionContext, | |
| UnauthorizedException, | |
| } from '@nestjs/common'; | |
| import { JwtService } from '@nestjs/jwt'; | |
| import { PrismaService } from '../prisma/prisma.service'; | |
| import { AuthType } from './auth.type'; |
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 { merge } = require('webpack-merge'); | |
| const config = require('./webpack.config'); | |
| const path = require('path'); | |
| module.exports = merge(config, { | |
| mode: 'production', | |
| output: { | |
| path: path.join(__dirname, 'public'), | |
| }, | |
| }); |
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 { merge } = require('webpack-merge'); | |
| const config = require('./webpack.config'); | |
| const path = require('path'); | |
| module.exports = merge(config, { | |
| mode: 'development', | |
| devServer: { | |
| static: { | |
| directory: path.join(__dirname, 'public'), | |
| }, |
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
| module.exports = { | |
| entry: './public/assets/scripts/src/index.ts', | |
| resolve: { | |
| extensions: ['.ts', '.js'], | |
| }, | |
| module: { | |
| rules: [ | |
| { | |
| test: /\.s[ac]ss$/i, | |
| use: [ |
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
| // Algumas informações importantes sobre JavaScript e TypeScript. | |
| //JavaScript - Depende do contexto. Linguagem poderosa e adaptável, multiparadigma. | |
| // JavaScript - Comumente usado dentro de um navegador de internet(V8, Webkit, Blink). | |
| // Javascript - Comumente usado em servidores. (Node.js) | |
| // Javascript - Comumente usado em aplicações desktop. (Electron) | |
| // Javascript - Comumente usado em aplicações mobile. (React Native (Expo)- Swift - Java ou Kotlin) | |
| // Javascript - Comumente usado em aplicações de realidade aumentada. (AR.js) |
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 Head from 'next/head'; | |
| import { Page } from '../../components/LayoutDefault'; | |
| import Button from '@mui/material/Button'; | |
| import Link from 'next/link'; | |
| import styled from '@emotion/styled'; | |
| import { themeLight } from '../../src/themes'; | |
| import CheckPlus from '../../components/images/icons/CheckPlus'; | |
| import { NextPage } from 'next'; | |
| import { GetStaticPropsGlobal } from '../../utils/getStaticPropsGlobal'; | |
| import { Layout } from '../../providers/Layout'; |
NewerOlder