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
| /** | |
| * Parameters needs to be passed in order 😣🙄😫 | |
| * Sometimes, by mistake can pass in wrong order 🤐 | |
| */ | |
| const fun1 = ( | |
| one: string, | |
| two: number, | |
| three: boolean, | |
| four: string, | |
| five: number |
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
| <head> | |
| <style> | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| height: 100%; | |
| } | |
| .loader-wrapper { | |
| width: 100%; |
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
| <div id="root"> | |
| <div class="loader-wrapper"> | |
| <div class="loader"></div> | |
| </div> | |
| </div> |
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
| machine: | |
| environment: | |
| PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" | |
| node: | |
| version: 7.10.0 | |
| dependencies: | |
| override: | |
| - yarn | |
| cache_directories: |
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
| #include <stdio.h> | |
| #include <malloc.h> | |
| int *makeEqualSize(int *, int, int); | |
| // int calculateArraySize(int *); | |
| void display(int *, int); | |
| int main() | |
| { | |
| int b1[] = {1, 1, 0, 0, 1, 0, 1, 0}; | |
| int b2[] = {1, 0, 1, 0}; |
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
| import requests as r | |
| import bs4 as bs | |
| import re | |
| from imdb import IMDb | |
| import matplotlib.pyplot as plt | |
| import sys | |
| # Functions | |
| def rottenTomatoScrap(movieName): |