Description | Command |
---|---|
Start a new session with session name | screen -S <session_name> |
List running sessions / screens | screen -ls |
Attach to a running session | screen -x |
Attach to a running session with name | screen -r |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
This file contains 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
Hi there! |
This file contains 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
async logout({ jwt }) { | |
const { token, exp: expirationTime = 0 } = jwt; | |
// Convert current date to timestamp in seconds | |
const currentTimestamp = Math.floor(Date.now() / 1000); | |
const remainingTTL = expirationTime - currentTimestamp; | |
if (remainingTTL <= 0) { | |
throw new UnauthorizedException(AuthErrors.tokenExpired); | |
} |
This file contains 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
if (params.sort.length) { | |
// entity-level sortable columns only, doesn't include relationships | |
const sortableColumns: string[] = filter( | |
this.em.getMetadata(PicklistProductEntity.name).properties, | |
({ reference }) => reference === 'scalar' | |
).map(({ name }) => name); | |
if (params.sort.every((sort) => sortableColumns.includes(sort))) { | |
options.orderBy = params.sort.reduce((acc, key, i) => { | |
acc[key] = params.sortDirection |