One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #!/bin/zsh | |
| networksetup -setwebproxystate Wi-Fi off | |
| networksetup -setsecurewebproxystate Wi-Fi off | |
| networksetup -setsocksfirewallproxystate Wi-Fi off | |
| networksetup -setautoproxystate Wi-Fi off | |
| unset http_proxy https_proxy | |
| sudo dscacheutil -flushcache | |
| sudo killall -HUP mDNSResponder | |
| echo "✅ Network settings reset. Relaunch apps if needed." |
| def print_hello_world(): | |
| print("Hello world") | |
| print_hello_world() | |
| def calculate_100_x_200(): | |
| ans = 100 * 200 | |
| print("The value is ", ans) | |
| print_hello_world() |
| data = [ | |
| [8, 3, 4, 1, 5, 9, 6, 7, 2], | |
| [4, 3, 8, 9, 5, 1, 2, 7, 6], | |
| [8, 1, 6, 3, 5, 7, 4, 9, 2], | |
| [6, 1, 8, 7, 5, 3, 2, 9, 4], | |
| [2, 9, 4, 7, 5, 3, 6, 1, 8], | |
| [4, 9, 2, 3, 5, 7, 8, 1 ,6], | |
| [2, 7, 6, 9, 5, 1, 4, 3, 8], | |
| [6, 7, 2, 1, 5, 9, 8, 3, 4], | |
| ]; |
| // @flow | |
| import React, { Fragment } from "react"; | |
| import FormContext from "./FormContext"; | |
| const Form = () => ( | |
| <FormProvider> | |
| <FormContext.Consumer> | |
| {({ email, password, handleChangePassword, handleChangeEmail, handleSubmit }) => ( | |
| <form | |
| onSubmit={handleSubmit} | |
| > |
| object-position: center; | |
| object-fit: cover; | |
| height: auto; | |
| min-height: 100%; |
| import React, { Component } from 'react' | |
| class DragAndDrop extends Component { | |
| state = { | |
| drag: false | |
| } | |
| dropRef = React.createRef() | |
| handleDrag = (e) => { | |
| e.preventDefault() | |
| e.stopPropagation() | |
| } |
| function resolve(path, obj=self, separator='.') { | |
| var properties = Array.isArray(path) ? path : path.split(separator) | |
| return properties.reduce((prev, curr) => prev && prev[curr], obj) | |
| } |
| { | |
| "presets": ["react-native"] | |
| } |