We can't make this file beautiful and searchable because it's too large.
This file contains hidden or 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
| ID,Movie Name,Rating,Runtime,Genre,Metascore,Plot,Directors,Stars,Votes,Gross,Link | |
| 7,The Dark Knight,9.0,152 min,"Action, Crime, Drama",84,"When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.","['Christopher Nolan', 'Christian Bale', 'Heath Ledger', 'Aaron Eckhart', 'Michael Caine']","['Christian Bale', 'Heath Ledger', 'Aaron Eckhart', 'Michael Caine']",2725188,534858444,https://www.imdb.com/title/tt0468569/ | |
| 9,12 Angry Men,9.0,96 min,"Crime, Drama",97,The jury in a New York City murder trial is frustrated by a single member whose skeptical caution forces them to more carefully consider the evidence before jumping to a hasty verdict.,"['Sidney Lumet', 'Henry Fonda', 'Lee J. Cobb', 'Martin Balsam', 'John Fiedler']","['Henry Fonda', 'Lee J. Cobb', 'Martin Balsam', 'John Fiedler']",815205,4360000,https://www.imdb.com/title/tt0050083/ | |
| 23,Jai Bhim,8.8,164 min,"Crime, Drama, Myste |
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 4.
This file contains hidden or 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
| ID,Movie Name,Rating,Runtime,Genre,Metascore,Plot,Directors,Stars,Votes,Gross,Link | |
| 1,The Shawshank Redemption,9.3,142 min,Drama,82,"Over the course of several years, two convicts form a friendship, seeking consolation and, eventually, redemption through basic compassion.","['Frank Darabont', 'Tim Robbins', 'Morgan Freeman', 'Bob Gunton', 'William Sadler']","['Tim Robbins', 'Morgan Freeman', 'Bob Gunton', 'William Sadler']",2752419,28341469,https://www.imdb.com/title/tt0111161/ | |
| 2,The Godfather,9.2,175 min,"Crime, Drama",100,"Don Vito Corleone, head of a mafia family, decides to hand over his empire to his youngest son Michael. However, his decision unintentionally puts the lives of his loved ones in grave danger.","['Francis Ford Coppola', 'Marlon Brando', 'Al Pacino', 'James Caan', 'Diane Keaton']","['Marlon Brando', 'Al Pacino', 'James Caan', 'Diane Keaton']",1914751,134966411,https://www.imdb.com/title/tt0068646/ | |
| 3,Ramayana: The Legend of Prince Rama,9.2,135 min,"Animation, Action, Adventure",,"An anime ada |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or 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
| ID,Movie Name,Rating,Runtime,Genre,Metascore,Plot,Directors,Stars,Votes,Gross,Link | |
| 1,The Shawshank Redemption,9.3,142 min,Drama,82,"Over the course of several years, two convicts form a friendship, seeking consolation and, eventually, redemption through basic compassion.","['Frank Darabont', 'Tim Robbins', 'Morgan Freeman', 'Bob Gunton', 'William Sadler']","['Tim Robbins', 'Morgan Freeman', 'Bob Gunton', 'William Sadler']",2752419,28341469,https://www.imdb.com/title/tt0111161/ | |
| 2,The Godfather,9.2,175 min,"Crime, Drama",100,"Don Vito Corleone, head of a mafia family, decides to hand over his empire to his youngest son Michael. However, his decision unintentionally puts the lives of his loved ones in grave danger.","['Francis Ford Coppola', 'Marlon Brando', 'Al Pacino', 'James Caan', 'Diane Keaton']","['Marlon Brando', 'Al Pacino', 'James Caan', 'Diane Keaton']",1914751,134966411,https://www.imdb.com/title/tt0068646/ |
This file contains hidden or 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
| # Create rule | |
| touch /etc/udev/rules.d/60-edison.rules | |
| echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="16d0", MODE="0664", GROUP="plugdev"' >> /etc/udev/rules.d/60-edison.rules | |
| # Add current user to plugdev group | |
| usermod -a -G plugdev $USER | |
| # Reload udev rules | |
| udevadm control --reload-rules |
This file contains hidden or 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
| # Create rule | |
| touch /etc/udev/rules.d/50-microbit.rules | |
| echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="0d28", MODE="0664", GROUP="plugdev"' >> /etc/udev/rules.d/50-microbit.rules | |
| # Add current user to plugdev group | |
| usermod -a -G plugdev $USER | |
| # Reload udev rules | |
| udevadm control --reload-rules |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| CREATE DATABASE IF NOT EXISTS blog; | |
| USE blog; | |
| DROP TABLE IF EXISTS blog.posts; | |
| DROP TABLE IF EXISTS blog.users; | |
| CREATE TABLE blog.users ( | |
| username STRING PRIMARY KEY, | |
| last_name STRING NOT NULL, | |
| first_name STRING NOT NULL, |
This file contains hidden or 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
| CREATE DATABASE IF NOT EXISTS clients_veh; | |
| USE clients_veh; | |
| DROP TABLE IF EXISTS clients_veh.client_vehicles; | |
| CREATE TABLE client_vehicles ( | |
| id UUID PRIMARY KEY, | |
| last_name STRING NULL, | |
| first_name STRING NULL, | |
| vehicle_info JSONB NULL |
This file contains hidden or 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
| [ { | |
| "id": "1", | |
| "firstname": "Wilhelm Conrad", | |
| "surname": "R\u00f6ntgen", | |
| "born": "1845-03-27", | |
| "died": "1923-02-10", | |
| "bornCountry": "Prussia (now Germany)", | |
| "bornCountryCode": "DE", | |
| "bornCity": "Lennep (now Remscheid)", | |
| "diedCountry": "Germany", |
This file contains hidden or 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
| <!-- Window snapping code we are adding --> | |
| <keybind key="Super-Left"> | |
| <action name="UnmaximizeFull"/> | |
| <action name="MoveResizeTo"> | |
| <width>50%</width> | |
| <height>100%</height> | |
| <x>0%</x> | |
| <y>0%</y> | |
| </action> | |
| </keybind> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder