Emacs Commands
- C-f: move cursor forward one char
- C-b: mover cursor back one chart
- C-n: mover cursor to next line
- C-p: go to previous line
- M-f: forward one word
- M-b: move backward one word
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Copyright (C) 2023 Benjamin Thomas Schwertfeger | |
| # GitHub: https://github.com/btschwertfeger | |
| # | |
| """ | |
| This module provides an example on how to use the Spot websocket | |
| client of the python-kraken-sdk (https://github.com/btschwertfeger/python-kraken-sdk) | |
| to retrieve and maintain a valid Spot order book for a specific |
| /* | |
| * Sometimes you want to hash stuff on the client and on the server to test if | |
| * data transmission is happening okay. These functions to that. | |
| */ | |
| // node.js | |
| import crypto from 'node:crypto'; | |
| async function calculateHashForArrayBuffer(data: ArrayBuffer) { |
| #include <math.h> | |
| #include <stdio.h> | |
| float Q_rsqrt( float number ) | |
| { | |
| long i; | |
| float x2, y; | |
| const float threehalfs = 1.5F; | |
| x2 = number * 0.5F; |
| %:include <stdio.h> | |
| int main() | |
| {<%{<%{<%{<%{<%{<%{<%{<%{<%{<%{<% | |
| <%<%<%puts("hello, world");%>%>%> | |
| }%>}%>}%>}%>}%>}%>}%>}%>}%>}%>}%> |
I hereby claim:
To claim this, I am signing this object:
| 4AkqW3mvKPFSGFSBhdgKkd71E3E9QY1siCZHQgxryMSFWjGdAz2eW2s4YfLaUqKHeiZxVjLcGDaBGEFGkAF1GmKWTSkQJBz |
| <script> | |
| alert("XSS"); | |
| </script> |
| pub fn xor(text: &str, key: u8) -> String { | |
| text.chars().map(|c| ((c as u8) ^ key) as char).collect() | |
| } |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| typedef struct _node { | |
| int data; | |
| struct _node *next; | |
| } node; | |
| typedef struct { | |
| node *head; |