IP | Country | PORT | ADDED |
---|---|---|---|
50.169.222.242 | us | 80 | 26 minutes ago |
46.183.130.89 | ru | 1080 | 26 minutes ago |
122.116.29.68 | tw | 4145 | 26 minutes ago |
194.182.178.90 | bg | 1080 | 26 minutes ago |
194.182.187.78 | at | 1080 | 26 minutes ago |
50.175.212.76 | us | 80 | 26 minutes ago |
91.108.130.18 | ir | 3128 | 26 minutes ago |
50.218.208.15 | us | 80 | 26 minutes ago |
50.169.222.244 | us | 80 | 26 minutes ago |
50.168.61.234 | us | 80 | 26 minutes ago |
194.182.163.117 | ch | 1080 | 26 minutes ago |
194.87.93.21 | ru | 1080 | 26 minutes ago |
185.46.97.75 | ru | 1080 | 26 minutes ago |
50.175.123.232 | us | 80 | 26 minutes ago |
125.228.143.207 | tw | 4145 | 26 minutes ago |
188.40.59.208 | de | 1080 | 26 minutes ago |
50.145.138.146 | us | 80 | 26 minutes ago |
46.105.105.223 | gb | 44290 | 26 minutes ago |
203.99.240.179 | jp | 80 | 26 minutes ago |
125.228.94.199 | tw | 4145 | 26 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
In a local network, you will need two computers to do this. One will be used as a proxy server, the other as a client. Then you need to activate the proxy on the server. And on the client PC - choose to access the Internet via a local network connection (i.e. from the server). Another option is to use a web server like Nginx.
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.
The main scenarios for using a proxy server: bypassing blocking, hiding the real IP, protection of confidential data when connecting to public WiFi access points, interaction with blocked applications, connection to closed portals, forums (which operate only in one country, region).
To check if your computer uses a proxy-server, you just need to use any browser (Yandex Browser, Opera, Google Chrome). Then you need to follow the algorithm:
Start your browser.
Go to "Settings".
In the search box enter the query "proxy".
Click on "Proxy settings".
In the tab that opens, select "Network settings".
This will open a tab with the IP address and port of the proxy server, if it is used. If the function is disabled, the line will be empty, and the option itself is disabled.
A server proxy is software installed on a computer on a network that allows you to make requests to other computers on your behalf. A server proxy is a kind of intermediary that ensures the secure exchange of data.
What else…