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
| package main | |
| import ( | |
| // "github.com/anchore/syft/syft/pkg/cataloger/python" | |
| "fmt" | |
| "github.com/anchore/syft/syft" | |
| "github.com/anchore/syft/syft/format" | |
| "github.com/anchore/syft/syft/format/cyclonedxjson" | |
| "github.com/anchore/syft/syft/pkg/cataloger" | |
| "github.com/anchore/syft/syft/sbom" |
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
| [INFO] Error stacktraces are turned on. | |
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] ---------------------------< org.vss:kafka >---------------------------- | |
| [INFO] Building kafka 1.0-SNAPSHOT | |
| [INFO] --------------------------------[ jar ]--------------------------------- | |
| [INFO] | |
| [INFO] >>> maven-dependency-plugin:2.8:analyze (default-cli) > test-compile @ kafka >>> | |
| [INFO] | |
| [INFO] --- scala-maven-plugin:4.8.1:add-source (default) @ kafka --- |
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
| ! [SYNTAX] https://help.adblockplus.org/hc/en-us/articles/360062733293 | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.box-host.box | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.for-desktop | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.modal-backdrop | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.vebo-sp | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.mc_padding | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.to-left | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.to-right | |
| /banhkhuc/,/thapcam/,/xoilac/,/90phut/,/vebo/##.ft-box, |
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
| #! /opt/miniconda3/bin/python | |
| import requests | |
| from bs4 import BeautifulSoup | |
| tiengruoi = requests.get('https://bit.ly/tiengruoi') | |
| soup = BeautifulSoup(tiengruoi.text, 'html.parser') | |
| # Find all elements with class "cl_item" |
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
| from pyspark.sql import SparkSession | |
| spark = SparkSession.builder.appName("SimpleApp").getOrCreate() | |
| data = [("Alice", 1), ("Bob", 2), ("Charlie", 3)] | |
| df = spark.createDataFrame(data, ["Name", "Age"]) | |
| df.show() |