Analisar os conhecimentos de programação, bem como, entender os passos que foram seguidos no desenvolvimento da aplicação aqui especificada.
This file contains 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
Buscamos um profissional para ser parte integrante do time de suporte. Nesta posição você será responsável pelo atendimento remoto e presencial aos usuários. Buscamos um profissional dinamico capaz de lidar com diversos perfis de usuários e diferentes situações. | |
Responsabilidades | |
• Suporte técnico (Hardware/Software) a usuários e estações de trabalho (desktops, notebooks, impressoras, sistemas e aplicativos); | |
• Formatação de máquinas; | |
• Instalação e acompanhamento de antivírus; | |
• Monitorar a abertura e atendimento de chamados e incidentes; | |
• Preparar e manter controle de estações de trabalho; | |
• Preparar e manter controle de equipamentos de TI; | |
• Configuração de celulares, tablets e sistemas audiovisuais; |
This file contains 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
task channel_keep_alive: :environment do | |
ws = Binance::Client::WebSocket.new | |
message = proc { |e| puts e.data } | |
wallets_total = Wallet.count | |
EM.run do | |
spawned_process = EM.spawn do |params| | |
wallets = Wallet.where(disabled: false) | |
wallets_total = Wallet.count | |
channels = [] |
This file contains 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
<a class="fb-login-button btn-block fb_iframe_widget" data-size="large" data-width="100%" data-button-type="continue_with" data-auto-logout-link="false" data-use-continue-as="true" onlogin="redirectFacebookButton" href="/users/auth/facebook" login_text="Entrar com Facebook" fb-xfbml-state="rendered" fb-iframe-plugin-query="app_id=2290086671046710&auto_logout_link=false&button_type=continue_with&container_width=414&locale=pt_BR&login_text=Entrar%20com%20Facebook&sdk=joey&size=large&use_continue_as=true&width=100%25"> | |
<span style="vertical-align: bottom; width: 100%; height: 40px;"> | |
<iframe name="f33e58c30a31c0c" height="1000px" title="fb:login_button Facebook Social Plugin" frameborder="0" allowtransparency="true" allowfullscreen="true" scrolling="no" allow="encrypted-media" src="https://www.facebook.com/v3.3/plugins/login_button.php?app_id=2290086671046710&auto_logout_link=false&button_type=continue_with&channel=https%3A%2F%2Fstaticxx.facebook.com%2Fconnec |
This file contains 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
# frozen_string_literal: true | |
class Instagram | |
include HTTParty | |
base_uri 'https://graph.facebook.com/v4.0' | |
def initialize(access_token) | |
@options = { query: { access_token: access_token } } | |
end |
This file contains 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
<% | |
if (s.forceSsl) { | |
%> | |
server { | |
listen 80; | |
server_name <%-s.publicDomain%>; | |
# Used by Lets Encrypt |
This file contains 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
# frozen_string_literal: true | |
namespace :plans do | |
task renew: :environment do | |
users = User.where(plan_status: true, plan_date: Date.today - 1.month) | |
next if users.empty? | |
users.each do |user| | |
transaction = PlanPayment.bill_card(user.card_id) |
This file contains 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
# frozen_string_literal: true | |
module ProviderHelper | |
def method_missing(method, *args, &block) | |
"" | |
end | |
def xxx | |
case provider | |
when 'instagram' |
This file contains 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
# frozen_string_literal: true | |
class Influencer < ApplicationRecord | |
include ProviderHelper | |
belongs_to :user | |
has_many :influencer_analytics | |
validates_uniqueness_of :provider, scope: :provider_code | |
store :data, accessors: %i[instagram youtube], coder: JSON |
This file contains 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
# frozen_string_literal: true | |
module InstagramProviderHelper | |
def network | |
send(provider) | |
end | |
def last_photo | |
network&.dig(:medias, -1, :media_url) | |
end |
NewerOlder