I hereby claim:
- I am lonesword on github.
- I am lonesword (https://keybase.io/lonesword) on keybase.
- I have a public key ASC9kr46VgC-qjCTOgDYo7jXQ0azhN2aZpx_ncjYlc11rgo
To claim this, I am signing this object:
| import torch | |
| import torch.nn as nn | |
| import torch.nn.functional as F | |
| from torch.utils.data import DataLoader | |
| from datasets import load_dataset | |
| import numpy as np | |
| from typing import Dict, Any | |
| from torch.optim import Optimizer |
| function! LoadTerminal() | |
| let bnr = bufnr('!/bin/bash') | |
| if bnr > 0 | |
| :sbuffer !/bin/bash | |
| else | |
| :term | |
| endif | |
| endfunction |
| import numpy as np | |
| def iterate(alpha, n, P, pi): | |
| e = np.array([[1], [1], [1], [1], [1], [1]]) | |
| return (alpha * e)/n + (1-alpha) * np.matmul(np.transpose(P), pi) | |
| if __name__ == "__main__": | |
| P = np.array([ | |
| [0, 0.5, 0, 0.5, 0, 0], |
| extern crate rand; | |
| use std::io; | |
| use rand::Rng; | |
| fn main() { | |
| let mut secret_passcode_str = String::new(); | |
| println!("What's the secret passcode?"); | |
| io::stdin().read_line(&mut secret_passcode_str).expect("Failed to read line"); | |
| let secret_passcode = secret_passcode_str.trim().parse::<i32>().expect("Wanted a number"); |
I hereby claim:
To claim this, I am signing this object:
| function escalate_ticket(event) | |
| { | |
| sheet = SpreadsheetApp.getActiveSheet() | |
| var range = sheet.getDataRange(); | |
| var values = range.getValues(); | |
| // 0 indexed. Col 6 contains email? Enter 5 here | |
| var email_col_num = 5 | |
| var is_tat_breached_col_num = 3 | |
| var comment_col_num = 4 |
| //aliases for box2d stuff. Makes life easier. | |
| var b2Vec2 = Box2D.Common.Math.b2Vec2 | |
| , b2AABB = Box2D.Collision.b2AABB | |
| , b2BodyDef = Box2D.Dynamics.b2BodyDef | |
| , b2Body = Box2D.Dynamics.b2Body | |
| , b2FixtureDef = Box2D.Dynamics.b2FixtureDef | |
| , b2Fixture = Box2D.Dynamics.b2Fixture | |
| , b2World = Box2D.Dynamics.b2World | |
| , b2MassData = Box2D.Collision.Shapes.b2MassData |
| var Globals = { | |
| originX: 0, | |
| originY: 0, | |
| rectangles: [] | |
| }; | |
| function Packer(ratio, w_, h_){ | |
| this.ratio = ratio; | |
| this.width = w_; |
| <!-- | |
| Sutherland-Hodgson polygon clipping algorithm using html5 canvas and javascript. Click to clip polygon sequentially | |
| Copyright (C) 2014 Kevin Martin Jose | |
| --> | |
| <!-- | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. |