Found a good YouTube channel for tear down videos on lot of different model Chromebooks. Was looking into how the keyboard gets taken out on a Lenovo N21 Chromebook.
Check out the Chromebook Repairs and Parts channel
Should be helpful to some especially those working in educational environments servicing Chromebooks.
Tuesday, September 20, 2016
Friday, September 16, 2016
The Surfing Pizza Blog
Found a neat blog today about toy collecting, pop-culture, and even pizza?!?!
One of the first articles I came across was about crazy Teenage Mutant Ninja Turtles action figures.
Count me in on the nostalgia and feels.
Check out The Surfing Pizza.
One of the first articles I came across was about crazy Teenage Mutant Ninja Turtles action figures.
Count me in on the nostalgia and feels.
Check out The Surfing Pizza.
Monday, September 12, 2016
Edit PDF Files on a Chromebook
For teachers and students working with Chromebooks, the ability to edit and save .pdf files can be extremely useful. Looked into a solution for this today and found DocHub.
Check out DocHub here.
Chromebook users should download it from the web store here.
DocHub will let you import a .pdf file from your Google Drive or Dropbox and let you edit it and then download the newly created file or save a copy back to your files.
Check out DocHub here.
Chromebook users should download it from the web store here.
DocHub will let you import a .pdf file from your Google Drive or Dropbox and let you edit it and then download the newly created file or save a copy back to your files.
Friday, September 9, 2016
PowerShell Pickups #1
Hey all,
Recently was messing around with Windows Powershell and making a few little scripts. I'm going to be learning more as I go, but figured this would be a nice little blog segment entitled PowerShell Pickups. PowerShell Pickups will be little snippets of code, scripts, and information while I learn more things in PowerShell.
For these I just used Windows PowerShell ISE which is a little IDE type environment for PowerShell. You can also use notepad as well and save the file as .ps1
Note: To get these scripts to run you may have to change a policy on your computer. For me, I did Set-ExecutionPolicy RemoteSigned
and then I was able to run my PowerShell commands. If you want to undo this you would use
Set-ExecutionPolicy Restricted
My first little script does the job of killing all browser processes for every browser on a system. I often have a bunch of windows open with multiple tabs. Overnight, things tend to break or Flash will crash leading to a massive hangup. It can be hard to get the windows to close manually, so I'll be keeping this little script handy on my desktop. The script is below:
Stop Browsers.ps1
Stop-Process -processname chrome
Stop-Process -processname firefox
Stop-Process -processname iexplore
Stop-Process -processname opera
Stop-Process -processname safari
Running this script will cause all of the above programs to close if they're open. If they are not open, an exception will be thrown saying that it could not be found.
Note: You could close out other programs this way too. Open task manger and look at the process list to get the process name and switch programs in and out as necessary.
If you play with PowerShell or want to start learning it, give the above a try. A quick little way to see some commands and results.
Recently was messing around with Windows Powershell and making a few little scripts. I'm going to be learning more as I go, but figured this would be a nice little blog segment entitled PowerShell Pickups. PowerShell Pickups will be little snippets of code, scripts, and information while I learn more things in PowerShell.
For these I just used Windows PowerShell ISE which is a little IDE type environment for PowerShell. You can also use notepad as well and save the file as .ps1
Note: To get these scripts to run you may have to change a policy on your computer. For me, I did Set-ExecutionPolicy RemoteSigned
and then I was able to run my PowerShell commands. If you want to undo this you would use
Set-ExecutionPolicy Restricted
My first little script does the job of killing all browser processes for every browser on a system. I often have a bunch of windows open with multiple tabs. Overnight, things tend to break or Flash will crash leading to a massive hangup. It can be hard to get the windows to close manually, so I'll be keeping this little script handy on my desktop. The script is below:
Stop Browsers.ps1
Stop-Process -processname chrome
Stop-Process -processname firefox
Stop-Process -processname iexplore
Stop-Process -processname opera
Stop-Process -processname safari
Running this script will cause all of the above programs to close if they're open. If they are not open, an exception will be thrown saying that it could not be found.
Note: You could close out other programs this way too. Open task manger and look at the process list to get the process name and switch programs in and out as necessary.
If you play with PowerShell or want to start learning it, give the above a try. A quick little way to see some commands and results.
Subscribe to:
Posts (Atom)