Messages - justice [ switch to compact view ]

Pages: [1] 2 3 4 5 6 ... 379next
1
Tyee I've updated the project so you can run it the way you want to.
https://github.com/svandragt/carbon/issues/17

2
Finished Programs / WorkLog.py - work logging
« on: April 26, 2016, 04:15 AM »
Wrote this little script and thought it might be useful here. It allows you to keep track of what you are working on by writing a timestamped message to a CSV file.

worklog.png

Latest version: https://gist.github.com/svandragt/080843c4ba632deaab6f3aea57ca9684
Code: Python [Select]
  1. #v1.0.2
  2. from random import choice
  3. from datetime import datetime
  4.  
  5. phases = [
  6.     'Ok, noted.', 'Right, back to work then!', 'Looking good bud.', 'Cheers, mate.'
  7. ]
  8.  
  9. now = datetime.now()
  10. answer = ''
  11. with open("worklog.csv", "a") as f:
  12.     while answer.strip() != 'exit':
  13.         f.write('"{}","{}"\n'.format(now,answer.strip()))
  14.         answer = input("What're you working on? ")
  15.         now = datetime.now()
  16.         print("[{}]".format(now),choice(phases), "\n")

Requires Python 3.5. Then just run the file.

3
Find And Run Robot / Re: FARR as bookmark manager?
« on: April 09, 2015, 03:06 AM »
I was looking at the possibilities of writing a plugin but I'm not familiar enough with Visual Studio to update the Csharp SDK to supported VS versions. :(

4
General Software Discussion / Bookmarking client
« on: April 03, 2015, 03:55 AM »
Xmarks keeps corrupting my browser bookmarks, and as I couldn't find an alternative that supported the browsers I use, I have opted for online bookmarking to have access to them from all my machines.
Currently I'm using Pinboard, which I like. But I cannot find a Windows client for it. Is there one? What's everybody else using?

I'm not a power user, I just want to search through my collected bookmarks to find the one I need and launch it. I'm happy to organise them using the website.

5
Reviewing this - I'm now just running with:
CIRC
JSONView
LastPass
Privacy Badger
Xmarks Bookmark Sync

Pages: [1] 2 3 4 5 6 ... 379next
Go to full version