This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apt-get install python2.7-dev python2.7 | |
| apt-get build-dep gdb | |
| apt-get source gdb | |
| cd gdb-* | |
| sed -i -E "s|python3|/usr/bin/python2.7|" debian/rules | |
| dpkg-buildpackage -uc -us -j8 | |
| dpkg-install ../*.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Source: https://gist.github.com/ojwoodford/69b72a5bcded0f11ae6c58138a55debb | |
| // Be sure to enable "Google Calendar API" in the "Services" menu on the left | |
| // Set up a timed trigger: https://gist.github.com/ojwoodford/69b72a5bcded0f11ae6c58138a55debb?permalink_comment_id=4997932#gistcomment-4997932 | |
| function SyncMyCal() { | |
| var options = { | |
| 'targetEventTitle': "Busy (sync'd event)", // What event title do you want ported events to have | |
| 'daysahead': 60, // How many days ahead do you want to sync events over | |
| 'ignorealldayevents': true, // Do you want to ignore all day events in your "from" calendars | |
| 'ignorethesedays': [0, 6], // Are there days of the week you don't want to sync? 0 = Sunday | |
| 'maxhoursbetweenruns': 1, // How many hours between scheduled runs of the calendar sync (you need to set these up) |