Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { cpuIntensiveFunc } from './cpu_intensive_func';
import { ioIntensiveFunc } from './io_intensive_func';
import type { Task } from './queue';

// Tasks
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#til this is cool

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#til hello

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Way to go @chngl! Your learning is saved. Visit https://til.xyz to see all your learnings.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#til why?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#til why?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Way to go @chngl! Tyl: not every til is an acronym 😄

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @til, you mentioned til, but you don't seem to have a #Today I learned account or you haven't linked your account with Github.
Sign up on #Today I learned to start capturing useful coding tricks on Github with til today!

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#til halo

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Way to go @tilxyz! Your learning is saved. Visit https://622cb72cf427.ngrok.app to see all your learnings.

Sign up on #Today I learned to start capturing useful coding tricks on Github with #til today!

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Way to go @tilxyz! Your learning is saved. Visit https://til.xyz to see all your learnings.

Sign up on #Today I learned to start capturing useful coding tricks on Github with #til today!

export const tasks: Array<Task> = [
{
id: 1,
Expand All @@ -27,4 +28,4 @@ export const tasks: Array<Task> = [
});
},
},
];
];