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
| // scrape.js | |
| const puppeteer = require("puppeteer"); | |
| const fs = require("fs"); | |
| const path = require("path"); | |
| // Home page as direct access sometimes denies access | |
| const TARGET_URL = "https://tgeapcet.nic.in/default.aspx"; | |
| async function scrapeAllotments() { |
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
| // odd 1 | |
| class RectanglePoint { | |
| public int length, breadth; | |
| public Point pnt; | |
| static class Point { | |
| public int cX, cY; | |
| public Point(int centreX, int centreY) { | |
| cX = centreX; |
OlderNewer