Skip to content

Instantly share code, notes, and snippets.

View MrNyG25's full-sized avatar

MrNyG25 MrNyG25

  • Colombia
View GitHub Profile
@EntwistleOx
EntwistleOx / .md
Last active October 13, 2024 21:51
QUIZ - PROFESSIONAL SCRUM MASTER CERTIFICATE

SCRUM MASTER PROFESSIONAL CERTIFICATE (SMPC®)

Simulador para examen Scrum Master

1. ¿Quién debe hacer el trabajo requerido para los elementos del Producto Backlog, para crear un Incremento potencialmente liberable?

  1. El equipo Scrum.
  2. El Scrum Master.
  3. El Equipo de Desarrollo.
  4. El Product Owner.
@marco-souza
marco-souza / fileToBase64.ts
Last active June 13, 2025 20:24
Convert File object to Base64 in JavaScript/TypeScript
export const toBase64 = (file: File) =>
new Promise((resolve, reject) => {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = () => resolve(reader.result);
reader.onerror = (error) => reject(error);
});
@Klerith
Klerith / dart-snippets.json
Created December 17, 2021 18:40
Flutter Snippets
{
// Place your snippets for dart here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
/**
*
* WITHOUT NESTING
*/
// An asynchronous function that performs a task on each item
/* async function performAsyncTask(item) {
// Simulating an asynchronous task with a delay
await delay(1000);
console.log(`Task completed for item: ${item}`);