• 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

    Media erasure in the time of SSD

    Ardyn Majere

    By Ardyn Majere
    December 10, 2020

    Photo by Alex Fu from Pexels

    How valuable is your data? Losing it to a third party is usually a business’s worst nightmare—​and can cause legal or even criminal repercussions, depending on the drive’s contents and the business’s jurisdiction.

    Every system adminstrator worth their salt knows that running “rm” (or equivalent delete operations) doesn’t actually remove data, it simply removes the file name from the filesystem and leaves the data in place on the disk.

    When dealing with traditional storage, destroying (intentionally or otherwise) your data used to be relatively easy. A wise system admin could simply run:

    shred /dev/sda
    

    And be fairly certain of the result. A cautious one might run a demagnetizing wand over the drive. Only the most paranoid might destroy it physically.

    The Age of SSDs

    Nowadays, most servers have switched away from storing data on rotating metal or glass platters. Solid state drives, or SSDs, are faster, less prone to errors from physical impact, and generally more sought after.

    SSDs have issues with speed if the drives are too full, and have a limited lifespan—​only a certain number of write operations can be achieved. This is less of an issue with modern …


    security storage

    Vue 3 is out with exciting new features

    Bimal Gharti Magar

    By Bimal Gharti Magar
    December 8, 2020

    Space Shuttle launch Photo courtesy of NASA

    Vue 3 was officially released on September 18, 2020 with improved performance and some exciting new features.

    Composition API

    The Composition API is one of the most significant changes. It helps with logically grouping related fragments of components. In Vue 2, we used the Options API to pass various options during component configuration:

    // src/components/ProductList.vue
    <template>
      <div class="child">
        <h3>Vue2</h3>
        <div>
          <div class="add-product">
            <h2>Add Product</h2>
            <div>Name: <input name="name" v-model="newProduct.name" /></div>
            <div>Price: <input name="name" v-model="newProduct.price" /></div>
            <button @click="addProduct">Add</button>
          </div>
          <div class="search-product">
            <h2>Search Product</h2>
            <input name="name" v-model="filterText" placeholder="Start typing to search" />
          </div>
        </div>
        <div class="list-product">
        <h1 …

    vue frameworks javascript

    3D Audio Fundamentals

    Matt Vollrath

    By Matt Vollrath
    December 5, 2020

    Concert hall acoustics Photo by PT Russell on Unsplash

    It’s easy to prove to yourself that you need two eyes to perceive how far away things are in the world around you. Shut one eye and the world appears flat. This ability is called stereoscopic vision. A lesser-known exercise is proving that you also need two ears to perceive which direction a sound is coming from. Shut one ear and the world outside your vision is harder to track. This ability is called binaural hearing.

    As VR technology continues to push the boundaries of sight immersion with increasing accessibility, sound reproduction has not lagged behind. In fact, the consumer hardware needed for sound immersion has been accessible for decades. By leveraging 3D audio techniques, a pair of headphones can be turned into the aural equivalent of a VR headset.

    The magic of stereophonic audio reproduction was first demonstrated in 1881 when French inventor Clément Ader connected microphones on the stage of the Paris Opera to listening rooms in the Palais de l’Industrie through telephone lines, where visitors experienced remote live performances on pairs of receivers. The exhibit was extremely popular and got a glowing review in Scientific American.

    The …


    audio

    Demonstrating the QuickBooks Desktop SDK

    Daniel Gomm

    By Daniel Gomm
    December 4, 2020

    Rock arch Photo by Clarisse Meyer

    Is your client or company thinking about switching to QuickBooks? If so, you might be discovering that migrating your existing financial and sales data out of your old system and into QuickBooks is both time consuming and tedious. You might even have an existing ecommerce site or database with tons of data and no clear way of getting the orders into QuickBooks without manual entry.

    Recently I was tasked with solving this problem. Our client needed to migrate data from an existing MySQL database into QuickBooks, and automatically add orders from our ecommerce site directly into QuickBooks going forward.

    In this article I’ll go over how to use the QuickBooks Desktop SDK (also referred to as QBFC for “QuickBooks Foundation Classes” in the API documentation) to send and receive data from QuickBooks.

    QuickBooks primer for developers

    For the uninitiated, QuickBooks is an accounting software made by Intuit. It can be used to manage lots of data, including lists of customers, inventory items, sales orders, and invoices. All of this data is stored in a “company file”, which is a file with a .qbw extension that uses a proprietary data format. This file gets created …


    csharp dotnet

    A great gift for the holidays: No ads!

    Ardyn Majere

    By Ardyn Majere
    December 3, 2020

    Pi-hole logo

    Many people will bring home a pie during the holiday season, but perhaps you’ll find a place in your home network for a Raspberry Pi instead?

    With more people than ever working from home, many more people are using their personal infrastructure to conduct business, and aren’t able to rely on a crack team of network engineers to make sure their system is secure. While there are many things one can do to improve network security, from using a VPN to ensuring you update your system, a Pi-hole is one quick, inexpensive way to help keep your network a little safer not just on your phone or laptop, but on every device that connects to your router.

    It’s great not only for technical types, but for everyone who connects to your network. You can even set it up with remote access and gift it to a relative, as long as you’re willing to fix it if it breaks. With the holiday season coming up, it’s surely something to consider.

    Shut the door with Pi-hole

    Pi-hole is an open source DNS server for your local network which blocks advertising and, after adding some extra block lists, some malicious websites.

    This is done before the data even gets downloaded, by redirecting requests for ads and …


    linux security networking

    Svelte: A compiled JavaScript front-end framework

    Kevin Campusano

    By Kevin Campusano
    December 2, 2020

    Svelte banner

    It seems like JavaScript frameworks are a dime a dozen these days. In the JavaScript world, there are frameworks and libraries for almost every task that you can imagine, and there is much overlap. In the front-end web development area though, there are three who reign supreme: Angular, React, and Vue.js. Whether you’re building single-page apps or traditional web apps with some front-end zest, you can’t go wrong with any of these three.

    Recently though, I discovered a new player in this field that promises to offer a similar developer experience to existing frameworks with great performance gains. Its name is Svelte, and it achieves this promise in a very interesting way: it’s a compiler.

    This is a novel approach to the front-end web development problem. While traditional front-end frameworks are libraries with runtime components that get loaded and executed in the browser, Svelte itself only runs at development/​build time, on your development machine. Svelte takes the JavaScript components that we write, compiles them into pure, lean JavaScript and emits only that to the browser. No big library, or runtime, or interpretation of components ever happens in the browser. It doesn’t …


    javascript development frameworks

    Advanced WordPress customizations

    Juan Pablo Ventoso

    By Juan Pablo Ventoso
    November 27, 2020

    WordPress

    Photo by Chris Harrison on Flickr, CC BY 2.0, cropped

    WordPress is the most popular CMS, allowing you to create a professional-looking website at a relatively low cost. It also has a really strong community behind it, creating great content and supporting developers across the world.

    But being popular also means being the main target of hacker attacks, and that’s why it’s crucial to keep the CMS, the theme, and all the plugins updated. When the requirements go beyond what WordPress offers on the surface, we need to find an efficient way to add our custom logic into the CMS without interfering with version upgrades, keeping the focus on security.

    Custom CSS and JavaScript

    A pretty common scenario in WordPress consists of installing a theme that fits most of our requirements and writing an extra layer of functionality over it to get that custom look and user experience we are looking for. Updating the theme files means that we cannot easily upgrade or change the theme without backing up our changes, and then restoring them after the upgrade, so that’s definitely not a good approach.

    To make our way around this issue, some themes offer a section to add custom JavaScript or CSS rules. …


    wordpress php cms

    Demonstrating the HotSwap JVM

    Josh Tolley

    By Josh Tolley
    November 25, 2020

    zebras

    Photo by Neil and Zulma Scott

    For a recent Java development project I spent a while setting up an environment to take advantage of the HotSwap JVM, a Java virtual machine that automatically reloads classes when they change. This feature can potentially eliminate the need to redeploy each time code changes, reducing development cycle time considerably. While setting up the environment, I found I wanted a simple example of hot swapping available for my own experimentation, and I thought I’d share that example here.

    First, let’s create a simple Java program. It needs to be slightly more complex than the ubiquitous “Hello, World!” application, because we need it to keep running for a while; if it just prints some message and exits immediately, we won’t have time to compile new code and see the hot swap feature in action. Here’s an example that uses a simple infinite loop, wherein it sleeps for one second, prints a message, and then repeats.

    import java.lang.Thread;
    
    public class HotSwapTest {
      public static void main(String[] args) {
        while (true) {
          try {
            System.out.println("Hi");
            Thread.sleep(1000);
          } catch (InterruptedException e) { …

    development java tools programming
    Previous page • Page 29 of 220 • Next page