Below is a list of Visual Studio Code extensions used in my development environment
-
Toggle Quotes
- Publisher: BriteSnow
- Identifier ID: britesnow.vscode-toggle-quotes
-
Error Lens
using namespace System.IO; | |
function Get-GistContent { | |
param ( | |
[Parameter(Position = 0, Mandatory = $true)] | |
[string] $gistId | |
) | |
# Define the Gist API URL using the provided gistId | |
$apiUrl = "https://api.github.com/gists/$gistId" |
:root { | |
--font-size-base: 16px; | |
--line-height-base: 1.5; | |
--color-text: #333; | |
--color-background: #fff; | |
--color-link: #0066cc; | |
--color-link-visited: #663399; | |
--color-border: #ccc; | |
--spacing-unit: 1rem; | |
color-scheme: light dark; |
/* Requires this extensions: | |
* Material Icon Theme - Philipp Kief | |
* Prettier - Prettier | |
* Rainglow - Dayle Rees | |
*/ | |
{ | |
"workbench.sideBar.location": "right", | |
"editor.linkedEditing": true, | |
"editor.guides.bracketPairs": true, | |
"editor.stickyScroll.enabled": true, |
{ | |
"workbench.sideBar.location": "right", | |
"editor.linkedEditing": true, | |
"editor.guides.bracketPairs": true, | |
"editor.stickyScroll.enabled": true, | |
"editor.cursorSmoothCaretAnimation": "on", | |
"terminal.integrated.env.windows": {}, | |
"files.autoSave": "afterDelay", | |
"editor.formatOnSave": true, | |
"editor.fontFamily": "'CaskaydiaCove Nerd Font',Consolas, 'Courier New', monospace", |
openapi: 3.0.0 | |
info: | |
version: 1.0.0 | |
title: First API | |
paths: | |
/first: | |
get: | |
responses: | |
"200": | |
description: "exito" |
swagger: '2.0' | |
info: | |
version: 1.0.0 | |
title: First API | |
paths: | |
/first: | |
get: | |
responses: | |
"200": | |
description: "exito" |
from mates import * | |
solucion = [] | |
numTest = 1000000 # Límite inferior | |
totalQueCumplen = 2 # Cuántos encuentra que cumplan la condición | |
while len(solucion) < totalQueCumplen: | |
if esPrimo(numTest) and esPrimo(sumarDigitos(numTest)): | |
solucion.append(numTest) | |
numTest += 1 #Siguiente número a probar |
def esPrimo(num): | |
if (isinstance(num,str) or num < 2 or num % 2 == 0) and num !=2: | |
return False | |
for divisor in range(3, num//2 + 1, 2): | |
if num % divisor == 0: | |
return False | |
return True |
# Built application files | |
/*/build/ | |
# Crashlytics configuations | |
com_crashlytics_export_strings.xml | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Gradle generated files |