Skip to content

Instantly share code, notes, and snippets.

View ninosimeon's full-sized avatar

Nino Simeon ninosimeon

  • Lima, Peru
View GitHub Profile

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
@Gazzell
Gazzell / .eslintrc
Last active January 31, 2024 18:28
React, typescript, use craco to set custom tests paths and import aliases
{
"extends": [
"eslint-config-react-app"
],
"plugins": ["react", "import"],
"rules": {
"import/no-unresolved": "error"
},
"settings": {
"import/parsers": {
#Multi-stage YAML pipeline demo.
name: $(BuildDefinitionName).$(DayOfYear)$(Rev:.r)
variables:
- group: terraform_binary # variable group containing Terraform information like the Terraform version (like terraform_version)
- name: vmImageName
value: 'ubuntu-latest'
- name: backend_main_secret_file_id1 # secret file used by the following cmdlet Terraform init, plan, apply and destroy
value: 'backend-main-jdld-1.json'
- name: ArtifactName
@ErikAndreas
ErikAndreas / build.yml
Last active April 18, 2021 20:59
Static angular site Azure DevOps pipeline Static web site deploy to Azure blob GPv2. Define variables (jsonpath) for file transform
pool:
vmImage: Hosted Ubuntu 1604
demands: npm
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
# Node.js with Angular
# Build a Node.js project that uses Angular.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
pool:
vmImage: 'Ubuntu-16.04'
trigger: none
@mrx06
mrx06 / uninstall paragon ntfs 15 full
Created September 3, 2018 17:17
full uninstall paragon ntfs 15 (reset trial)
sudo rm -rf "/Library/Application Support/Paragon Software/"
sudo rm /Library/LaunchDaemons/com.paragon-software.installer.plist
sudo rm /Library/LaunchDaemons/com.paragon-software.ntfs.loader.plist
sudo rm /Library/LaunchDaemons/com.paragon-software.ntfsd.plist
sudo rm /Library/LaunchAgents/com.paragon-software.ntfs.notification-agent.plist
sudo rm -rf /Library/Filesystems/ufsd_NTFS.fs/
sudo rm -rf /Library/PrivilegedHelperTools/com.paragon-software.installer
sudo rm -rf /Library/Extensions/ufsd_NTFS.kext/
sudo rm -rf /Library/PreferencePanes/ParagonNTFS.prefPane
@ninosimeon
ninosimeon / 99-custom-dev.conf
Last active April 3, 2023 05:21
PHP 7.1 Tweaks
// PATH : /etc/php/7.1/fpm/conf.d
expose_php = Off
serialize_precision = 17
max_execution_time = 180
max_input_time = 180
max_input_vars = 99999
memory_limit = 2G
@deividaspetraitis
deividaspetraitis / lumen-filesystem.md
Created October 19, 2017 09:36
Lumen flysystem ( filesystem ) integration

Lumen flysystem integration

By default lumen doesn't support laravel file system. In order to integrate to lumen we need follow these instructions:

  1. composer require league/flysystem
  2. Copy filesystems config file from Laravel ( https://github.com/laravel/laravel/blob/master/config/filesystems.php ) to your local Lumen installation document_root/config
  3. Bind filesystem to IoC for example in document_root/bootstrap/app.php by adding this code lines:

`` $app->singleton('filesystem', function ($app) {

@jamigibbs
jamigibbs / calcfunctions.js
Last active February 3, 2023 09:00
Calculating With Functions. eg. seven(times(five()));
function makeNum(num, func) {
if (func === undefined) {
return num;
} else {
return func(num);
}
}
function zero(func) {
return makeNum(0,func);
@plentz
plentz / nginx.conf
Last active May 10, 2024 03:20
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048