Juan Carlos Jiménez Palantir555
View .vimrc
"" Custom vim settings | |
"No need to be vi compatible. | |
:set nocompatible | |
"Searching | |
:set incsearch "Turn on incremental searching | |
:set ignorecase "Ignore case when searching | |
:set smartcase "Ignore case when typing lowercase, | |
"otherwise match case |
View main.cpp
#include "mbed.h" | |
#include "USBMouse.h" //The library to work as a mouse | |
USBMouse mouse; //Declare the object mouse | |
DigitalIn myInput(p5); //Set an input to control when to send clicks | |
int main() { | |
myInput.mode(PullDown); //Internal pull-down in the input pin | |
while (1) { //Forever: | |
if(myInput.read()==1) //If the input button/switch is enabled |
View exp_cmd.sh
export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH |
View prof.sh
##### | |
# The path to use the PyQt module and others installed using homebrew | |
export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH | |
##### |
View nano-bash_profile.sh
$ sudo nano ~/.bash_profile |
View gist:5957951
$ brew install pyqt |
View PyQt_test.py
#Code copied from: http://bit.ly/13yRYU4 | |
#And later modified a bit. | |
from PyQt4 import QtGui | |
from PyQt4 import QtCore | |
from PyQt4.QtCore import pyqtSlot,SIGNAL,SLOT | |
import sys | |
class MyMainWindow(QtGui.QMainWindow): | |
View gist:5198993
QTextCursor prev_cursor = myTextEdit->textCursor(); | |
myTextEdit->moveCursor (QTextCursor::End); | |
myTextEdit->insertPlainText (myString); | |
myTextEdit->setTextCursor (&prev_cursor); |
View gist:5198821
myTextEdit->moveCursor (QTextCursor::End); | |
myTextEdit->insertPlainText (myString); | |
myTextEdit->moveCursor (QTextCursor::End); |
View wont_crash.cpp
QPushButton = *myButton; | |
myButton = new QPushButton ("button's text"); | |
myGridLayout->addWidget (myButton, 0, 0, Qt::AlignLeft); |
NewerOlder