Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex| /* | |
| * Infinite Scroll using Remix Run | |
| * Based on client-side Scroll position | |
| * Full Article here: https://dev.to/ptenteromano/infinite-scroll-with-remix-run-1g7 | |
| */ | |
| import { useEffect, useState, useCallback } from "react"; | |
| import { LoaderFunction, useLoaderData, useFetcher } from "remix"; | |
| import { fetchPhotos } from "~/utils/api/restful"; | |
| import type { PhotoHash } from "~/utils/api/types"; |
| Registered Name: https://zhile.io | |
| License Key: 48891cf209c6d32bf4 |
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex| import { select, put, take } from 'redux-saga/effects'; | |
| function* emptySaga() {} | |
| export function* withConfirmation(text, onConfirm, onCancel = emptySaga) { | |
| yield put({ type: 'ShowConfirmationDialog', payload: text }); | |
| const { type } = yield take([ | |
| 'ConfirmationDialogConfirmed', | |
| 'ConfirmationDialogCanceled' |
| puts "Enter latitude in decimal degrees:" | |
| lat_deg = gets.to_f | |
| puts "Enter longitude in decimal degrees:" | |
| lon_deg = gets.to_f | |
| lon_rad = (lon_deg / 180.0 * Math::PI) | |
| lat_rad = (lat_deg / 180.0 * Math::PI) | |
| sm_a = 6378137.0 | |
| x = sm_a * lon_rad | |
| y = sm_a * Math.log((Math.sin(lat_rad) + 1) / Math.cos(lat_rad)) |