Skip to content

Instantly share code, notes, and snippets.

Formación de la LLC en Delaware

No necesitas ser un ciudadano o residente de los EE. UU. para formar una LLC en Delaware. Puedes utilizar un servicio de agente registrado en Delaware que manejará el proceso de registro. Este servicio presentará el Certificado de Formación ante la Oficina del Secretario de Estado de Delaware, pagará las tarifas de registro necesarias y te proporcionará una dirección de oficina registrada en Delaware. También necesitarás obtener un Número de Identificación del Empleador (EIN) del IRS, lo cual puede requerir la obtención de un Número de Identificación del Contribuyente Individual (ITIN) si no tienes un Número de Seguridad Social (SSN).

Establecimiento de la Compañía Subsidiaria en Perú

Deberás seguir la ley peruana en términos de establecer una compañía subsidiaria. Este proceso puede variar y puede requerir la asistencia de un abogado local. Asegúrate de entender las obligaciones fiscales y cumplir con las leyes locales en Perú. Para establecer una subsidiaria en Per

@eporroa
eporroa / Button.js
Created February 9, 2023 20:57
Component generated by ChatGPT in Vue, Angular, Svelte, React
/* Create a Vue3 component that displays a button that is set as an attribute, and toggle the background color from either black or pink */
const App = {
setup() {
const color = ref('black');
const handleClick = () => {
color.value = color.value === 'black' ? 'pink' : 'black';
};
return {
color,
handleClick
// helpful stuff for the console
console.clear();
console.log(new Date().toUTCString());
class EventEmitter {
listeners = {};
on(eventName, callbackFn) {
if(!this.listeners[eventName]){
this.listeners[eventName] = [];

En conclusión:

  • Si trabajas desde Perú, para el extranjero. Debes declarar el total de tus ingresos todos los meses, creando RxH sin RUC, imagino que poniendo en el concepto ejemplo: “pago mensual de Bairesdev” y siguiendo estos pasos https://www.gob.pe/1144-declaracion-y-pago-de-impuestos-a-sunat-personas-naturales-declarar-y-pagar-rentas-de-cuarta-categoria
  • No declarar como fuente extranjera a menos que el trabajo lo hayas hecho fuera (y tengas forma de demostrarlo) o tengas ingresos de otros tipos que no sea desarrollo de software.
  • Debido a la OCDE, los bancos van a compartir tus movimientos con los agentes en caso te quieran auditar.
  • Puedes pagar a un contador para hacer todo el proceso antes descrito .. O hacerlo por tu cuenta si lo pones en tu calendario
  • Hablar con algún funcionario de la SUNAT, que tenga peso y pueda aclarar las cosas
  • En la descripción yo pondría lo mismo que sale en el banco cuando recibes el billete … Así haya sido por servicios como PayPal, Veem o Payoneer Otro punto:
  • C
/*!
* typeahead.js 0.11.1
* https://github.com/twitter/typeahead.js
* Copyright 2013-2015 Twitter, Inc. and other contributors; Licensed MIT
*/
(function(root, factory) {
if (typeof define === "function" && define.amd) {
define("bloodhound", [ "jquery" ], function(a0) {
return root["Bloodhound"] = factory(a0);
@eporroa
eporroa / metrics.sh
Created February 12, 2018 22:15 — forked from bspaulding/metrics.sh
codebase metrics
# use noglob on zsh
# change file extensions where appropriate
# collect source file paths for analysis
find . -name "*.js" | grep -v "bower_components" | grep -v "node_modules" > source_files.txt
# number of files in project
wc -l source_files.txt
# number of lines by file
@eporroa
eporroa / docker_usb_guest_osx.md
Created January 27, 2017 20:30 — forked from stonehippo/docker_usb_guest_osx.md
Getting a USB device to show up in a Docker container on OS X

Getting a USB device to show up in a Docker container on OS X

Some background

I was trying to get the Arduino IDE to work inside a Docker container on OS X. I was able to get the IDE working (see Getting X11 GUI applications to work on OS X with Docker), but I could not figure out how to make the USB port for the Arduino visible.

The solution

I first tried to directly map hardware serial port into the Docker container, doing something like this:

@eporroa
eporroa / angular-2.md
Created March 28, 2016 22:21 — forked from marknorgren/angular-2.md
Building Web Apps with Angular 2
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="robots" content="noindex, nofollow">
<meta name="googlebot" content="noindex, nofollow">
<script type="text/javascript" src="/js/lib/dummy.js"></script>
<link rel="stylesheet" type="text/css" href="/css/result-light.css">
<style type="text/css">
template {

ffmpeg -i input -c:v libx264 -crf 23 -preset medium -c:a libfdk_aac -vbr 4 \ -movflags +faststart -vf scale=-2:720,format=yuv420p output.mp4

for f in *.MOV; do ffmpeg -i "$f" -vf scale=-2:480,format=yuv420p "${f%.MOV}.mp4"; done

for f in *.MOV; do ffmpeg -i "$f" -vf scale=-2:480,format=yuv420p convertido/"${f%.MOV}.mp4"; done