TODO: Write a project description
TODO: Describe the installation process
<?php | |
namespace Treffynnon; | |
/** | |
* A PHP class to access a PHP array via dot notation | |
* (Agavi http://www.agavi.org was the inspiration). | |
* | |
* This was hacked in to an existing codebase hence the | |
* global config array variable. |
$('#my_id').delay(2000).fadeOut(2000); | |
<div id="my_id"> | |
</div> |
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
Note: Some of these shortcuts have been remapped for my own convenience (Preferences->Keymap). These are Mac shortcuts, just use the Windows/Linux equivalent of the Cmd/Option/Ctrl/Del keys.
####Search, Go to, Navigation ####
Cmd + P - Search file
Cmd + Shift + O - Search everywhere
(I swapped the above two recently because I use Cmd + P to search for files most of the time).
/**************** | |
* drones101.js * | |
**************** | |
* | |
* Do you remember, my dear Professor, a certain introductory | |
* computational rationality class you taught long ago? Assignment | |
* #2, behavior functions of autonomous agents? I remember that one | |
* fondly - but attack drones are so much easier to reason about | |
* when they're not staring you in the face, I would imagine! |
OLD stuff. This was not enough for an A+ anymore. |
/home/travis/build.sh: line 175: ./gradlew: Permission denied | |
Fix by setting the executable flag on your gradlew file. | |
Either | |
chmod +x gradlew (on unix systems) | |
OR |
Image* MainWindow::toImage(QImage* qimage) | |
{ | |
qDebug() << "toImage:" << qimage->width() << qimage->height(); | |
Image *newImage = new Image(Magick::Geometry(qimage->width(), qimage->height()), Magick::ColorRGB(0.5, 0.2, 0.3)); | |
double scale = 1 / 256.0; | |
newImage->modifyImage(); | |
Magick::PixelPacket *pixels; | |
Magick::ColorRGB mgc; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.popup { | |
position: fixed; | |
top: 50vh; | |
left: 50%; | |
width:400px; | |
margin-left: -200px; |