Skip to content

Instantly share code, notes, and snippets.

View rogerfuentes's full-sized avatar

Roger Fuentes rogerfuentes

  • Luxury Presence
  • Mar del Plata, Argentina
View GitHub Profile
@rogerfuentes
rogerfuentes / concept-validated-2026-05-15.html
Last active May 16, 2026 01:49
YAI Audio Tracer — Concept Validated · POC closeout report · 2026-05-15
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>YAI Audio Tracer — Concept Validated · 2026-05-15</title>
<style>
:root {
--bg-deep: #14080F;
--bg-panel: #20121A;
@rogerfuentes
rogerfuentes / 2026-05-15-stakeholder.html
Last active May 15, 2026 21:06
YAI Audio Tracer — Stakeholder snapshot · 2026-05-15 · POC closeout
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>YAI Audio Tracer — Status · 2026-05-15 (Stakeholder · POC closeout)</title>
<style>
:root {
/* YAI POP brand palette (lifted from apps/web/src/styles/global.css). */
--bg-deep: #14080F;
@rogerfuentes
rogerfuentes / 2026-05-11-stakeholder.html
Last active May 11, 2026 19:15
YAI Audio Tracer — Stakeholder snapshot 2026-05-11 (POC track complete · public MVP-vision promo site live)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>YAI Audio Tracer — Status · 2026-05-11 (Stakeholder)</title>
<style>
:root {
/* YAI POP brand palette (lifted from apps/web/src/styles/global.css). */
--bg-deep: #14080F;
@rogerfuentes
rogerfuentes / clean-graphql.js
Created January 31, 2024 12:37 — forked from ManUtopiK/clean-graphql.js
Clean graphql response : Remove edges, node and __typename from graphql response
/**
* Remove edges, node and __typename from graphql response
*
* @param {Object} input - The graphql response
* @returns {Object} Clean graphql response
*/
const cleanGraphQLResponse = function(input) {
if (!input) return null
const output = {}
const isObject = obj => {
@rogerfuentes
rogerfuentes / xcrun_simctl_cheatsheet.md
Created November 17, 2023 04:55 — forked from patriknyblad/xcrun_simctl_cheatsheet.md
iOS Simulator Terminal Commands `$ xcrun simctl`

Managing iOS Simulators

List all simulators created

$ xcrun simctl list --json

Delete old and unavailable simulators

$ xcrun simctl delete unavailable
def create_sentry_release(app_id:)
commit = last_git_commit()
puts "Creating Sentry release for repo: #{SENTRY_REPO_NAME}@#{commit[:commit_hash]}"
puts "Version: #{app_id}@#{BUILD_VERSION}+#{BUILD_NUMBER}"
sentry_create_release(
auth_token: SENTRY_AUTH_TOKEN,
org_slug: SENTRY_ORG,
project_slug: SENTRY_PROJECT,
version: "#{app_id}@#{BUILD_VERSION}+#{BUILD_NUMBER}",
finalize: true