Skip to content

Instantly share code, notes, and snippets.

View edusantana's full-sized avatar
💭
Trabalhando

Eduardo de Santana Medeiros edusantana

💭
Trabalhando
View GitHub Profile
@edusantana
edusantana / guard.rake
Last active June 9, 2020 14:27
Create Guardfile from Rake tasks
ERB_TEMPLATE = <<~HEREDOC
guard :shell do
<% all_tasks.each do |t, files| %>
watch(%r{^(<%= files.join('|') %>)$}) do |m|
system("rake <%= t %>")
end
<% end %>
end
HEREDOC
@edusantana
edusantana / webcam-tirando-foto.html
Created November 29, 2020 21:53
Exemplo de código que tira foto da webcam
<html>
<head>
</head>
<body>
<div id="screenshot">
<video autoplay></video>
<img src="" download="new-image-name.webp">
<canvas style="display:none;"></canvas>
@edusantana
edusantana / limpar_videobot.rb
Created July 16, 2021 11:10
Código para limpar um videobot
require 'json'
j = JSON.load_file('.jb/manifest.template.json')
j['interactives'] = []
j['assets'] = []
j.delete('thumbnailCode')
File.write('.jb/manifest.template.json',JSON.pretty_generate(j))