This app is needed for games on origin
Install lutris the linux native game client
from lutris, install origin
see attach |
/* a generic reflection based wrapper around common testing boilerplate | |
messages.On("Transaction", ctx, mock.AnythingOfType("func(storage.MessageStorer) error")). | |
Run(func(args mock.Arguments) { | |
err := args.Get(1).(func(tx storage.MessageStorer) error)(tx) | |
assert.NoError(err) | |
}). | |
Return(nil) | |
usage |
# add to shell init file | |
# invoke with `chatgpt` | |
# write prompt to prompt.txt on current dir | |
# install jq | |
chatgpt() { | |
if ! [ -f ./prompt.txt ]; then | |
echo "\"prompt.txt\" file not found on $PWD" | |
return 1 |
const someMachine = Machine({ | |
id: 'form-status', | |
initial: 'prefill', | |
states: { | |
prefill: { | |
on: { | |
SEND: 'sent', | |
SUBMIT: 'completed', | |
}, | |
}, |
Oi <Nome da pessoa>, | |
Obrigado por entrar em contato 😊 | |
Então, atualmente trabalho com <sua empresa> | |
<pq sua empresa eh boa> | |
O trabalho é totalmente remoto e flexível, apenas <fuso> hora de diferença de fuso horário comigo. | |
Trabalho em uma equipe <pq sua equipe eh boa> | |
Gosto muito da minha equipe e dos produtos nos quais trabalhamos. | |
Consigo ter um bom equilíbrio entre a vida pessoal e profissional, nunca trabalho nos fins de semana e sem horas extras. |
node -e 'var rates = new Array(130).fill(0).map((x, i) => (i+4) * 5000).map( year => ({ year, hour: (year/1920.1755589082431).toFixed(0), month: (year/12).toFixed(0) })); console.log(rates)'' |
see original here: https://www.belightsoft.com/products/resources/apfs-bootable-clone-with-command-line
We'll be cloning /
to a new APFS partition using rsync, then we'll be making the preboot volume and creating
some files inside so boot works. Also using bless and updating system cache to make it bootable via mac itself.
var TO_MILIMETER = 25.4 | |
function calc_dpi (widthPixels: number, heightPixels: number, diagonal: float) { | |
var x = width | |
var y = height | |
var ratio = y/x; | |
var xd = Math.sqrt( Math.pow(diagonal,2) / ( 1 + Math.pow(ratio, 2) )); | |
var yd = xd * ratio; | |
var pitch = TO_MILIMETER/(x/xd); | |
var result = { | |
displayDiagonalCentimeters : diagonal * 2.54, |
const newNoteMachine = Machine({ | |
id: 'newNoteMachine', | |
type: 'parallel', | |
context: { id: null }, | |
states: { | |
userPrompt: { | |
initial: 'prompting', | |
states: { | |
prompting: { on: { INPUT: { target: 'working' } }, invoke: { src: 'userPrompt_prompting' } }, | |
working: { |