
Sui Name Service ($SNS)
twitter :discord :Discord - Group Chat That's All Fun & GamesDiscord is great for playing games and chilling with friends, or even building a worldwide community. Customize your own space to talk, play, and hang out.https://discord.comIt's finally here! Join our Crew3 and earn your spot in the $SNS DAO ➤ http://snsdomains.crew3.xyz ➤ New Quests added Daily! 10 people to Like/RT this tweet will also be selected for the Stork role - Winners selected below. #Sui isn't ready. Let&a...

tương tác Harpie
liên kết víxem ví mình dùng cái nào thì chọn - ví hold token thì chọn cái trên , ví chơi nft thì chọn cái dưới hoặc chọn cả 2 cũng đcchọn cái nào muốn bảo vệđợi cho nó load xong và import token mạng eth hoặc nft nào mà mình muốn bảo vệadd bn token hay nft tùy thích - sau đó chọn protecttốn chút fee ethnhư vậy là xong bước 1tiếp theo chọn setupnhập địa chỉ ví - tốn fee eth - nhập 1 địa chỉ ví khác ví đang dùngtiếp theo đến bước 3chọn mint FAU - tốn fee ethBẤM protect faucet token - tốn fee eth...

Alchemy University - tổng hợp
Dự án Alchemy với định giá 10,2 tỷ $ và được tài trợ 545 triệu $, các nhiệm vụ hàng tuần của trường đại học sẽ dần bắt đầu. mọi người đã claim NFT truy cập sớm thì có thể bắt đầu cuộc sống đại học nhé hiện tại chỉ có 1 phần nhỏ bài học ra mắt , còn rất nhiều khóa học đằng sau đợi mở nữa nên cứ bình thường mà học cũng không chắc đã có thưởng cho người học nên ai không thích thì có thể không làm nhé vì nó cũng tốn khá nhiều thời gian của mọi người mục tiêu : bài viết này được viết ra là để hướn...
vui vẻ

Sui Name Service ($SNS)
twitter :discord :Discord - Group Chat That's All Fun & GamesDiscord is great for playing games and chilling with friends, or even building a worldwide community. Customize your own space to talk, play, and hang out.https://discord.comIt's finally here! Join our Crew3 and earn your spot in the $SNS DAO ➤ http://snsdomains.crew3.xyz ➤ New Quests added Daily! 10 people to Like/RT this tweet will also be selected for the Stork role - Winners selected below. #Sui isn't ready. Let&a...

tương tác Harpie
liên kết víxem ví mình dùng cái nào thì chọn - ví hold token thì chọn cái trên , ví chơi nft thì chọn cái dưới hoặc chọn cả 2 cũng đcchọn cái nào muốn bảo vệđợi cho nó load xong và import token mạng eth hoặc nft nào mà mình muốn bảo vệadd bn token hay nft tùy thích - sau đó chọn protecttốn chút fee ethnhư vậy là xong bước 1tiếp theo chọn setupnhập địa chỉ ví - tốn fee eth - nhập 1 địa chỉ ví khác ví đang dùngtiếp theo đến bước 3chọn mint FAU - tốn fee ethBẤM protect faucet token - tốn fee eth...

Alchemy University - tổng hợp
Dự án Alchemy với định giá 10,2 tỷ $ và được tài trợ 545 triệu $, các nhiệm vụ hàng tuần của trường đại học sẽ dần bắt đầu. mọi người đã claim NFT truy cập sớm thì có thể bắt đầu cuộc sống đại học nhé hiện tại chỉ có 1 phần nhỏ bài học ra mắt , còn rất nhiều khóa học đằng sau đợi mở nữa nên cứ bình thường mà học cũng không chắc đã có thưởng cho người học nên ai không thích thì có thể không làm nhé vì nó cũng tốn khá nhiều thời gian của mọi người mục tiêu : bài viết này được viết ra là để hướn...
vui vẻ

Subscribe to meteosrds

Subscribe to meteosrds
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers



bấm next qua 2 cái trên ảnh


/**
* Runs a callback function immediately
* @param {function} callbackFunction
*/
function runCallback(callbackFunction) {
callbackFunction();
}
module.exports = runCallback;

/**
* Runs a callback function immediately
* @param {function} callbackFunction
*/
function runCallback(callbackFunction) {
setTimeout(callbackFunction, 1000);
}
module.exports = runCallback;

class Dialog {
onClose(callbackFunction) {
this.carr = this.carr || [];
this.carr.push(callbackFunction);
}
close() {
for (let i = 0; i < this.carr.length; i++) {
this.carr[i]();
}
}
}
module.exports = Dialog;

class Dialog {
onClose(callbackFunction) {
this.carr = this.carr || [];
this.carr.push(callbackFunction);
}
close() {
for (let i = 0; i < this.carr.length; i++) {
this.carr[i]();
}
}
}
module.exports = Dialog;

function forEach(arr, callback) {
for (let i = 0; i < arr.length; i++) {
callback(arr[i], i);
}
}
module.exports = forEach;

function map(arr, callback) {
let a = [];
for (let i = 0; i < arr.length; i++) {
a.push(callback(arr[i]));
}
return a;
}
module.exports = map;


code bên dưới
const { makeFood } = require('./Kitchen');
class Order {
constructor() {
this.isReady = false;
}
request(food) {
const promise = makeFood(food);
promise.then( (food) => {
this.isReady = true;
});
}
}
module.exports = Order;

const { makeFood } = require('./Kitchen');
class Order {
constructor() {
this.isReady = false;
}
request(food) {
const promise = makeFood(food);
promise.then((food) => {
this.isReady = true;
});
promise.catch((err) => {
this.error = err;
});
}
}
module.exports = Order;

function timer() {
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
resolve('resolve');
}, 1000);
});
return promise;
}
module.exports = timer;

function timer() {
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
resolve('resolve');
}, 1000);
});
return promise;
}
module.exports = timer;

const { getResults } = require('./lab');
const { sendResults } = require('./messaging');
const { logResponse, logError } = require('./logs');
async function handleResults(patientId) {
try {
const res = await getResults(patientId);
const r = await sendResults(patientId, res);
await logResponse(r);
} catch (ex) {
logError(ex);
}
}
module.exports = handleResults;

const { getResults } = require('./lab');
const { sendResults } = require('./messaging');
const { logResponse, logError } = require('./logs');
async function handleResults(patientId) {
try {
const res = await getResults(patientId);
const r = await sendResults(patientId, res);
await logResponse(r);
} catch (ex) {
logError(ex);
}
}
module.exports = handleResults;


code bên đưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
const STATUS = {
PENDING: 0,
RESOLVED: 1,
REJECTED: 2,
}
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.status = STATUS.PENDING;
this.f1 = (value)=> {
this.resolvedValue = value;
this.status = STATUS.RESOLVED;
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
this.rejectedValue = value;
this.status = STATUS.REJECTED;
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
if (this.status === STATUS.PENDING) {
this.catchs.push(c);
}
else if (this.status === STATUS.REJECTED) {
c(this.rejectedValue);
}
}
then(t) {
if (this.status === STATUS.PENDING) {
this.thens.push(t);
}
else if (this.status === STATUS.RESOLVED) {
t(this.resolvedValue);
}
}
}
module.exports = Pact;

code bên dưới
const STATUS = {
PENDING: 0,
RESOLVED: 1,
REJECTED: 2,
}
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.status = STATUS.PENDING;
this.f1 = (value)=> {
this.resolvedValue = value;
this.status = STATUS.RESOLVED;
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
this.rejectedValue = value;
this.status = STATUS.REJECTED;
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
if (this.status === STATUS.PENDING) {
this.catchs.push(c);
}
else if (this.status === STATUS.REJECTED) {
c(this.rejectedValue);
}
}
then(t) {
if (this.status === STATUS.PENDING) {
return new Pact((resolve, reject) => {
this.thens.push((val) => {
if (val instanceof Pact) {
val.then((val) => resolve(t(val)));
}
else {
resolve(t(val));
}
});
});
}
else if (this.status === STATUS.RESOLVED) {
t(this.resolvedValue);
}
}
}
module.exports = Pact;

code bên dưới
const STATUS = {
PENDING: 0,
RESOLVED: 1,
REJECTED: 2,
}
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.status = STATUS.PENDING;
this.f1 = (value)=> {
this.resolvedValue = value;
this.status = STATUS.RESOLVED;
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
this.rejectedValue = value;
this.status = STATUS.REJECTED;
for (let i = 0; i < this.catchFn.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
if (this.status === STATUS.PENDING) {
this.catchs.push(c);
}
else if (this.status === STATUS.REJECTED) {
c(this.rejectedValue);
}
}
then(t) {
if (this.status === STATUS.PENDING) {
return new Pact((resolve, reject) => {
this.thens.push((val) => {
if (val instanceof Pact) {
val.then((val) => resolve(t(val)));
}
else {
resolve(t(val));
}
});
});
}
else if (this.status === STATUS.RESOLVED) {
t(this.resolvedValue);
}
}
}
module.exports = Pact;

vào xem và next qua 2 mục này là kết thúc phần network

bấm next qua 2 cái trên ảnh


/**
* Runs a callback function immediately
* @param {function} callbackFunction
*/
function runCallback(callbackFunction) {
callbackFunction();
}
module.exports = runCallback;

/**
* Runs a callback function immediately
* @param {function} callbackFunction
*/
function runCallback(callbackFunction) {
setTimeout(callbackFunction, 1000);
}
module.exports = runCallback;

class Dialog {
onClose(callbackFunction) {
this.carr = this.carr || [];
this.carr.push(callbackFunction);
}
close() {
for (let i = 0; i < this.carr.length; i++) {
this.carr[i]();
}
}
}
module.exports = Dialog;

class Dialog {
onClose(callbackFunction) {
this.carr = this.carr || [];
this.carr.push(callbackFunction);
}
close() {
for (let i = 0; i < this.carr.length; i++) {
this.carr[i]();
}
}
}
module.exports = Dialog;

function forEach(arr, callback) {
for (let i = 0; i < arr.length; i++) {
callback(arr[i], i);
}
}
module.exports = forEach;

function map(arr, callback) {
let a = [];
for (let i = 0; i < arr.length; i++) {
a.push(callback(arr[i]));
}
return a;
}
module.exports = map;


code bên dưới
const { makeFood } = require('./Kitchen');
class Order {
constructor() {
this.isReady = false;
}
request(food) {
const promise = makeFood(food);
promise.then( (food) => {
this.isReady = true;
});
}
}
module.exports = Order;

const { makeFood } = require('./Kitchen');
class Order {
constructor() {
this.isReady = false;
}
request(food) {
const promise = makeFood(food);
promise.then((food) => {
this.isReady = true;
});
promise.catch((err) => {
this.error = err;
});
}
}
module.exports = Order;

function timer() {
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
resolve('resolve');
}, 1000);
});
return promise;
}
module.exports = timer;

function timer() {
const promise = new Promise(function (resolve, reject) {
setTimeout(function () {
resolve('resolve');
}, 1000);
});
return promise;
}
module.exports = timer;

const { getResults } = require('./lab');
const { sendResults } = require('./messaging');
const { logResponse, logError } = require('./logs');
async function handleResults(patientId) {
try {
const res = await getResults(patientId);
const r = await sendResults(patientId, res);
await logResponse(r);
} catch (ex) {
logError(ex);
}
}
module.exports = handleResults;

const { getResults } = require('./lab');
const { sendResults } = require('./messaging');
const { logResponse, logError } = require('./logs');
async function handleResults(patientId) {
try {
const res = await getResults(patientId);
const r = await sendResults(patientId, res);
await logResponse(r);
} catch (ex) {
logError(ex);
}
}
module.exports = handleResults;


code bên đưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.f1 = (value)=> {
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
this.catchs.push(c);
}
then(t) {
this.thens.push(t);
}
}
module.exports = Pact;

code bên dưới
const STATUS = {
PENDING: 0,
RESOLVED: 1,
REJECTED: 2,
}
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.status = STATUS.PENDING;
this.f1 = (value)=> {
this.resolvedValue = value;
this.status = STATUS.RESOLVED;
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
this.rejectedValue = value;
this.status = STATUS.REJECTED;
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
if (this.status === STATUS.PENDING) {
this.catchs.push(c);
}
else if (this.status === STATUS.REJECTED) {
c(this.rejectedValue);
}
}
then(t) {
if (this.status === STATUS.PENDING) {
this.thens.push(t);
}
else if (this.status === STATUS.RESOLVED) {
t(this.resolvedValue);
}
}
}
module.exports = Pact;

code bên dưới
const STATUS = {
PENDING: 0,
RESOLVED: 1,
REJECTED: 2,
}
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.status = STATUS.PENDING;
this.f1 = (value)=> {
this.resolvedValue = value;
this.status = STATUS.RESOLVED;
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
this.rejectedValue = value;
this.status = STATUS.REJECTED;
for (let i = 0; i < this.catchs.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
if (this.status === STATUS.PENDING) {
this.catchs.push(c);
}
else if (this.status === STATUS.REJECTED) {
c(this.rejectedValue);
}
}
then(t) {
if (this.status === STATUS.PENDING) {
return new Pact((resolve, reject) => {
this.thens.push((val) => {
if (val instanceof Pact) {
val.then((val) => resolve(t(val)));
}
else {
resolve(t(val));
}
});
});
}
else if (this.status === STATUS.RESOLVED) {
t(this.resolvedValue);
}
}
}
module.exports = Pact;

code bên dưới
const STATUS = {
PENDING: 0,
RESOLVED: 1,
REJECTED: 2,
}
class Pact {
constructor(fn) {
this.catchs = [];
this.thens = [];
this.status = STATUS.PENDING;
this.f1 = (value)=> {
this.resolvedValue = value;
this.status = STATUS.RESOLVED;
for (let i = 0; i < this.thens.length; i++) {
this.thensi;
}
};
this.f2 = (value)=> {
this.rejectedValue = value;
this.status = STATUS.REJECTED;
for (let i = 0; i < this.catchFn.length; i++) {
this.catchsi;
}
};
fn(this.f1, this.f2);
}
catch(c) {
if (this.status === STATUS.PENDING) {
this.catchs.push(c);
}
else if (this.status === STATUS.REJECTED) {
c(this.rejectedValue);
}
}
then(t) {
if (this.status === STATUS.PENDING) {
return new Pact((resolve, reject) => {
this.thens.push((val) => {
if (val instanceof Pact) {
val.then((val) => resolve(t(val)));
}
else {
resolve(t(val));
}
});
});
}
else if (this.status === STATUS.RESOLVED) {
t(this.resolvedValue);
}
}
}
module.exports = Pact;

vào xem và next qua 2 mục này là kết thúc phần network
No activity yet