Edit your previous Skype messages
Just in case you did not know it: If you sent a Skype message containing a typo, you don't need to send a second one to correct yourself.
Instead, simply press the up key (↑
). The message area will become yellow and contain your previously sent message. Make any changes and submit again.\
You can also right-click any other message (of the current session) to edit it.
Related cards:
Why your previous developer was terrible
When you, as a developer, look at the choices used to build a particular application, you’re blown away at the poor decisions made at every turn. “Why, oh why, is this built with Rails when Node.js would be so much better?” or “how could the pre...
Thunderbird: How to compose an HTML e-mail (when plain-text messages are your default)
Nobody needs HTML e-mails. However, you occasionally might have to write an HTML message for some weird reason. Here is how:
- Hold the Shift-Key while clicking on "Write", "Reply", "Reply All", or "Forward".
That's it. :)
Update Skype 4.x to at least 4.0.0.8
There was a bug in Skype that could cause messages to be sent to incorrect recipients (anyone, not only people from your contact list).
If you were using Skype 4 on Linux (or Skype on any other platform), [upgrade immediately](http://www.skype.co...
Mute a skype chat
If you want to stop getting notified about new messages in a Skype chat (but not leave it altogether), you can type
/alertsoff
into the chat. This will only affect this one chat.
To only be notified when certain keywords appear in the conve...
Debug MiniMagick calls in your Rails app
Most of our applications use CarrierWave for file uploads. CarrierWave has an integrated processing mechanism for different file versions with support for ImageMagick through CarrierWave::MiniMagick
(which requires the mini_magick
gem). In cas...
Bookmarklet to generate a commit message with Pivotal Tracker story ID and title
For clarity and traceability, your commit messages should include the ID and title of the Pivotal Tracker story you're working on. For example:
[#12345] Add Google Maps to user profiles
Optional further commit messages in the body
Al...
How to use Haml in your helpers
You know those helper methods that just render some HTML but look weird because of content_tag
s all over the place? You could also use Haml instead.
Example
Consider the following helper.
def greeting
message = ''.html_safe
...
Rails: Encrypting your database information using Active Record Encryption
Since Rails 7 you are able to encrypt database information with Active Record. Using Active Record Encryption will store an attribute as string in the database. And uses JSON for seri...
Custom error messages in RSpec or Cucumber steps
Sometimes you have a test expectation but actually want a better error message in case of a failure. Here is how to do that.
Background
Consider this test:
expect(User.last).to be_present
In case of an error, it will fail with a n...