Skip to content
View geovanygameros's full-sized avatar

Block or report geovanygameros

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
geovanygameros/README.md

Hey there! I'm Geovany Gameros👨‍💻

Developer, leader, friend and a passionate entrepreneur.

I'm a software engineer who is passionate about creating and designing high performance applications and micro-services. I've been a professional programmer for more than 8 years. Some of the technologies I love to work with are Ruby, ReactJS, and recently, React Native. I'm lately getting into serverless architectures and realtime capabilities.

I've been working as a Techical Leader in some organizations. Also, on my free time, I love creating, developing and testing ideas. I'm curently building an IoT brand and I hope my products disrupt the smart home's market being simple and affordable. Maybe tomorrow I'll get involved into ML algorithms or Big Data or whatever I find challenging. I think you've got the idea...

Check my website to know a little more about me.

Pinned Loading

  1. Install pg gem in Ruby on Rails with... Install pg gem in Ruby on Rails with Postgres app in mac
    1
    # Replace the pg version for the one you're triying to install and replace the path with version number of your Postgres app
    2
    # gem install pg -v [PG GEM VERSION] -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/[POSTGRES APP VERSION]/bin/pg_config
    3
    
                  
    4
    gem install pg -v '1.5.4' -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/15/bin/pg_config
  2. Nginx configuration for Ruby on Rail... Nginx configuration for Ruby on Rails app
    1
    server {
    2
        root /home/my_user/my_app/pubic;  # Specify rails app public directory
    3
        listen       80;
    4
        server_name  DOMAIN.COM  www.DOMAIN.COM;
    5
        try_files $uri/index.html $uri @app;
  3. Creates a dump specifying password f... Creates a dump specifying password for remote local or remote host
    1
    # Create the dump
    2
    
                  
    3
    In order to create a dump file from a PostgreSQL database, run the following command:
    4
    
                  
    5
    ```shell
  4. Restore local DB from dump in Postgr... Restore local DB from dump in PostgreSQL
    1
    In order to restore a PostgreSQL database from a dump file, run the following command:
    2
    
                  
    3
    `pg_restore --verbose --clean --no-acl --no-owner -h localhost -d [DATABASE_NAME] [DUMP_FILE_NAME]`
    4
    
                  
    5
    Just replace the variables with your current values e.g:
  5. iterm2-shortcuts-profile iterm2-shortcuts-profile Public

    iTerm2 profile with mapped MacOS shortcuts

    1