Skip to content

Instantly share code, notes, and snippets.

View atilara's full-sized avatar
🥸

Átila Rodrigues atilara

🥸
  • Pernambuco, Brasil.
View GitHub Profile
@atilara
atilara / cloudSettings
Last active October 16, 2020 14:58
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-10-16T14:58:26.304Z","extensionVersion":"v3.4.3"}
@atilara
atilara / movie_metada.csv
Created November 7, 2023 00:40
movie_metadata
We can't make this file beautiful and searchable because it's too large.
color,director_name,num_critic_for_reviews,duration,director_facebook_likes,actor_3_facebook_likes,actor_2_name,actor_1_facebook_likes,gross,genres,actor_1_name,movie_title,num_voted_users,cast_total_facebook_likes,actor_3_name,facenumber_in_poster,plot_keywords,movie_imdb_link,num_user_for_reviews,language,country,content_rating,budget,title_year,actor_2_facebook_likes,imdb_score,aspect_ratio,movie_facebook_likes
Color,James Cameron,723,178,0,855,Joel David Moore,1000,760505847,Action|Adventure|Fantasy|Sci-Fi,CCH Pounder,Avatar ,886204,4834,Wes Studi,0,avatar|future|marine|native|paraplegic,http://www.imdb.com/title/tt0499549/?ref_=fn_tt_tt_1,3054,English,USA,PG-13,237000000,2009,936,7.9,1.78,33000
Color,Gore Verbinski,302,169,563,1000,Orlando Bloom,40000,309404152,Action|Adventure|Fantasy,Johnny Depp,Pirates of the Caribbean: At World's End ,471220,48350,Jack Davenport,0,goddess|marriage ceremony|marriage proposal|pirate|singapore,http://www.imdb.com/title/tt0449088/?ref_=fn_tt_tt_1,1238,English,USA,PG-13,3
@atilara
atilara / sample_airbnb.listingsAndReviewsLimited.json
Last active November 12, 2023 18:53
sample_airbnb.listingsAndReviewsLimited
[{
"_id": "10006546",
"listing_url": "https://www.airbnb.com/rooms/10006546",
"name": "Ribeira Charming Duplex",
"summary": "Fantastic duplex apartment with three bedrooms, located in the historic area of Porto, Ribeira (Cube) - UNESCO World Heritage Site. Centenary building fully rehabilitated, without losing their original character.",
"space": "Privileged views of the Douro River and Ribeira square, our apartment offers the perfect conditions to discover the history and the charm of Porto. Apartment comfortable, charming, romantic and cozy in the heart of Ribeira. Within walking distance of all the most emblematic places of the city of Porto. The apartment is fully equipped to host 8 people, with cooker, oven, washing machine, dishwasher, microwave, coffee machine (Nespresso) and kettle. The apartment is located in a very typical area of the city that allows to cross with the most picturesque population of the city, welcoming, genuine and happy people that fills the streets with his outspoken spe
@atilara
atilara / bdnc-mongodb-workshop-answers.js
Last active November 27, 2023 20:03
bdnc-mongodb-workshop-answers
// Encontrar propriedades que aceitam animais de estimação
db.collection.find({ "amenities": "Pets allowed" })
// Encontrar propriedades com um preço inferior a 100.00
db.collection.find({ "price": { $lt: 100.00 } })
// Listar propriedades localizadas no RJ com uma pontuação de avaliação superior a 9
db.collection.find({
"address.market": "Rio De Janeiro",
"review_scores.review_scores_value": {
@atilara
atilara / quartz.ps1
Created January 5, 2024 00:55
quartz-sync
# Verifica se o script está sendo executado como administrador
$isAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)
if (-not $isAdmin) {
# Se não estiver sendo executado como administrador, solicita privilégios de administrador e reinicia o script
Start-Process powershell -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs
Exit
}
# Navega para a pasta C://quartz