Skip to content

Instantly share code, notes, and snippets.

View emmanuel-oliveira's full-sized avatar

Emmanuel emmanuel-oliveira

View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
,sourceCode,targetCode,mapType,sourceChar,sourceName,targetChar,targetName,sourceScript,targetScript
0,U+05AD,U+0596,MA,֭,HEBREW ACCENT DEHI,֖,HEBREW ACCENT DEHI,HEBREW,HEBREW
1,U+05AE,U+0598,MA,֮,HEBREW ACCENT ZINOR,֘,HEBREW ACCENT ZINOR,HEBREW,HEBREW
2,U+05A8,U+0599,MA,֨,HEBREW ACCENT QADMA,֙,HEBREW ACCENT QADMA,HEBREW,HEBREW
3,U+05A4,U+059A,MA,֤,HEBREW ACCENT MAHAPAKH,֚,HEBREW ACCENT MAHAPAKH,HEBREW,HEBREW
4,U+1AB4,U+06DB,MA,᪴,COMBINING TRIPLE DOT,ۛ,COMBINING TRIPLE DOT,OTHER,OTHER
5,U+20DB,U+06DB,MA,⃛,COMBINING THREE DOTS ABOVE,ۛ,COMBINING THREE DOTS ABOVE,OTHER,OTHER
6,U+0619,U+0313,MA,ؙ,ARABIC SMALL DAMMA,̓,ARABIC SMALL DAMMA,ARABIC,ARABIC
7,U+08F3,U+0313,MA,ࣳ,ARABIC SMALL HIGH WAW,̓,ARABIC SMALL HIGH WAW,ARABIC,ARABIC
8,U+0343,U+0313,MA,̓,COMBINING GREEK KORONIS,̓,COMBINING GREEK KORONIS,GREEK,GREEK
FROM python:3.11
#Definindo a pasta de inicio
WORKDIR /
#Criando uma pasta de trabalho e definindo como pasta de trabalho
RUN mkdir /src
WORKDIR /src
#Copiando os arquivos
COPY . .
@emmanuel-oliveira
emmanuel-oliveira / Dockerfile
Created November 18, 2023 21:27
Example dockerfile python flask ubuntu
# Configurando o ambiente
FROM ubuntu:20.04
# Atualizando e instalando pacotes
RUN apt-get update \
&& DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata \
&& apt-get -y install python3.8 python3-pip python3-venv wget curl \
libxml2-dev libxslt1-dev antiword unrtf poppler-utils pstotext tesseract-ocr \
flac ffmpeg lame libmad0 libsox-fmt-mp3 sox libjpeg-dev swig tesseract-ocr-por python3-dev \
unzip
Codec Aliases Languages
ascii 646, us-ascii English
big5 big5-tw, csbig5 Traditional Chinese
big5hkscs big5-hkscs, hkscs Traditional Chinese
cp037 IBM037, IBM039 English
cp273 273, IBM273, csIBM273 German New in version 3.4.
cp424 EBCDIC-CP-HE, IBM424 Hebrew
cp437 437, IBM437 English
cp500 EBCDIC-CP-BE, EBCDIC-CP-CH, IBM500 Western Europe
cp720 Arabic
PassengerId Survived Pclass Name Sex Age SibSp Parch Ticket Fare Cabin Embarked
1 0 3 Braund, Mr. Owen Harris male 22 1 0 A/5 21171 7.25 S
2 1 1 Cumings, Mrs. John Bradley (Florence Briggs Thayer) female 38 1 0 PC 17599 71.2833 C85 C
3 1 3 Heikkinen, Miss. Laina female 26 0 0 STON/O2. 3101282 7.925 S
4 1 1 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35 1 0 113803 53.1 C123 S
5 0 3 Allen, Mr. William Henry male 35 0 0 373450 8.05 S
6 0 3 Moran, Mr. James male 0 0 330877 8.4583 Q
7 0 1 McCarthy, Mr. Timothy J male 54 0 0 17463 51.8625 E46 S
8 0 3 Palsson, Master. Gosta Leonard male 2 3 1 349909 21.075 S
9 1 3 Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg) female 27 0 2 347742 11.1333 S
We can't make this file beautiful and searchable because it's too large.
,ID,Name,Age,Photo,Nationality,Flag,Overall,Potential,Club,Club Logo,Value,Wage,Special,Preferred Foot,International Reputation,Weak Foot,Skill Moves,Work Rate,Body Type,Real Face,Position,Jersey Number,Joined,Loaned From,Contract Valid Until,Height,Weight,LS,ST,RS,LW,LF,CF,RF,RW,LAM,CAM,RAM,LM,LCM,CM,RCM,RM,LWB,LDM,CDM,RDM,RWB,LB,LCB,CB,RCB,RB,Crossing,Finishing,HeadingAccuracy,ShortPassing,Volleys,Dribbling,Curve,FKAccuracy,LongPassing,BallControl,Acceleration,SprintSpeed,Agility,Reactions,Balance,ShotPower,Jumping,Stamina,Strength,LongShots,Aggression,Interceptions,Positioning,Vision,Penalties,Composure,Marking,StandingTackle,SlidingTackle,GKDiving,GKHandling,GKKicking,GKPositioning,GKReflexes,Release Clause
0,158023,L. Messi,31,https://cdn.sofifa.org/players/4/19/158023.png,Argentina,https://cdn.sofifa.org/flags/52.png,94,94,FC Barcelona,https://cdn.sofifa.org/teams/2/light/241.png,€110.5M,€565K,2202,Left,5,4,4,Medium/ Medium,Messi,Yes,RF,10,"Jul 1, 2004",,2021,5'7,159lbs,88+2,88+2,88+2,92+2,93+2,93+2,93+
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#include <stdio.h>
#include <string.h>
int main() {
int linhas = 2 , colunas = 2;
float matriz[linhas][colunas];
float soma = 0;
float somaLinhas[linhas];
float somaColunas[colunas];