Skip to content

Instantly share code, notes, and snippets.

@wgm89
Created May 21, 2015 02:44
Show Gist options
  • Select an option

  • Save wgm89/3f108c515239aab4396d to your computer and use it in GitHub Desktop.

Select an option

Save wgm89/3f108c515239aab4396d to your computer and use it in GitHub Desktop.
Everyday I come to office, I've to open up a fixed number of links on my web-browser.
#! /usr/bin/python -tt
import webbrowser
def main():
webbrowser.open('http://www.v2ex.com')
webbrowser.open_new_tab('https://www.quora.com')
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment