A collection of commands that change the Arc Browser icon on macOS.
Theme | Command |
---|---|
Candy Arc | defaults write company.thebrowser.Browser currentAppIconName candy |
La distribución del presupuesto en nómina en una empresa de tecnología puede variar significativamente dependiendo de la etapa de la empresa (startup, scale-up, o empresa establecida), el modelo de negocio, y las prioridades estratégicas. Sin embargo, a continuación te doy una idea general basada en cómo suelen estructurarse muchas empresas tecnológicas: | |
1. Equipo Ejecutivo: 5% - 10% | |
• Descripción: Esto incluye salarios y beneficios para los roles de C-level (CEO, CTO, CFO, etc.) y otros altos ejecutivos. Este porcentaje puede ser más alto en empresas más pequeñas donde el equipo ejecutivo juega un rol muy central. | |
2. Área de Tecnología: 25% - 40% | |
• Descripción: Este porcentaje cubre a los ingenieros de software, desarrolladores, arquitectos de sistemas, y equipos de IT en general. En una empresa tecnológica, esta área suele ser una de las más importantes y con mayor presupuesto asignado. |
#!/bin/bash | |
# Get the current wallpaper location on macOS | |
osascript -e 'tell application "System Events" to tell current desktop to get picture' |
/* | |
PoC WhatsApp enumeration of phonenumbers, profile pics, about texts and online statuses | |
Floated div edition | |
01-05-2017 | |
(c) 2017 - Loran Kloeze - [email protected] | |
This script creates a UI on top of the WhatsApp Web interface. It enumerates certain kinds | |
of information from a range of phonenumbers. It doesn't matter if these numbers are part | |
of your contact list. At the end a table is displayed containing phonenumbers, profile pics, | |
about texts and online statuses. The online statuses are being updated every |
I hereby claim:
To claim this, I am signing this object:
ignore = %w(name dafuq) | |
replace_with = "*" | |
data = { | |
secure: { | |
name: 'value 1', | |
last: 'value 2' | |
}, | |
content: { | |
dinamic: { | |
name: 'value 3' |
!function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return t[i].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n={};return e.m=t,e.c=n,e.p="/build/",e(0)}([function(t,e,n){"use strict";function i(t){return t&&t.__esModule?t:{"default":t}}var r=n(5),o=i(r),s=n(20),a=i(s),u=n(21),c=i(u),l=n(40),h=i(l),f=n(41),d=i(f),p=n(75),v=i(p),m=n(78),g=i(m),y=n(85),b=i(y),_=n(88),w=i(_);n(91),(0,o["default"])(a["default"].config,h["default"].development),a["default"].use(c["default"]),a["default"].use(d["default"]),a["default"].component("modal",g["default"]),a["default"].component("personal",b["default"]),a["default"].component("billing",w["default"]),new a["default"]({el:"#vlipco",components:[v["default"],g["default"],b["default"],w["default"]]})},,,,,function(t,e,n){t.exports={"default":n(6),__esModule:!0}},function(t,e,n){n(7),t.exports=n(10).Object.assign},function(t,e,n){var i=n(8);i(i.S+i.F,"Object",{assign:n(13)})},function(t,e,n){var i=n(9),r=n(10),o=n(11),s="prot |
#!/bin/bash | |
cpuused=`top -bn1 | grep "Cpu(s)" | sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | awk '{print 100 - $1}'` | |
critical=90 | |
warning=60 | |
if [[ $cpuused > $critical ]]; then | |
echo "CPU CRITIC $cpuused" | |
exit 2 | |
elif [[ $cpuused > $warning ]]; then | |
echo "CPU HIGH $cpuused" |