Skip to content

Instantly share code, notes, and snippets.

View tavoli's full-sized avatar
🎯
Focusing

tavoli tavoli

🎯
Focusing
View GitHub Profile

LinkedIn Job Search Results

Collected: 11/1/2025, 1:51:52 PM Total Jobs: 58 Successful: 58 Failed: 0

============================== JOB #1 ============================== Title: Senior Frontend Developer (React) – LATAM / 100% Remoto

[
{
"id": "Ft4SV",
"name": ".et0eg",
"figma": {
"id": "343:625",
"name": "800x600",
"children": [
{
"id": "DWat1",
{
"id": "0:1",
"name": "Page 1",
"version": "1",
"isRootLayer": true,
"resolution": {
"width": "375px",
"height": "667px"
},
"children": [
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
#!/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
cursor:
style: Beam
live_config_reload: true
shell:
program: /usr/bin/tmux
tabscapes: 2
@tavoli
tavoli / tmux.conf
Last active May 11, 2020 20:08
Configurações do meu tmux
# 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
{
"hour": "01:00",
"playing": "Rafael Nadal vs Miomir Kecmanovic",
"odd": {
"smaller": {
"bet365": "1.071",
"1xbet": "1.06"
},
"bigger": {
"bet365": "9.00",
{
// 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",
import { prop, Typegoose } from 'typegoose'
export class Rating extends Typegoose {
@prop({ required: true })
label: string
@prop({ required: true })
score: number
}