IP | Country | PORT | ADDED |
---|---|---|---|
41.230.216.70 | tn | 80 | 28 minutes ago |
50.168.72.114 | us | 80 | 28 minutes ago |
50.207.199.84 | us | 80 | 28 minutes ago |
50.172.75.123 | us | 80 | 28 minutes ago |
50.168.72.122 | us | 80 | 28 minutes ago |
194.219.134.234 | gr | 80 | 28 minutes ago |
50.172.75.126 | us | 80 | 28 minutes ago |
50.223.246.238 | us | 80 | 28 minutes ago |
178.177.54.157 | ru | 8080 | 28 minutes ago |
190.58.248.86 | tt | 80 | 28 minutes ago |
185.132.242.212 | ru | 8083 | 28 minutes ago |
62.99.138.162 | at | 80 | 28 minutes ago |
50.145.138.156 | us | 80 | 28 minutes ago |
202.85.222.115 | cn | 18081 | 28 minutes ago |
120.132.52.172 | cn | 8888 | 28 minutes ago |
47.243.114.192 | hk | 8180 | 28 minutes ago |
218.252.231.17 | hk | 80 | 28 minutes ago |
50.175.123.233 | us | 80 | 28 minutes ago |
50.175.123.238 | us | 80 | 28 minutes ago |
50.171.122.27 | us | 80 | 28 minutes ago |
Simple tool for complete proxy management - purchase, renewal, IP list update, binding change, upload lists. With easy integration into all popular programming languages, PapaProxy API is a great choice for developers looking to optimize their systems.
Quick and easy integration.
Full control and management of proxies via API.
Extensive documentation for a quick start.
Compatible with any programming language that supports HTTP requests.
Ready to improve your product? Explore our API and start integrating today!
And 500+ more programming tools and languages
When working with OpenXML, you may need to parse date values from date-formatted cells in Excel spreadsheets. The date values in OpenXML are represented as numeric values, and you need to convert these numeric values to DateTime objects.
Here's an example using C# and the DocumentFormat.OpenXml
library to parse date values from an Excel spreadsheet:
Install the Open XML SDK:
If you haven't already, install the DocumentFormat.OpenXml
NuGet package:
nuget install DocumentFormat.OpenXml
Write the Parsing Code:
Create a C# script or add the following code to your project:
using System;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
class Program
{
static void Main()
{
string filePath = "path/to/your/excelfile.xlsx"; // Replace with the path to your Excel file
// Call the function to parse dates from the Excel file
ParseDatesFromExcel(filePath);
}
static void ParseDatesFromExcel(string filePath)
{
using (SpreadsheetDocument spreadsheetDocument = SpreadsheetDocument.Open(filePath, false))
{
WorkbookPart workbookPart = spreadsheetDocument.WorkbookPart;
SharedStringTablePart sharedStringTablePart = workbookPart.GetPartsOfType().FirstOrDefault();
if (sharedStringTablePart != null)
{
foreach (WorksheetPart worksheetPart in workbookPart.WorksheetParts)
{
foreach (Cell cell in worksheetPart.Worksheet.Descendants())
{
if (cell.DataType != null && cell.DataType.Value == CellValues.SharedString)
{
int sharedStringIndex = int.Parse(cell.InnerText);
string sharedStringValue = sharedStringTablePart.SharedStringTable.Elements().ElementAt(sharedStringIndex).InnerText;
if (DateTime.TryParse(sharedStringValue, out DateTime parsedDate))
{
Console.WriteLine($"Parsed Date: {parsedDate.ToShortDateString()}");
}
else
{
Console.WriteLine("Not a valid date format.");
}
}
else if (cell.CellValue != null)
{
if (DateTime.TryParse(cell.CellValue.Text, out DateTime parsedDate))
{
Console.WriteLine($"Parsed Date: {parsedDate.ToShortDateString()}");
}
else
{
Console.WriteLine("Not a valid date format.");
}
}
}
}
}
}
}
}
|
Replace "path/to/your/excelfile.xlsx"
with the actual path to your Excel file.
Run the Code:
This code uses the SpreadsheetDocument
class from the DocumentFormat.OpenXml.Packaging
namespace to open the Excel file, and it iterates through the cells to parse and print date values. It checks if the cell contains a shared string (string stored in the shared string table) or a direct value. If it's a valid date, it parses and prints it. Adjust the code according to your specific needs and Excel file structure.
Using a proxy in Telegram refers to the practice of routing your Telegram traffic through an intermediary server, known as a proxy server, to hide your IP address, bypass geographical restrictions, or improve security. There are several reasons why someone might use a proxy with Telegram:
1. Privacy and anonymity: By using a proxy, your real IP address is hidden, making it more difficult for Telegram or other users to track your online activities. This can be useful for maintaining privacy or avoiding potential harassment or stalking.
2. Bypassing geographical restrictions: Some Telegram features or content may be restricted based on your location. A proxy can help you bypass these restrictions by routing your traffic through a server in a different country, allowing you to access content that would otherwise be unavailable.
3. Security: Using a proxy can provide an additional layer of security by acting as a buffer between your device and the Telegram platform. This can help protect your account from potential hacking or unauthorized access.
To use a proxy with Telegram, you will need to configure the Telegram app to use the proxy server's IP address and port number. This can usually be done through the app's settings, under the "Data and Storage" or "Privacy and Security" section.
It means that now all the traffic is sent to a VPN server (which can be an ordinary proxy). This is a kind of warning that the remote server can now collect data. Therefore, you should use only well-tested VPN services.
Text parsing is the collection of text information, which is then converted either to form a log file or to perform the task set by the developer.
Open the "Browser Properties" in the control panel, in the "Connections" section of the opened window select "Network Settings". Remove the check mark from the "Use proxy" item, click "OK".
What else…