Skip to content

Instantly share code, notes, and snippets.

View JuanLengyel's full-sized avatar
🎯
Focusing

Juan Sebastian Lengyel JuanLengyel

🎯
Focusing
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
,movie_name,domestic_gross,movie_link,production_budget,release_date,worldwide_gross,movie_title
0,Avatar,760507625,http://www.the-numbers.com/movie/Avatar#tab=summary,425000000,12/18/2009,2783918982,Avatar 
1,Star Wars Ep. VII: The Force Awakens,936662225,http://www.the-numbers.com/movie/Star-Wars-Ep-VII-The-Force-Awakens#tab=summary,306000000,12/18/2015,2058662225,Star Wars: Episode VII - The Force Awakens 
2,Pirates of the Caribbean: At World's End,309420425,http://www.the-numbers.com/movie/Pirates-of-the-Caribbean-At-Worlds-End#tab=summary,300000000,5/24/2007,963420425,Pirates of the Caribbean: At World's End 
3,Spectre,200074175,http://www.the-numbers.com/movie/Spectre#tab=summary,300000000,11/6/2015,879620923,Spectre 
4,The Dark Knight Rises,448139099,http://www.the-numbers.com/movie/Dark-Knight-Rises-The#tab=summary,275000000,7/20/2012,1084439099,The Dark Knight Rises 
5,The Lone Ranger,89302115,http://www.the-numbers.com/movie/Lone-Ranger-The#tab=summary,275000000,7/2/2013,260002115,The Lo
We can't make this file beautiful and searchable because it's too large.
movie_title,title_year,color,aspect_ratio,duration,language,country,duration.1,genres,content_rating,plot_keywords,director_name,actor_1_name,actor_2_name,actor_3_name,cast_total_facebook_likes,budget,imdb_score,gross
Avatar ,2009.0,Color,1.78,178.0,English,USA,178.0,Action|Adventure|Fantasy|Sci-Fi,PG-13,avatar|future|marine|native|paraplegic,James Cameron,CCH Pounder,Joel David Moore,Wes Studi,4834,237000000.0,7.9,760505847.0
Pirates of the Caribbean: At World's End ,2007.0,Color,2.35,169.0,English,USA,169.0,Action|Adventure|Fantasy,PG-13,goddess|marriage ceremony|marriage proposal|pirate|singapore,Gore Verbinski,Johnny Depp,Orlando Bloom,Jack Davenport,48350,300000000.0,7.1,309404152.0
Spectre ,2015.0,Color,2.35,148.0,English,UK,148.0,Action|Adventure|Thriller,PG-13,bomb|espionage|sequel|spy|terrorist,Sam Mendes,Christoph Waltz,Rory Kinnear,Stephanie Sigman,11700,245000000.0,6.8,200074175.0
The Dark Knight Rises ,2012.0,Color,2.35,164.0,English,USA,164.0,Action|Thriller,PG-13,deception|imprisonment|lawlessn
@JuanLengyel
JuanLengyel / git_fetch_all.bat
Created October 24, 2019 16:04
Fetch from all remote for all the repositories in current directory
@echo off
for /d %%i in (%cd%\*) do (
echo *************************************************************************
echo "%%i"
cd "%%i"
echo -----------------------------------------
echo fetch --all -v
@JuanLengyel
JuanLengyel / git_status_all.bat
Created October 24, 2019 16:03
Give current status of all repositories that are on the current directory
@echo off
for /d %%i in (%cd%\*) do (
echo *************************************************************************
echo "%%i"
cd "%%i"
echo -----------------------------------------
echo status
@JuanLengyel
JuanLengyel / git_apply_all.bat
Last active April 26, 2021 08:31
Applies a git command to all of the repositories found in the current folder
@echo off
set /p git_command="Type your command: "
for /d %%i in (%cd%\*) do (
echo *************************************************************************
echo "%%i"
cd "%%i"