Skip to content

Instantly share code, notes, and snippets.

View talilotarlison's full-sized avatar
📘
Learning Programming

Talilo Tarlison talilotarlison

📘
Learning Programming
View GitHub Profile
@talilotarlison
talilotarlison / git.md
Created October 22, 2023 22:59 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

[
{
"titulo-do-filme": "2012",
"usuario": "funwsin",
"critica": "The 2012 idea offered a great opportunity to make a true global disaster movie. The plot is imbecile. The characters are black and white. Typical stereotyping. Except for the White House staff. They are, of course, morally pure. The effects are good, but there are very few scenes with actual destruction and hi-tech effects. If the movie were an hour shorter,it would have been better and the story would be more fluent. The personal relationships took most of the suspense out of the movie. The dialogues are idiotic and simply annoying. Nobody in the Universe would talk like those pathetic characters in a global meltdown.The film is full of standard characters. Everything is so predictable. The main characters miraculously survive disasters, land in high mountains and get saved in the last millisecond. 20-30 minutes of superior effects cannot compensate for shallow story and unrealistic characters.",
},
{
"titulo-do-filme": "V
@cami-la
cami-la / resumo_POO.md
Last active April 23, 2024 09:23
Resumo Sobre o Paradigma de Programação Orientado a Objetos

📚 Paradigma de Programação Orientado a Objetos (POO)

✨ LINGUAGEM DE PROGRAMAÇÃO

É uma linguagem formal que, através de uma série de instruções, permite que um programador escreva um conjunto de ordens, ações consecutivas, dados e algoritmos para criar programas que controlam o comportamento físico e lógico de uma máquina.

✨ LIGUAGEM DE PROGRAMAÇÃO JAVA

  • Java é uma linguagem de programação orientada a objetos desenvolvida na empresa Sun Microsystems e posteriormente adquirida pela Oracle em 2008.
  • Tornou-se popular pelo seu uso na internet e está presente em navegadores, programas e jogos de computador, celular, calculadoras, etc...
@talilotarlison
talilotarlison / cv-completo.html
Created March 30, 2022 21:17 — forked from nunomazer/cv-completo.html
exemplo de html com css utilizando dados de um curriculo vitae
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Curriculo Vitae</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
@AlexandreQuintela
AlexandreQuintela / Markdown.md
Created December 4, 2019 11:12
Markdown Tutorial

Markdown Tutorial

Olá, bem vindos ao meu tutorial de Markdown.
Neste tutorial você aprenderá o básico sobre Markdown. Versão em espanhol disponível aqui.


Tabelas de conteúdo

  1. O que é Markdown?
@bladeSk
bladeSk / SQLite-PHP-quickstart.php
Last active April 30, 2024 04:16
SQLite3 PHP Quickstart Tutorial
<?php
// This file walks you through the most common features of PHP's SQLite3 API.
// The code is runnable in its entirety and results in an `analytics.sqlite` file.
// Create a new database, if the file doesn't exist and open it for reading/writing.
// The extension of the file is arbitrary.
$db = new SQLite3('analytics.sqlite', SQLITE3_OPEN_CREATE | SQLITE3_OPEN_READWRITE);
// Errors are emitted as warnings by default, enable proper error handling.
@DavidWells
DavidWells / reset.css
Last active May 4, 2024 20:04 — forked from karbassi/reset.css
CSS reset. Follow me on the twitters for more tips: https://twitter.com/davidwells
/* http://meyerweb.com/eric/tools/css/reset/
v2.0-modified | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@leocomelli
leocomelli / git.md
Last active May 13, 2024 00:31
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@nunomazer
nunomazer / cv-completo.html
Last active April 10, 2024 23:25
exemplo de html com css utilizando dados de um curriculo vitae
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Curriculo Vitae</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>