Search results for: “label/Web Site – Review”

  • OIOpublisher: The Easy Way to Provide Ad Space on Your Blog

    For the past few months I have offered private advertising on Technically Easy. You can see the banner ads in my right sidebar, and in the header. In the past I have tried various online ad providers, but didn’t have much success. When I did have success, I was usually paid a percentage of what I actually charged.

    A few months ago I looked into OIOpublisher, which is a WordPress plugin. Since then I have sold several ad spaces through OIOpublisher, and have made 100% of what I sold. In this post I look at OIOpublisher and what it provides in terms of advertising for your blog.

    (more…)

  • How to Make More Money From Your Blog

    How to Make More Money From Your Blog

    There are many techniques that you can use to make more money from your blog. If your only means of monetizing your blog is CPM advertising — such as Google AdSense — chances are you’re selling yourself short. A select few blogs, typically high-traffic blogs in particular niches, can earn a comfortable living from CPM advertising, most cannot. There’s a reason why it has earned the moniker “webmaster welfare.” It might pay the hosting bills, but chances are it doesn’t go much further than that. If you want to boost your blog’s income, you’ll need to try something different.

    (more…)

  • Router Configuration Pages Not Displayed Fully in Web Browser

    Router Configuration Pages Not Displayed Fully in Web Browser

    You may run into an issue where your router’s configuration pages may not display properly, or fully, in your web browser. I have recently seen this issue with a wired router after connecting the router from one computer to another. I reset the router a few times, but the configuration pages in the browser window never completely rendered – the lower part of each web page was missing.

    While I haven’t seen this before, I wasn’t sure if there was a problem with the router or the local computer I was working on. I had used this router in the past, and never experienced any problems with it, so I decided to look at the computer for the problem.

    (more…)

  • 3 Things to Look For in a Web Application Design Company

    3 Things to Look For in a Web Application Design Company

    Hiring a web application design company is pretty difficult if you aren’t an experienced web app developer yourself. Since computer code might be Greek to you, you could hire a 3rd party consultant to help you sort through various freelancers and companies. Regardless of how you proceed, here’s what you need to look out for before you hire anyone to work on your application.

    (more…)

  • The Basics of Creating a Progressive Web App Using React.js

    The Basics of Creating a Progressive Web App Using React.js

    Progressive Web Applications (PWAs) are a hybrid between a standard webpage and a mobile app. They allow users to access the PWA from their computers, but they offer the sleek, fluid design of a mobile application.

    As PWAs become more popular, the desire to build them has increased, as well. If you’re wondering how to build a progressive web app using React.js, you’re not alone. The basic steps to building a PWA in React.js are as follows.

    Setting up

    Before you begin setting up your PWA, you’ll want to decide on a server in which to build. Once you know where you want the PWA to be, generate a basic React application using create-react-app.

    When you’re ready, switch to the server you want to build in and run the following.

    npm install -g create-react-app
    create-react-app pwa-experiment

    After that, you’ll need to install something called React Router.

    cd pwa-experiment
    npm install --save react-router@3.0.5

    Now you need to run the standard gist in your App.js. You can easily find the gist by searching “PWA in React.js gist” or something similar. After you run the standard gist, you’ll have created a basic layout with a few navigation options.

    If this is sounding foreign to you already, you might want to consider React 16 training before going further as it may help you fully understand the process and can better ensure success.

    Lighthouse

    Lighthouse is a free tool that Google has created for developers who are building PWAs. Google has a PWA checklist against which it tests your PWA (using Lighthouse) for quality and completeness.

    It’s a simple Chrome extension that you can get from the Google Developers suite. Just search Lighthouse and you’ll find it. Once it’s installed, click Generate Report and you’ll get a comprehensive report on how your PWA is doing.

    Service worker setup

    Next, you need to set up a service worker. It’s basically a small piece of JavaScript that exists between the network and your application. When put into action, it will receive any network requests and deliver cached files.

    Basically, it’s what enables your PWA to work offline. The process is a bit lengthy and complex, but you can find all the code you need online. If you’re not good with code or you’re just starting out, you might seek training instead.

    Run Lighthouse after each step to see how you’re doing.

    Progressive Enhancement

    Progressive enhancement doesn’t just mean to start making things better bit by bit, although you want to do that, as well. Progressive enhancement is a term that basically means your app will be able to function without having to load JavaScript.

    Once you’ve added progressive enhancement, check your app with Lighthouse again. If your score is higher, you’ve done it correctly.

    Adding home screen capabilities

    One of the main “selling points” of a PWA is the ability to save it to your home screen and run it just like an app. To do that, you have to add home screen capabilities to your code.

    Doing this requires you to install a manifest.json file to the public directory on your server. You can find the lengthy code for this online. You’ll also need an icon.png to use.

    Once you’ve done all that, you’ll add a couple more lines of code to the PWA and run Lighthouse once more. Your score should be significantly higher at this point.

    Deploy

    At this point, the only things you should be missing are caching and https, both of which can be taken care of during deployment. To deploy your PWA, you’ll probably want to use Firebase.

    You’ll want to run a new pwa-experiment in the Firebase console and run the following code in your project folder.

    npm install -g firebase-tools
    firebase login
    firebase init

    Once you complete the rest of the deployment process, you’ll have a PWA. Sort of. At the very least, Lighthouse should rank you at 100 percent. But many enhancements and design elements will be missing, even if you follow basic tutorials.

    The beauty of PWAs is that you can make them whatever you want them to be. Whether your PWA is educational or for entertainment purposes, being able to create it in such a way that it can operate with the unique functional capabilities of a PWA can only enhance the end project.

    If you’re still confused as to how to build a progressive web app using React.js, you can obtain training from a variety of services to get a better handle on the process and develop more dynamic and impactful PWAs for your audience.

  • Resizing Digital Photos for E-mail in Windows XP

    Once in a while I will get several digital photos as attachments in an e-mail, and the photos haven’t been resized. This is a problem as photos from a digital camera are usually 2MB and larger, which is quite big to send in an e-mail. Add to the fact that there are usually several photos being sent in an e-mail, and you can see that it can take some time to download the entire e-mail.

    In this post I will show you a quick method of resizing your photos right in Windows XP that will make them ready for e-mailing or uploading to the Web.

    (more…)

  • How CloudFlare Kept My Blog Running

    How CloudFlare Kept My Blog Running

    I have been using CloudFlare for about 5 months. I mainly chose to look into using CloudFlare because of the performance benefits for my blog. CloudFlare is similar to a CDN in that it will cache many of the static elements on your site, such as images, Javascript, and CSS, and then send them to your visitors when they are requested. This means that your host’s server just needs to worry about sending the dynamic content, such as the Web pages, which reduces the load on the server.

    Last week my host had an issue. There was a denial-of-service (DoS) attack against the server that hosts my blog. Because I am on a shared hosting plan, the DoS probably caused issues with several sites, and not just my blog

    (more…)

  • How To Take Your Traffic From Researchers To Customers

    How To Take Your Traffic From Researchers To Customers

    Picking customers in the right stage of the buying cycle will dictate how much work is needed; firstly for you to attract these searches to your site but more importantly how easy it will be to convert them.

    (more…)