Skip to content

Instantly share code, notes, and snippets.

View ArturGuedes's full-sized avatar

Artur ArturGuedes

View GitHub Profile
@ArturGuedes
ArturGuedes / modal.json
Last active February 14, 2025 18:13
modal.json
{
"name": "modal",
"title": "Hello World",
"description": "A simple hello world component.",
"type": "registry:ui",
"author": "Artur Guedes <[email protected]>",
"docs": "Remember to add the FOO_BAR environment variable to your .env file.",
"registryDependencies": [
"button"
],
/**
 * Import data from a public API.
 * =ImportAPI("https://jsonplaceholder.typicode.com/users/1";"company.name")
 *
 * @param {url} the URL to a public API
 * @param {jsonPath} get response value using a json-like path
 * 
 * @return a value according to jsonPath param
 * @customfunction
@ArturGuedes
ArturGuedes / semantic-commit-messages.md
Last active February 4, 2021 17:45 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@ArturGuedes
ArturGuedes / settings.json
Last active May 8, 2020 18:23
VSCode Settings
{
"window.zoomLevel": 0,
"breadcrumbs.enabled": true,
"editor.fontSize": 13,
"editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnPaste": false,
"editor.minimap.enabled": false,
"editor.minimap.maxColumn": 20,
@ArturGuedes
ArturGuedes / InstallFlaskServer.bat
Created May 31, 2018 17:20
Batch file to install Python and Flask Server
:: Name: InstallFlaskServer.bat
:: Purpose: Batch file to install Python and Flask Server
:: Author: Artur Guedes (arturguedes.github.io)
:: Version: 1.0.0
CLS
@ECHO OFF
TITLE Install Flask
echo.
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
@ArturGuedes
ArturGuedes / Jupyter on C9.md
Last active May 22, 2018 01:55
Jupyter on C9.io with Miniconda

Jupyter on C9.io with Miniconda

Step-by-Step Command Lines for Installing the Jupiter Notebook on the C9.io with Miniconda.

Install Miniconda3

$ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

$ chmod a+x Miniconda3-latest-Linux-x86_64.sh