I hereby claim:
- I am ckruse on github.
- I am ckruse (https://keybase.io/ckruse) on keybase.
- I have a public key whose fingerprint is BC5D 9F4E F7FB 4382 6056 E834 B8E0 F342 A99A 9D73
To claim this, I am signing this object:
| #!/bin/bash | |
| FILENAME="${1:-latest.png}" | |
| LANG=C | |
| TMPFILE=/tmp/$FILENAME | |
| if [ "$2" = "full" ]; then | |
| scrot $TMPFILE | |
| else |
| // -*- coding: utf-8 -*- | |
| use std::os; | |
| use std::sync::Future; | |
| use std::io::BufferedReader; | |
| use std::io::File; | |
| fn main() { | |
| let args = os::args(); | |
| let mut results: Vec<Future<_>> = vec![]; |
| context "change" do | |
| scenario "user updates a existing group", js: true do | |
| project.user_projects.create!(user_id: user.user_id) | |
| visit edit_project_calendar_group_path(project.slug, group) | |
| expect(page.body).to have_field Calendar::Group.human_attribute_name :name | |
| expect(page.body).to have_button 'Speichern' | |
| fill_in Calendar::Group.human_attribute_name(:name), with: "Test-Group CK" |
I hereby claim:
To claim this, I am signing this object:
| import hashlib | |
| import random | |
| class FilterModule(object): | |
| def salt(self): | |
| ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
| chars=[] | |
| for i in range(16): | |
| chars.append(random.choice(ALPHABET)) |
| pub async fn create_mention( | |
| source_url: String, | |
| target_url: String, | |
| object_type: &str, | |
| id: i32, | |
| author: String, | |
| title: String, | |
| conn: &mut PgConnection, | |
| ) -> Result<Mention, sqlx::Error> { | |
| let now = chrono::Utc::now().naive_utc(); |