- Total Rickall
- Get Schwifty
- Rickshank Rickdemption
- Pickle Rick
- A Rickle In Time
- The Ricks must be crazy
- Rick Potion #9
- Auto Erotic Assimilation
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
import bpy | |
from math import * | |
def createMeshFromData(name, origin, verts, edges, faces): | |
# Create mesh and object | |
me = bpy.data.meshes.new(name+'Mesh') | |
ob = bpy.data.objects.new(name, me) | |
ob.location = origin | |
ob.show_name = False | |
# Link object to scene and make active |
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
FactoryBot.create :user_subscription, | |
user: current_user, | |
subscription: FactoryBot.create(:subscription, | |
:with_provider, | |
name: "My Subscription #{num}" | |
) |
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 install rqrcode | |
$ irb -r rqrcode | |
2.5.3 :001 > File.open('/tmp/wifi-connection.png', File::CREAT | File::WRONLY) {|f| f.write RQRCode::QRCode.new('WIFI:S:Wifi name;T:WPA;P:wifi password;;').as_png(size: 400) } |
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 NumberListNode | |
attr_accessor :child, :value | |
def initialize child:, value: | |
@child = child | |
@value = value | |
end | |
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
ansible-playbook -v --inventory inventory playbook.yaml |
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 <LiquidCrystal.h> | |
String lcdLine = ""; | |
// initialize the library with the numbers of the interface pins | |
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); | |
void setup() { | |
// set up the LCD's number of columns and rows: | |
lcd.begin(16, 2); | |
// Print a message to the LCD. |
Solving the The data directory was initialized by PostgreSQL version 9.4, which is not compatible with this version 9.5.0.
panic ;) This is mainly for Postgres installed via Homebrew, but you can adapt it to your system pretty easily.
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
browserIntent = Android::Content::Intent.new Android::Content::Intent::ACTION_VIEW, | |
URI.parse('http://www.google.com') | |
startActivity browserIntent |
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
sync: | |
rsync --verbose --recursive --delete --progress \ | |
/Volumes/DATA\ 1/External\ FCP\ Library.fcpbundle/ \ | |
/Volumes/DATA\ 2/External\ FCP\ Library.fcpbundle/ |
NewerOlder