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
;;; flycheck-go-alt.el --- Go syntax checkers for flycheck | |
;; Copyright (C) 2013 ptrv <[email protected]> | |
;; Author: ptrv <[email protected]> | |
;; Keywords: | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
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
Test |
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
(flycheck-declare-checker c++-cpplint | |
"A cpp syntax checker using the cpplint.py tool. | |
See URL `https://code.google.com/p/google-styleguide/'." | |
:command '("cpplint.py" "--verbose=3" source-original) | |
:error-patterns '(("^\\(?1:.*\\):\\(?2:.*\\): \\(?4:.*\\)$" warning)) | |
:modes 'c++-mode) |
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
;;; flycheck-go.el --- Go syntax checker for flycheck | |
;; Copyright (C) 2013 ptrv <[email protected]> | |
;; Author: ptrv <[email protected]> | |
;; Keywords: | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
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
#!/usr/bin/env python | |
try: | |
import OSC | |
except ImportError: | |
print """ | |
Please install pyOSC from the following location: | |
https://trac.v2.nl/wiki/pyOSC | |
""" |
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
#!/bin/sh | |
# tint2 restart for x-p-m bug | |
# | |
# put this file to /etc/pm/sleep.d/ | |
USER=$(who | grep pts\/0| awk '{print $1}') | |
case "$1" in | |
hibernate|suspend) | |
;; |
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
grep -c 'model name' /proc/cpuinfo |
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
[Desktop Entry] | |
Name=Emacs | |
Comment=GNU Emacs Client | |
Exec=/usr/bin/emacsclient -c -a emacs24 %F | |
TryExec=emacs24 | |
Icon=emacs2 | |
Terminal=false | |
Type=Application | |
StartupNotify=true |
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
String[] lines; | |
int dataLength=48; | |
int stepX; | |
int stepY; | |
color c; | |
void setup(){ | |
size(512, 512); |