============================== JOB #1 ============================== Title: Senior Frontend Developer (React) – LATAM / 100% Remoto
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
| [ | |
| { | |
| "id": "Ft4SV", | |
| "name": ".et0eg", | |
| "figma": { | |
| "id": "343:625", | |
| "name": "800x600", | |
| "children": [ | |
| { | |
| "id": "DWat1", |
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
| { | |
| "id": "0:1", | |
| "name": "Page 1", | |
| "version": "1", | |
| "isRootLayer": true, | |
| "resolution": { | |
| "width": "375px", | |
| "height": "667px" | |
| }, | |
| "children": [ |
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 getCSSForInstanceNode(node: InstanceNode): string { | |
| let css = ''; | |
| // Assuming default display behavior for simplicity | |
| css += `display: block;\n`; | |
| // Using relativeTransform for position | |
| if (node.relativeTransform) { | |
| const transform = node.relativeTransform; | |
| const x = transform[0][2]; // X position |
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
| #!/bin/bash | |
| # Find the connection profile with the highest signal strength | |
| PROFILE_NAME=$(nmcli device wifi list | tail -n +2 | sort -nrk 7 | head -n 1 | awk '{print $1}') | |
| # Get the SSID and password from the connection profile file | |
| if [ -f "/etc/NetworkManager/system-connections/$PROFILE_NAME" ]; then | |
| SSID=$(sed -n 's/^ssid=//p' "/etc/NetworkManager/system-connections/$PROFILE_NAME") | |
| PASSWORD=$(sed -n 's/^psk=//p' "/etc/NetworkManager/system-connections/$PROFILE_NAME") | |
| else |
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
| cursor: | |
| style: Beam | |
| live_config_reload: true | |
| shell: | |
| program: /usr/bin/tmux | |
| tabscapes: 2 |
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
| # Detault termtype. If the rcfile sets $TERM, that overrides this value. | |
| set -g default-terminal screen-256color | |
| # support logging out and back in | |
| set -g update-environment "SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION" | |
| # pbcopy support | |
| set-option -g default-command "reattach-to-user-namespace -l bash" | |
| # vi mode |
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
| { | |
| "hour": "01:00", | |
| "playing": "Rafael Nadal vs Miomir Kecmanovic", | |
| "odd": { | |
| "smaller": { | |
| "bet365": "1.071", | |
| "1xbet": "1.06" | |
| }, | |
| "bigger": { | |
| "bet365": "9.00", |
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
Show hidden characters
| { | |
| // Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
| // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
| // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
| // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
| // Placeholders with the same ids are connected. | |
| // Example: | |
| // "Print to console": { | |
| // "scope": "javascript,typescript", |
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
| import { prop, Typegoose } from 'typegoose' | |
| export class Rating extends Typegoose { | |
| @prop({ required: true }) | |
| label: string | |
| @prop({ required: true }) | |
| score: number | |
| } |
NewerOlder