Skip to content

Instantly share code, notes, and snippets.

View GeovaRS's full-sized avatar

Geová Ramalho dos Santos GeovaRS

View GitHub Profile
@burakorkmez
burakorkmez / colors.js
Last active October 14, 2025 13:26
React Native Bookworm COPY-PASTE List
// FOREST
const COLORS = {
primary: "#4CAF50",
textPrimary: "#2e5a2e",
textSecondary: "#688f68",
textDark: "#1b361b",
placeholderText: "#767676",
background: "#e8f5e9",
cardBackground: "#f1f8f2",
inputBackground: "#f4faf5",
@adrianhajdin
adrianhajdin / card.html
Created February 21, 2025 13:20
Tailwind CSS Dark Mode Card
<div class="m-10 rounded-lg bg-white px-6 py-8 shadow-xl ring-1 ring-slate-900/5 dark:bg-black">
<h3 class="text-base font-medium tracking-tight text-slate-900 dark:text-white">Writes Upside-Down</h3>
<p class="mt-2 text-sm text-slate-500 dark:text-blue-100">The Zero Gravity Pen can be used to write in any orientation, including upside-down. It even works in outer space.</p>
<button
id="toggleDark"
class="px-4 py-2 text-sm font-medium mt-8 text-blue-900 bg-blue-100 rounded-md"
onclick="document.body.classList.toggle('dark')"
>Toggle Dark Mode</button>
</div>
@bradtraversy
bradtraversy / git-cheat-sheet.md
Created January 6, 2025 17:16
Cheat Sheet for Git Crash Course

Git & GitHub Crash Course 2025 Cheat Sheet

What is Git?

Git is a distributed version control system that allows developers to:

  • Track changes in code.
  • Collaborate on projects.
  • Manage multiple versions of a project.
  • Work offline with a full local repository.
@AntonioErdeljac
AntonioErdeljac / blank-document.svg
Last active August 6, 2025 02:55
Template gallery assets
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@GeovaRS
GeovaRS / ambiente-dev-ubuntu-curso-python.sh
Created February 16, 2024 13:08 — forked from luizomf/ambiente-dev-ubuntu-curso-python.sh
Instalação ambiente dev Ubuntu 22 do curso de Python
#!/bin/bash
# Executar comandos a seguir para atualizar os pacotes
sudo apt update -y
sudo apt upgrade -y
# Só o Python
sudo apt install python3.10-full python3.10-dev -y
# Instalar pacotes a seguir
@adrianhajdin
adrianhajdin / index.css
Last active September 29, 2025 22:12 — forked from TidbitsJS/index.css
3D Portfolio Gists
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--blue-rgb: 237 245 255;
--green-rgb: 125 161 35;
}
@GeovaRS
GeovaRS / docker-compose.yml
Created April 11, 2023 09:40 — forked from hemilioaraujo/docker-compose.yml
Ambiente PHP -> Docker + PHP + MySql + VSCode
version: "3.7"
# Networks
networks:
# Internal network
internal:
driver: bridge
# Volumes
volumes:
@adrianhajdin
adrianhajdin / constants.js
Created March 3, 2023 09:28
Build and Deploy an Amazing 3D Web Developer Portfolio with ThreeJS | React Three Fiber
import {
mobile,
backend,
creator,
web,
javascript,
typescript,
html,
css,
reactjs,
@adrianhajdin
adrianhajdin / style.css
Created December 23, 2022 09:14
Build and Deploy Your Own ChatGPT AI Application That Will Help You Code
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@100;300;400;500;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Alegreya Sans", sans-serif;
}
body {
@ShariqAnsari88
ShariqAnsari88 / order.js
Created December 18, 2022 21:14
E-Commerce by JS Dev
("use strict");
const stripe = require("stripe")(process.env.STRIPE_KEY);
/**
* order controller
*/
const { createCoreController } = require("@strapi/strapi").factories;
module.exports = createCoreController("api::order.order", ({ strapi }) => ({
async create(ctx) {