Have you ever heard about different projects where you can donate your computer time when you are not using it to help cure diseases? It is much simpler than you think to get started. This is the first part of a series of posts that will explain what, how and when of the BOINC project. Continue reading “What Is BOINC: How To Donate Computer Time To Goodwill”
Review: GPTOYS H2O Aviax 2.4GHz 4CH RC Quadcopter Drone
I have had so much fun with this drone! I have tried a few different helicopters and drones from Walmart, and they never seem to fly right – they would always shoot to the left or right and had no adjustments. This drone can be easily adjusted to make up for any problems the drone may have to make it hover properly. After just a day of flying it, I was able to figure it out, fly it where I wanted to, land it where I wanted to, and do different tricks with it. Even my wife was able to pick it up for the first time and fly it around for a few minutes without crashing it! Continue reading “Review: GPTOYS H2O Aviax 2.4GHz 4CH RC Quadcopter Drone”
Wireless Bluetooth FM Transmitter Radio Adapter Car Kit with Dual USB Port Remote Control
Product review for iClever Wireless Bluetooth FM Transmitter Radio Adapter Car Kit with Dual USB Port Remote Controller
I only have positive things to say about this device. I was needing something that I could listen to training material off of my phone into my older car radio. However, I did not want a bunch of wires everywhere where it takes me two minutes to get everything hooked up. Instead, I simply set it up the first time, and my phone automatically connects to my car radio as soon as I get near it. All I have to do then is press play on my phone.
Change Default SSH Port Number
By default, SSH runs on port 22, and most scripts attack that port by brute force to attempt to gain access to your server. One way to stop script kiddies from brute forcing your SSH server so often is by changing the default port that OpenSSH uses. You must remember this port number and change all your connections that use SSH to the new port number. Continue reading “Change Default SSH Port Number”
Nokia Lumina 950 XL Buy One Get One
This will be a very short post, but I wanted to be sure and share this great deal that I run into! I have been considering buying a Microsoft Phone for a while now, and this may be enough to tip me over the edge to buying one! Continue reading “Nokia Lumina 950 XL Buy One Get One”
Automatically backup pictures on Android With OneDrive
The past few days I have been getting calls regarding people’s phones not working right. The number one worry – I need my pictures. The way a phone’s internal storage works, if the phone will not come on, there is not much of a way to recover your pictures if they are not on an SD Card. Which leaves the question of how do I keep from loosing my pictures if my phone quits working? The answer – cloud storage. Continue reading “Automatically backup pictures on Android With OneDrive”
Disable UAC Prompts
Back when Windows Vista came out, Microsoft introduced User Account Control (or UAC). UAC is Microsoft’s response to Ubuntu’s sudo command, which must be run to run a command as admin. It has since then had many iterations and updates, and despite all the security positives of having it turned on, some people choose to turn it off. If you are wondering how to turn it off, then follow the steps below. These steps will work for Window Vista, 7, 8, 8.1, and 10. Continue reading “Disable UAC Prompts”
Disable The Clutter Folder
Microsoft decided it would be a good idea to start moving some of your mail to a separate folder. Do you know how the announced it? They put an email in the clutter folder saying “Welcome To Clutter”. They put it in a folder that you never seen before? Yeah, who is going to see that? Here is how you disable it!
Create drafts of live posts
WordPress is amazing in what all it can do, and what all people has morphed it to be able to do with all the various plugins, themes, and settings that you are able to change. People has built entire businesses just around their website – something I wish I could do one day! Me and my wife has decided to start working together on her blog more – we have devised a system where she creates the post, I go in and make some changes such as adding links, revising it, proofreading, and adding SEO.
As powerful as WordPress is, I soon found out there is no method built in to allow her to post the blog post live to the website then me go back and suggest revisions and let her review or deny my revisions before they go live. After all, this is her blog and I don’t want to make any changes with her approving them. So I started doing some research, and I finally found my answer… Continue reading “Create drafts of live posts”
Turn Windows Firewall Off or On By Command Line Or Script
I have run into a few times when I needed to turn off or on the Windows Firewall via command line or script. It is actually very simple to do!
To Turn Off:
NetSh Advfirewall set allprofiles state off
To Turn On:
NetSh Advfirewall set allrprofiles state on
To check the status of Windows Firewall:
Netsh Advfirewall show allprofiles
You can replace “allprofiles” with public, domain, or private and you can manipulate just that one profile. I used this in creating a script to test the firewall settings of a remote server. That way if I messed up the config, it would turn itself back off after a minute and I was able to reconnect to it. You can view that script on my other post Testing Windows Firewall Settings Safely From Remote Machine.