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
| // 1. Store the object as global | |
| // 2. It will generate the json as you wish. Copy and start hacking. | |
| [...temp1].map((i, index) => { return { id: index+1, href: i.children[0].href, name: i.children[0].textContent} }) |
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
| let htmlString = ` | |
| <table> | |
| <tbody> | |
| <tr> | |
| <td>TN-01</td> | |
| <td>Chennai (Central): Ayanavaram</td> | |
| <td>RTO</td> | |
| <td>Chennai</td> | |
| </tr> | |
| <tr> |
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 { useState } from "react"; | |
| function App() { | |
| const [tripDistance, setTripDistance] = useState(0) | |
| const [fuelConsumption, setFuelConsumption] = useState(0) | |
| const [costPerLitre, setCostPerLitre] = useState(102) | |
| const [totalCost, setTotalCost] = useState(0) | |
| const calculateCost = () => { | |
| const total_fuel_burnt = tripDistance / fuelConsumption |
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
| USER ID | GENDER | FOLLOWERS | FOLLOWING | |
|---|---|---|---|---|
| 189941 | Male | 730 | 513 | |
| 24195 | Male | 1073 | 1644 | |
| 45082 | Male | 1961 | 1272 | |
| 179352 | Male | 2750 | 2595 | |
| 122942 | Male | 19 | 975 | |
| 16262 | Male | 430 | 8388 | |
| 166947 | Male | 321 | 52308 | |
| 199190 | Male | 577 | 402 | |
| 206755 | Female | 613 | 402 |
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
| # For example: | |
| # If your burpsuite jar is named: burpsuite_pro_v1.7.11.jar | |
| # ..and located at: /opt/burpsuite/ | |
| # | |
| # export BURP_VER=1.7.11 | |
| # export BURP_PATH=/opt/burpsuite/ | |
| export BURP_VER=YOUR_VERSION | |
| export BURP_PATH=YOUR_PATH |
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
| <!-- | |
| How to use: | |
| 1.Create a facebook application here https://developers.facebook.com/apps/ | |
| - Open https://developers.facebook.com/tools/explorer , select your Application , select your FB Page, and copy access token : | |
| This is called as the short lived access token, and will be valid for 30min or 1 hour | |
| - Then open https://graph.facebook.com/oauth/ac...=<app_secret>&fb_exchange_token=<short_token> (replace the values correctly) . | |
| This will give out another access token. Copy that token correctly from the response. It will be something like: | |
NewerOlder