create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
-module(qsort). | |
-export([qsort/1]). | |
qsort([]) -> []; | |
qsort([H|T]) -> | |
qsort([X || X <- T, X < H]) ++ [H] ++ qsort([X || X <- T, X > H]). |
#include <stdio.h> | |
#include <stdlib.h> | |
int main() { | |
printf("location of Code: %p\n", (void *) main); | |
printf("location of Heap: %p\n", malloc(1)); | |
int x = 10; | |
printf("location of Stack: %p\n", &x); | |
return 0; | |
} |
#include "stdio.h" | |
#include "assert.h" | |
#include "pthread.h" | |
void *myThread(void *arg) { | |
printf("%s\n", (char *) arg); | |
return NULL; | |
} | |
int main() { |
/* -*- compile-command: "gcc -Wall -Werror -lcap -lseccomp contained.c -o contained" -*- */ | |
#define _GNU_SOURCE | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <grp.h> | |
#include <pwd.h> | |
#include <sched.h> | |
#include <seccomp.h> | |
#include <stdio.h> | |
#include <stdlib.h> |
#include <stdio.h> | |
#include <math.h> | |
typedef struct point { | |
int x; | |
int y; | |
} Point; | |
float distance(Point *p1, Point *p2) { | |
return sqrt( |
def get_products_dict(products): | |
""" | |
Returns products dict with bundled products included to be used in email templates. | |
NOTE: DO NOT SAVE PRODUCT IN THIS METHOD, AS, WE ARE CHANGING PRICE OF BUNDLED PRODUCTS TO 0 | |
""" | |
lang = get_language()[:2] | |
products_dict = {} | |
try: | |
if products and products[0].get('source') == 'vas': | |
for product in products: |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
(defn prime? [x] | |
(def f (fn [i j] | |
(if (zero? (rem i j)) | |
false | |
(if (<= j (quot i j)) | |
(f i (+ j 1)) | |
true | |
)))) | |
(f x 2) | |
) |
Directory | User | Group | Others (world) | who |
---|---|---|---|---|
0 | 420 | 000 | 000 | octal notations |
0 | 110 | 000 | 000 | bits |
d | rwx | rwx | rwx | named permissions |
0 | 6 | 0 | 0 | chmod numeric mode |
To make this work for the right option key, you need to set the key modifier to act as an escape sequence.
First, you need to set your left β₯ key to act as an escape character.
After that, you can either change the current shortcut for β₯ β or create a new one in the profile shortcut keys with the following settings:
Keyboard Shortcut: β₯β
Action: Send Escape Sequence