Archive | Software
24
Mar

Adding Custom HTML/Tab To Facebook

Adding Custom HTML/Tab To Facebook This was the best article I could find that explained, in detail, how to add tabs and custom html content to a Facebook business page: http://www.hiddenwebgenius.com/blog/guides/how-to-add-custom-tabs-to-your-facebook-business-page/ Article Content Here’s the article content as I found it on March 23rd, 2018. Facebook, because of its popularity, is now being seen by […]

Continue Reading →
16
Mar

Visual Composer/WP Bakery Masonry Grid & Admin SSL

I’m running a site that uses Visual Compower/WP Bakery. On one of the pages, I installed the Post Masonry Grid to display my posts. Problem When I initially loaded the page, all I got was a blank screen. I remembered dealing with a problem like this before when running my wordpress site administration over SSL […]

Continue Reading →
23
Feb

Webpack Dev Server – Watch Files

I’ve been learning Webpack and the Webpack-dev-server environment in Node. I have Webpack version 3.10.0 and Webpack-dev-server version 2.11.1. Here’s a quick example of how to get a package version using NPM: “`sh # check the version of a node package in bash, in this case, check on webpack [user]$ npm list webpack [email protected] /home/my/software/site/ […]

Continue Reading →
23
Feb

Github Code Block Types

When working with code blocks, sometimes you need to know the acronym associated with a language in order to create the block. For example, when working with a Wiki in Github, a code block can be create by entering three back-ticks. Followed by the language type. A carriage return. The code itself and then another […]

Continue Reading →
30
Apr

Magento Developer Modes

In Magento 2.0, there’s a command line tool that allows you to switch between modes. This article details some of these modes and also explains how to do it. More information can be found on in the Magento DevDocs (devdocs.magento.com) Developer Modes default According to the documentation, “Enables you to deploy the Magento application on […]

Continue Reading →
18
Jun

Zend_Db_Statement_Oracle Cursor Results

This one took me a while to figure out, so I thought I would do an entry for it. These instructions aren’t actually tied to the Zend_Db_Statement_Oracle class in the Zend Framework. I’ve just been using the Zend Framework in the application that this information is from. Problem I’ve been using the Oracle database for […]

Continue Reading →
20
Jan

Zend_Db Oracle Functions/Procedures

For some reason, this was a nightmare to figure out. All I wanted to do was call an oracle function from the Zend Framework using PDO_OCI as my database adapter. After a FULL DAY of research and testing, I finally found some code that works! The Database Adapter I use a configuration file for my […]

Continue Reading →
13
Jan

Is Design Dead?

This article was written by Martin Fowler as part of a keynote presentation at the XP 2000 conference. The original article can be found at the following link: Is Design Dead? I wanted to include a copy of it on this site in case the link changes or the article goes away. For me personally, […]

Continue Reading →
19
Nov

AS3 ModuleLoader and ModuleManager CSS

While programming in Flex 4.5, I came across an issue that took forever to figure out. It had to do with the ModuleLoader class and the inability of it to inherit styles from the application that was loading it. According to Flex documentation, a Module that is loaded into the same application domain as it’s […]

Continue Reading →
19
Nov

Flex Library Linking (RSL, External, Merged)

Setting up the Flash/Flex environment for development can take some time. When I first setup Flex Builder 3.0, I had to work through a lot of different configuration before I found, in my opinion, the best setup for it. Basically, I had the idea of setting up five different projects as Flex projects: Library (pure […]

Continue Reading →