• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    Our Vue Storefront “Proof of Concept” Experience

    Kürşat Kutlu Aydemir

    By Kürşat Kutlu Aydemir
    August 10, 2020

    Recently we experimented internally with integrating Vue Storefront and Magento 2.3. Vue Storefront is an open source Progressive Web App (PWA) that aims to work with many ecommerce platforms.

    What initially piqued our interest was the possibility of integrating Vue Storefront with the venerable ecommerce back-end platform Interchange, which many of our clients use. Vue Storefront’s promise of ease of integration with any ecommerce backend made us curious to see whether it would make a good modern front-end for Interchange.

    Since Vue Storefront seems to be most commonly used with Magento, we decided to start our experiment with a standard Vue Storefront/​Magento 2.3 proof-of-concept integration.

    PoC of Vue Storefront/​Magento 2.3

    OK, to be honest, at the beginning we blindly expected that Vue Storefront would be a copy/​paste front-end template solution that would fairly easily be made to work with its standard integration to a Magento backend. Sadly, this was not the case for us.

    Before beginning our journey here, to summarize the Vue Storefront integration with Magento let’s have a look at this diagram to see what components are included:

    VS Architecture

    Figure 1

    At first, we wanted to see how …


    vue javascript ecommerce interchange magento

    Downtown San Diego Liquid Galaxy

    Dave Jenkins

    By Dave Jenkins
    July 27, 2020

    We just installed a new Liquid Galaxy system for the Downtown San Diego Partnership in the conference room of their office in downtown San Diego (heh). As End Point continues to partner with public organizations, associations, and government agencies, the Liquid Galaxy is proving very effective for showing infrastructure projects, zoning districts, and, most importantly, public engagement with immersive data models. Downtown San Diego wanted to bring presentations and visualizations to a much larger canvas, and the Liquid Galaxy fit well with their open floor plan and large conference room.

    Downtown San Diego is tasked with promoting the development of the downtown corridor to their members and the wider public. They can now build some great presentations to fully leverage the 7 large screens showing 3D models of new developments, zoning maps superimposed directly on Google Earth, and with the 4K videos all programmed to show in sequenced scenes, or simply fly through the city with a 6-axis controller and iPad.

    This installation presented some unique challenges. The first was an asymmetric wall layout with a large flat wall, smaller angled wall, and an alcove that needed …


    visionport clients

    Job opening: Windows Systems Integrator

    Jon Jensen

    By Jon Jensen
    July 23, 2020

    This position has been filled. See our active job listings here.

    New York City East River & FDR Drive

    We are looking for a Windows systems integrator in the New York City metropolitan region to work with us.

    We are an Internet technology consulting company based in NYC, with 50 employees serving many clients ranging from small family businesses to large corporations. The company turns 25 years old this year!

    This is a consulting position, so excellent verbal and written communication, troubleshooting, and time management skills are required, along with a good sense for when to quickly escalate issues to resolve them efficiently as needed.

    Skills and tools

    You will need to have extensive experience in the Microsoft Windows ecosystem: the MS Windows OS, Windows networking, Active Directory management via Group Policies, MS Exchange Server, MS SQL Server, etc.

    The greater knowledge of and larger base of experience you have with these, the better:

    • Remote management & monitoring (RMM) systems, such as ConnectWise Manage and Automate
    • Mobile devices and mobile device management (MDM) systems, such as SOTI MobiControl, AirWatch, and MaaS360
    • VMware’s vSphere or Microsoft Hyper-V hypervisors
    • Managing firewall security policies, switches, and wireless access points (WAPs)
    • Storage …

    jobs-closed windows

    Deploying (Minecraft) Servers Automatically with Terraform

    Zed Jensen

    By Zed Jensen
    July 16, 2020

    Last year I bought an old Dell Optiplex on eBay to use as a dedicated Minecraft server for my friends and me. It worked well for a while, but when my university switched to online classes and I moved home, I left it at my college apartment and was unable to fix it (or retrieve our world save) when it failed for some reason. I still wanted to play Minecraft with friends, though, so I had to figure out a solution in the meantime.

    I’d previously used a basic DigitalOcean droplet as a Minecraft server, but that had suffered with lag issues, especially with more than two or three people logged in. Their $5 tier of virtual machine provides 1GB of RAM and 1 CPU core, so it shouldn’t be too much of a surprise that it struggled with a Minecraft server. However, more performant virtual machines cost a lot more, and I wanted to keep my solution as cheap as possible.

    I mentioned this to a co-worker and he pointed out that most companies don’t actually charge for virtual machines on a monthly basis; in reality, it’s an hourly rate based on when your virtual machine instance actually exists. So, he suggested I create a virtual machine and start my Minecraft server every time I wanted to play, …


    automation terraform cloud

    Random Strings and Integers That Actually Aren’t

    Josh Williams

    By Josh Williams
    July 2, 2020

    Rowntree’s Randoms sweets

    Image from Flickr user fsse8info

    Recently the topic of generating random-looking coupon codes and other strings came up on internal chat. My go-to for something like that is always this solution based on Feistel networks, which I didn’t think was terribly obscure. But I was surprised when nobody else seemed to recognize it, so maybe it is. In any case here’s a little illustration of the thing in action.

    Feistel networks are the mathematical basis of the ciphers behind DES and other encryption algorithms. I won’t go into details (because that would suggest I fully understand it, and there are bits where I’m hazy) but ultimately it’s a somewhat simple and very fast mechanism that’s fairly effective for our uses here.

    For string generation we have two parts. For the first part we take an integer, say the sequentially generated id primary key field in the database, and run it through a function that turns it into some other random-looking integer. Our implementation of the function has an interesting property: If you take that random-looking integer and run it back through the same function, we get the original integer back out. In other words…

    cipher(cipher(n)) == n
    

    …for any integer …


    postgres python tips

    Improving max() performance in PostgreSQL: GROUP BY vs. CTE

    David Christensen

    By David Christensen
    June 30, 2020

    Spice Baazar Photo by Maxpax, used under CC BY-SA 2.0, cropped from original.

    When working with large tables, even simple actions can have high costs to complete. What queries are acceptable for smaller tables can often be less than ideal when applied to large tables, so your specific choice of approach to a given problem becomes more important.

    Note: We are using PostgreSQL 12, which supports some nice features like parallel btree index building, which can speed up parts of this process compared to earlier versions. We are using the default settings for this, which lets PostgreSQL use up to 2 parallel backend workers to speed up some operations.

    Say you have a table table_a with multiple grouping fields field_a and field_b and you want to find the maximum value of another field field_c for each group.

    The direct approach is to do something like the following:

    SELECT field_a, field_b, max(field_c) FROM table_a GROUP BY 1,2;
    

    This is functional and very straightforward. However, even if you have an index on (field_a, field_b, field_c), this can end up taking quite a long time if the tables are large. Let’s look at an actual example and the numbers we use.

    First, let’s create our table:

    CREATE …

    postgres database

    Randomly spacing cron jobs

    Jon Jensen

    By Jon Jensen
    June 30, 2020

    bird footprints in snow

    Cron is the default job scheduler for the Unix operating system family. It is old and well-used infrastructure — it was first released 45 years ago, in May 1975!

    On Linux, macOS, and other Unix-like systems, you can see any cron jobs defined for your current user with:

    crontab -l
    

    If nothing is printed out, your user doesn’t have any cron jobs defined.

    You can see the syntax for defining the recurring times that jobs should run with:

    man 5 crontab
    

    Important in that document is the explanation of the space-separated time and date fields:

    field          allowed values
    -----          --------------
    minute         0-59
    hour           0-23
    day of month   1-31
    month          1-12 (or names, see below)
    day of week    0-7 (0 or 7 is Sunday, or use names)
    
    A field may contain an asterisk (*), which always stands for "first-last".
    

    For example, to make a job run every Monday at 3:33 am in the server’s defined time zone:

    33 3 * * 1 /path/to/executable
    

    Random interval scheduling

    Sometimes it may be good to schedule a cron job to run at a somewhat random time: generally not truly random, but maybe at an arbitrary time within a specified time range rather than at a specific recurring …


    sysadmin automation

    Job opening: PHP / JavaScript developer

    Jon Jensen

    By Jon Jensen
    June 29, 2020

    This position has been filled. See our active job listings here.

    waterfall and mountains

    We are looking for a PHP software engineer to work with us during business hours somewhere in the UTC-7 to UTC-4 time zones (U.S. Pacific to Eastern Time). This role can be full-time or part-time.

    We are an Internet technology consulting company based in New York City, with 50 employees serving many clients ranging from small family businesses to large corporations. The company turns 25 years old this year!

    Even before COVID-19 most of us worked remotely from home offices. We collaborate using SSH, GitHub, GitLab, chat, video conferencing, and of course email and phones.

    What you will be doing:

    • Develop new web applications and support existing ones for our clients
    • Work together with End Point co-workers and our clients’ in-house staff
    • Use your desktop OS of choice: Linux, macOS, Windows
    • Use open source tools and contribute back as opportunity arises

    What you bring:

    Professional experience developing and supporting web applications in these technical areas:

    • 5+ years of development with PHP and front-end JavaScript
    • Frameworks such as Symfony, Laravel, Magento and Vue.js, React, Angular
    • Databases such as PostgreSQL, MySQL, MongoDB, Redis, Solr, Elasticsearch, etc.
    • Security …

    jobs-closed php remote-work
    Previous page • Page 31 of 218 • Next page