Política de Privacidade do App GamaGame
Marlos Irapuan desenvolveu um aplicativo gratuito chamado GamaGame.
Coleta e Uso de Informações
Nós não coletamos nenhuma informação dos usuários.
Sincronização via iCloud
Política de Privacidade do App GamaGame
Marlos Irapuan desenvolveu um aplicativo gratuito chamado GamaGame.
Coleta e Uso de Informações
Nós não coletamos nenhuma informação dos usuários.
Sincronização via iCloud
Install ffmpeg
brew install ffmpeg
Download file through url, like this:
ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i "http://url-file.domain.m3u8" -c copy video.mp4
| #!/usr/bin/env bash | |
| # References: | |
| # https://mac.install.guide/mac-setup/ | |
| # https://medium.com/@laclementine/dotfile-for-mac-efe082ad0d6a | |
| # https://github.com/mathiasbynens/dotfiles/blob/main/.macos | |
| # Close any open System Preferences panes, to prevent them from overriding | |
| # settings we’re about to change | |
| osascript -e 'tell application "System Preferences" to quit' |
| // calc values divided by 100, ex: | |
| // defaultValue={item.price / 100} | |
| // values.item.price / 100 | |
| import { forwardRef } from 'react' | |
| import { CurrencyInput, ICurrencyMaskProps } from 'react-currency-mask' | |
| import { MantineSize, TextInput, TextInputProps } from '@mantine/core' | |
| type MoneyInputComponentProps = ICurrencyMaskProps & |
Política de Privacidade do App MinhasCoisas
Marlos Irapuan desenvolveu um aplicativo gratuito chamado MyStuff ("MinhasCoisas" em português).
Coleta e Uso de Informações
Nós não coletamos nenhuma informação dos usuários.
Sincronização via iCloud
App Privacy Policy for MyStuff App
Marlos Irapuan built a free app called MyStuff ("MinhasCoisas" in ptBR).
Information Collection and Use
We do not collect any information from the users.
iCloud Synchronization
| # /etc/nginx/mime.types | |
| types { | |
| font/ttf ttf; | |
| font/opentype otf; | |
| text/html html htm shtml; | |
| text/css css; | |
| text/xml xml; | |
| image/gif gif; | |
| image/jpeg jpeg jpg; | |
| application/javascript js; |
| FROM ruby:2.6.2-alpine | |
| ENV APP_HOME /src/app | |
| ARG app_env | |
| ENV RAILS_ENV $app_env | |
| ENV RAILS_ROOT $APP_HOME | |
| ENV RAILS_SERVE_STATIC_FILES 1 | |
| ENV LANG C.UTF-8 | |
| ENV PATH /root/.yarn/bin:$PATH |
RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix openssl@1.1)" mise use ruby@2.7.8| import { createContext, useContext } from 'react' | |
| import { createStore, StoreApi } from 'zustand' | |
| import { immer } from 'zustand/middleware/immer' | |
| import { useStoreWithEqualityFn } from 'zustand/traditional' | |
| type State = { | |
| total: number | |
| increase: () => void | |
| decrease: () => void |