This file contains 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
vbell on | |
escape `` | |
hardstatus alwayslastline | |
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f %t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m/%d %{W}%c %{g}]' | |
defutf8 on |
This file contains 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
Item.joins("LEFT JOIN comments ON comments.item_id=items.id AND comments.service='TRUE'") | |
.joins("LEFT JOIN comments c2 ON c2.item_id=items.id AND c2.service='TRUE' AND (COALESCE(c2.created_at, items.purchased_at) + INTERVAL items.service_interval YEAR) >= NOW() AND c2.id <> comments.id") | |
.where("(COALESCE(comments.created_at, items.purchased_at) + INTERVAL items.service_interval YEAR) < NOW()") | |
.where("c2.id IS NULL") | |
.where("items.service_interval IS NOT NULL AND items.service_interval > 0") | |
Item.joins("LEFT JOIN comments ON comments.item_id=items.id AND comments.service='TRUE'") | |
.joins("LEFT JOIN comments c2 ON c2.item_id=items.id AND c2.service='TRUE' AND (COALESCE(c2.created_at, items.created_at) + INTERVAL items.service_interval) >= NOW()") | |
.where("(COALESCE(comments.created_at, items.created_at) + items.service_interval) < NOW()") |
This file contains 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
/* | |
* This is a manifest file that'll be compiled into application.css, which will include all the files | |
* listed below. | |
* | |
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, | |
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. | |
* | |
* You're free to add application-wide styles to this file and they'll appear at the top of the | |
* compiled file, but it's generally better to create a new file per style scope. | |
* |
This file contains 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
steam@tf2:/steam/steamcmd$ free -m | |
total used free shared buffers cached | |
Mem: 496 490 5 0 5 72 | |
-/+ buffers/cache: 412 83 | |
Swap: 0 0 0 |
This file contains 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
task :close, [:number] do |t, args| | |
number = args[:number] | |
status = IssueStatus.find_by_name("Closed") | |
Issue.find(number).update_attribute(:status, status.id) | |
end |
This file contains 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
class Sync.StatementListRow extends Sync.View | |
beforeInsert: ($el) -> | |
$el.hide() | |
@insert($el) | |
afterInsert: -> | |
@$el.fadeIn('slow') |
This file contains 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
#include <sourcemod> | |
public Plugin:myinfo = | |
{ | |
name = "killjoy", | |
author = "WebDestroya", | |
description = "Does something for killjoy", | |
version = "1.0", | |
url = "http://www.mitchdb.com/" | |
}; |
This file contains 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
qhull precision error: Only 4 facets remain. Can not merge another | |
pair. The convexity constraints may be too strong. Reduce the | |
magnitude of 'Cn' or increase the magnitude of 'An'. For example, | |
try 'C-0.001' instead of 'C-0.1' or 'A-0.999' instead of 'A-0.9'. |
This file contains 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
# ... | |
gem 'unicorn' | |
# ... |
This file contains 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
# Do not refactor, it is a bad practice. YOLO | |
# Not understanding why or how something works is always good. YOLO | |
# Do not ever test your code yourself, just ask. YOLO | |
# No one is going to read your code, at any point don't comment. YOLO | |
# Why do it the easy way when you can reinvent the wheel? Future-proofing is for pussies. YOLO |