Thursday, December 13, 2018
How Microsoft Made Windows XP Icons
Found another neat article about how Microsoft handled making the program icons for Windows XP. Really interesting stuff for anyone that has to make icons. Check it out here:
https://msdn.microsoft.com/en-us/library/ms997636.aspx
Tuesday, December 11, 2018
Tetris
https://www.colinfahey.com/tetris/tetris.html
Friday, July 27, 2018
Music Review: D-Rail - Mr. Miyagi EP
SoundCloud link to the EP here: https://soundcloud.com/d-rail724/sets/mr-miyagi-the-ep-ft-dt
He recently became a verified artist on Spotify as well:
https://open.spotify.com/artist/1llYxMO15QIcqoSAvVemno?si=SZ6wK9ZTS4WSM5eye08oAw
'App is Damaged and Cannot Be Fixed' Mac OS High Sierra Fix
Have you downloaded a program in Mac High Sierra and noticed this error? The program refuses to open and the only option is deleting it to the trash. This happened to me and I thought my software was bad until I saw of this fix. This is actually a security setting change in High Sierra.
Once changed, under privacy and settings you will see the option appear for Allow apps downloaded from: anywhere.
This anywhere option is turned off by default, but many advanced users will want to enable this so their software can run correctly.
To enable this, open up a terminal window and run the following command:
sudo spctl —master-disable
That will enable software from anywhere to run on your Mac system and your apps should now open properly without displaying the message that they need to be trashed.
Wednesday, July 25, 2018
Google Docs Add-ons for Teachers
Thanks to Rachel Porter for creating and sharing this video.
Tuesday, July 24, 2018
Find Wireless Signal Strength in Windows
For this to work you will need to be running Microsoft Windows and you will need access to the command prompt.
To test the current signal strength, open up a command prompt and run the following command:
netsh wlan show interface
Note: You may have to run the command prompt as Administrator depending on your system settings.
The stats will pop up and you will want to look at the bottom portion where it says signal:
The signal field shows the wireless strength percentage
Quick little way to double check the connection other than looking at the network bar.
Sunday, July 22, 2018
How Many Languages Do You Know?
Just a random Youtube channel I came across, but it’s very impressive. This guy has studied lots of languages and likes to catch people off guard by his knowledge.
Find the channel here:
www.youtube.com/user/laoshu505000
So, how many languages do you know? Do you use them regularly?
Thursday, July 12, 2018
Scratch Programming For Everybody
Thursday, May 24, 2018
Programming in C/C++ Within the Sublime Text Editor
In this post, I'll describe setting up a C++ environment using Sublime Text 3 and the GNU compiler. This will allow you to write code in C++ and be able to build and run it all from within the Sublime Text 3 editor.
Things you will need:
Sublime Text 3 - https://www.sublimetext.com/
MinGW -w64 - https://sourceforge.net/projects/mingw-w64/
Build system file - https://gist.githubusercontent.com/sagebind/9039773048a3900fa49a/raw/e465947afb43948b471f739992ce303a92befbf8/MinGW-w64.sublime-build
About 10-15 minutes to complete setup and test. Note: You will probably need to install under an admin account to make sure everything installs correctly.
Steps:
1. Install Sublime Text 3 onto your system.
2. Install MinGW -w64
(Note the location/folder it gets installed to)
3. Set the path variable for MinGW
Note: If you need help at this step, please see the following link and check the 'Environment Settings' section: http://www.mingw.org/wiki/Getting_Started
4. Copy the following build file and place it within Sublime Text's package folder:
https://gist.githubusercontent.com/sagebind/9039773048a3900fa49a/raw/e465947afb43948b471f739992ce303a92befbf8/MinGW-w64.sublime-build
Once the above file has been copied to a file and saved within the package folder, you can should be able to build code under Sublime Text.
Write your code in Sublime and then test by going to Tools > Build.
Enjoy!
Monday, April 30, 2018
Impossible To Tell if Laptop Was Hacked Article
https://theintercept.com/2018/04/28/computer-malware-tampering/
Friday, March 16, 2018
PowerPoint Saving Tricks
1. When saving, instead of doing the usual save as .ppt...instead save your slides as a .pps. When you open this, it will go directly into presentation mode.
2. When you're going to be doing a presentation from another computer, consider saving your slides to .pdf format. This will ensure you don't run into any weird software mishaps if the computer you're presenting on has a different version of PowerPoint than the one you created the slides on.
Finding Inactive Computers With Powershell
Here's the code:
# Michael L. Kelley Jr.
# March 15, 2017
# InactiveComputers.ps1
# A script to find inactive computers via days not logged on
$DaysInactive = 90
$time = (Get-Date).Adddays(-($DaysInactive))
Get-ADComputer -Filter {lastlogontimestamp -lt $time} -Properties Name.OperatingSystem , lastlogintimestamp| Select Name.OperatingSystem,
@{N='lastlogontimestamp'; E={[DateTime]::FromFileTime($_. lastlogontimestamp)}}
Read-Host -Prompt "Press enter to exit"
Monday, March 5, 2018
Ridge View Coffee
Ridge View Coffee is a little side project of his. This coffee gets it's start in Ethiopia and is yirgacheffe. This was the sample packet that he gave me that he had just roasted and packaged that very morning. Ridge View Coffee will also (hopefully) be used to aid in funding for his church and the many mission projects that him and his family are so passionate about.
Last night, I made a cup as it was suggested that after roasting, to wait at least a day before brewing. I opened the packet and the aroma hit me. It smelled so fresh and good:
I just added a tiny bit of whole milk after snapping this photo and jumped in. This is good coffee. If you looked at the packaging photo above, you'll see that it has tasting notes of: blueberry, strawberry, and chocolate. I picked up on the blueberry right away and the chocolate. It was light, but packed full of flavor. It was a nice cup to have right after I had finished my dinner.
Josh is still currently streamlining his sources, processes, packaging, and marketing. When he gets his site up, I'll be sure to let everyone know. In the meantime, if you would like to reach out to Josh about buying a sample or you think his product might be a good fit in your shop, you can reach him at: ridgeviewcoffee@gmail.com and know that it would be benefiting a worthy cause.
Friday, March 2, 2018
Printing the HTML of a Web Page Using Python & Beautiful Soup 4
Feel free to use/modify/share the code as needed. Was getting Beautiful Soup 4 on my new computer and doing a couple little things to make sure it is working correctly. More code to come!
Thursday, March 1, 2018
New Laptop Day! Lenovo IdeaPad
Just got a slick new laptop for work today. A Lenovo IdeaPad:
It's a pretty slick machine with the following specs:
Win 10 Pro
Intel i7 @ 1.80GHz
512GB SSD
16GB RAM
Nvidia GeForce MX150
14-inch screen
back-lit keyboard
Still getting all of my software setup, but my first impressions are good. Really liking the keyboard and the display is beautiful. Hope to be posting lots of content in 2018 so keep a look out!
~ Michael