Showing posts with label Technical Support. Show all posts
Showing posts with label Technical Support. Show all posts

Wednesday, January 22, 2014

How to fix Chrome being redirected to "payload.gosidekick.net"

Remove the iheartradio extension.

Steps to remove extensions:
1) Click the Chrome Menu ( Chrome menu 3 dashes to the right of the Address bar.)
2) Go to Setting, a tab will open
3) Go to Extensions
4) Find the iheartradio app
5) Click the garbage can next to the app in order to remove it

If you are still experiencing these things, you can reset Chrome back to it's original settings.

Steps to reset Chrome:
1) Click the Chrome Menu ( Chrome menu 3 dashes to the right of the Address bar.)
2) Go to Setting, a tab will open
3) Click at the very bottom "Show advanced settings..."
4) Find "Reset browser settings"

Thursday, May 24, 2012

SQL Date Math


/*Current Date*/
select GETDATE() CurrentDate
----First Day of Current Month
select DATEADD(mm, DATEDIFF(m,0,GETDATE()),0)
FirstDay_CurrentMonth
----First Day of Next Month
select DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0)
FirstDay_NextMonth
----Last Day of Previous Month
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0))
LastDay_PreviousMonth
----Last Day of Current Month
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0))
LastDay_CurrentMonth
----Last Day of Next Month
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+2,0))
LastDay_NextMonth
DECLARE @dtDate DATETIME
SET @dtDate = '5/17/2012'
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,@dtDate)+1,0))
LastDay_AnyMonth

Thursday, March 15, 2012

Two Wireless Router Setup and Configuration

Using the 2 links below I was able to setup 2 wireless Linksys routers on the same network.  The keys that I used are below, but here is a brief summary.

Setup each router seperately.  Reset your router and change the Start IP.  On the 2nd router plug your ethernet into the LAN port, not the Internet port.  Powercycle if you can't get it to work.

Configuring two wireless routers with one SSID (network name) at home for free roaming - Scott Hanselman

Technical Summary

  • First Router

    • 192.168.1.1
    • DHCP to use the range 192.168.1.3-192.168.1.254
    • A wireless channel like 11
  • Second Router

    • 192.168.1.2
    • DHCP is disabled
    • Identical wireless security setup as First Router

      • Except the wireless Channel. Try channel 6 if the first is 11.
    • Plug hard-wire into the LAN port, not the WAN port.

How to Connect Two Wireless Routers Together on the Same Home Network

Important Points to remember
1. It is suggested that the length of the LAN cable connecting the two routers should not exceed 100m and that you should avoid having any joints in the cable. LAN cables are pretty cheap – I got a Cat5e cable for 25¢/m.
2. If you have a compatible router, I suggest upgrading the firmware to DD-WRT as that will slightly boost the wireless signal plus you’ll get access to tons of other settings in your router.
3. If you have enabled Wi-Fi security in your previous router, use the same settings in your new router as well.
4. It is important that you assign different SSIDs to the two routers else the same network name will appear twice in your wireless network connections window.
5. If you don’t remember the username of your router, try these combinations – root + admin, admin + admin, admin + password or admin (as username) and no password.

Wednesday, February 29, 2012

The Windows 8 Developer Preview is a pre-beta version of Windows 8 for developers.

Windows Metro Style Apps Developer Downloads

Windows 8 Developer Preview downloads The Windows 8 Developer Preview is a pre-beta version of Windows 8 for developers. These downloads include prerelease software that may change without notice. The software is provided as is, and you bear the risk of using it. It may not be stable, operate correctly or work the way the final version of the software will. It should not be used in a production environment. The features and functionality in the prerelease software may not appear in the final version. Some product features and functionality may require advanced or additional hardware, or installation of other software. Note: You can't uninstall the Windows 8 Developer Preview. To go back to your previous operating system, you must reinstall it from restore or installation media.

Wednesday, February 15, 2012

SolidWorks Tutorial page for reference.

SolidWorks Tutorials – Videos, guides, lessons and project files I SolidWorks
SourceForge.net: Free-CAD
I am looking at a possible job opening that needs SolidWorks knowledgebase.  I will review all of these tutorials and then possibly download a Free/Open Source version of 3D CAD - Free-CAD.

Create your own Google Chrome Web App - usually a link to a web page

Tutorial: Getting Started - Chrome Web Store - Google Code
How To Create Your Own Chrome Web Apps | VikiTech.com
Google Chrome Web Apps
Using the two pages up above, I created a Google Chrome app to link to my blog here.  It is pretty simple, just follow the instructions.  Here are some things that I overlooked and might make it easier for you.  You will need to name the JSON file "manifest.json" using your notepad editor.  Also create a new folder in the beginning.

Here is the end result -  Download My Google Chrome App Drag the saved file over Chrome to Install.

Below is the code I used for my "manifest.json".


{
"name": "Jeff W Thomas Blog",
"description": "Connect with Jeff W Thomas, business analyst, political junkie, gamer, and most importantly family man!",
"version": "1.0",
"icons": {
"128": "128.png"
},
"app": {
"urls": [
"http://jeffwthomas.blogspot.com"
],
"launch": {
"web_url": "http://jeffwthomas.blogspot.com"
}
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}