- Never disclose your adsense revenue in to any public forums or social media. some people or your competitors may not like it.
- Watch the adsense report for clicks and CTR. You can sense the unusual activities like many clicks in less time, if its occurring often, that’s probably a click bombing attempt.
- Analyze with google analytics for suspicious traffic. note down the IP and timing of suspicious activities
- Report click bombing to google, via Invalid clicks contact form ( Link : https://support.google.com/adsense/contact/invalid_clicks_contact?hl=en&rd=1 )
Today's Learnings - An archive of my learnings
These are the dumps from my daily learnings / challenges I faced in my work. hope it helps you too
Saturday, October 1, 2016
Ways to protect your adsense accounts from click bombing
How to uninstall a program in macbook
Tuesday, February 24, 2015
How to invoke proxy settings dialog from the command line in windows?
in Run execute
"inetcpl.cpl"
or if you want to switch to connections tab directly, execute
"inetcpl.cpl ,4"
tested with windows 7
Tuesday, July 29, 2014
How to share windows folders with Ubuntu
Mounting the share in user space
- Open the Files file manager.
- Files » Connect to Server.
- For the Server Address, enter the following (where HOSTNAME is the server name and SHARE is the share name):
- smb://HOSTNAME/SHARE
- Hit the Connect button.
- ln -s /run/user/$USER/gvfs ~/mounts
- What's the easiest way to mount Windows share as a local folder in home directory?
- How do I mount Samba share as non-root user
Mounting the share system-wide
- sudo apt-get install cifs-utils
- sudo mkdir /mnt/LOCAL_SHARE_NAME
- sudo mount -t cifs //REMOTE_HOST_NAME/REMOTE_SHARE_NAME /mnt/LOCAL_SHARE_NAME
Friday, January 22, 2010
How to restart or shutdown Windows from command prompt
XP Ships with shutdown.exe, and is also found on Windows Server 2003. You can download a copy for Windows 2000, and Windows 2000 server as it is found in the AdminPak.msi suite of software. XP a& Win server 2003 ship with the .exe
the windows XP/2003 uses the "-" as the flag seperator, but windows 2000 uses the "/" as the flag seperator
for XP, go to the command prompt and type:
shutdown /?
this will show all of the available options. I use it all the time to reboot my servers in the middle of the night via a scheduled .bat file
this is a sample of how to reboot in 60 seconds, with a comment to the popup
shutdown -r -t 60 -c "Your message ( optional)"
to cancel, just type
shutdown -a
for shutdown
shutdown -s -t 60 -c "your message(optional)"