- Install Bundler - A dependency manager for Ruby
Bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that are needed.
| const scrapeData = () => { | |
| const sections = document.querySelectorAll("#screener-table > table"); | |
| const headingElements = sections[0].querySelectorAll("th"); | |
| const scrapedData = Array.from(headingElements).map(elm => { | |
| const selector = elm.getAttribute("id") === "name" ? "data-col" : elm.getAttribute("id") + "-col"; | |
| const rowElements = sections[0].querySelectorAll('tbody')[0].querySelectorAll("." + selector + " .ellipsis .desktop--only") | |
| return { | |
| column: elm.querySelector(".data-cell .desktop--only") ? elm.querySelector(".data-cell .desktop--only").textContent : "#", |
Bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that are needed.
| import androidx.compose.animation.* | |
| import androidx.compose.animation.core.tween | |
| import androidx.compose.material.* | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.onCommit | |
| import androidx.compose.ui.Modifier | |
| @OptIn(ExperimentalAnimationApi::class, ExperimentalMaterialApi::class) | |
| @Composable | |
| fun <T> AnimatedSwipeDismiss( |
| import React from 'react' | |
| import { StatusBar, Text, View } from 'react-native' | |
| import { useSafeArea } from 'react-native-safe-area-context' | |
| export function App() { | |
| const safeAreaInsets = useSafeArea() | |
| return ( | |
| <View | |
| style={{ |
| <!--- Provide a general summary of your changes in the Title above --> | |
| <!--- If there is no changelog entry, label this PR as trivial to bypass the Danger warning --> | |
| ## Description | |
| <!--- Describe your changes in detail --> | |
| ## Motivation and Context | |
| <!--- Why is this change required? What problem does it solve? --> |
Hi, I am a fork from https://gist.github.com/patrickhammond/4ddbe49a67e5eb1b9c03.
A high level overview for what I need to do to get most of an Android environment setup and maintained on OSX higher Catalina and Big Sur with and without Android Studio been installed.
Considering the SDK is installed under /Users/<your_user>/Library/Android/sdk folder which is the Android Studio preferred SDK location, but it works fine under /usr/local/share/android-sdk as well, which is a location pretty much used on CI mostly.
https://github.com/shyiko/jabba instead ?
| import requests | |
| import base64 | |
| from tqdm import tqdm | |
| master_json_url = 'https://178skyfiregce-a.akamaihd.net/exp=1474107106~acl=%2F142089577%2F%2A~hmac=0d9becc441fc5385462d53bf59cf019c0184690862f49b414e9a2f1c5bafbe0d/142089577/video/426274424,426274425,426274423,426274422/master.json?base64_init=1' | |
| base_url = master_json_url[:master_json_url.rfind('/', 0, -26) + 1] | |
| resp = requests.get(master_json_url) | |
| content = resp.json() |
Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.
Prerequisites (for Homebrew at a minimum, lots of other tools need these too):
xcode-select --install will prompt up a dialog)Install Homebrew:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
| // Problem A - Nineteen | |
| // http://codeforces.com/contest/393/problem/A | |
| #include <string> | |
| #include <cstdlib> | |
| #include <iostream> | |
| #include <algorithm> | |
| int cnt[256]; |