Skip to content

Instantly share code, notes, and snippets.

View aspose-com-gists's full-sized avatar

Aspose.com Gists aspose-com-gists

View GitHub Profile
@aspose-com-gists
aspose-com-gists / decompress-lzip-file.cs
Created September 1, 2025 15:54
Decompress LZIP file
using Aspose.Zip;
using Aspose.Zip.Lzip;
namespace AsposeZip
{
class Program
{
static void Main(string[] args)
{
string dataDir = "files";
@aspose-com-gists
aspose-com-gists / compress-lzip-file.cs
Last active September 2, 2025 08:25
Compress LZIP file
using Aspose.Zip;
using Aspose.Zip.Lzip;
namespace AsposeZip
{
class Program
{
static void Main(string[] args)
{
string dataDir = "files";
@aspose-com-gists
aspose-com-gists / convert-csv-to-pandas-dataframe.md
Created September 1, 2025 14:08
Convert CSV to Pandas DataFrame in Python
@aspose-com-gists
aspose-com-gists / convert-json-to-pandas-dataframe.md
Created August 29, 2025 11:02
Convert JSON to Pandas DataFrame in Python
@aspose-com-gists
aspose-com-gists / convert-excel-to-pandas.md
Created August 28, 2025 11:53
Convert Excel to Pandas DataFrame in Python
@aspose-com-gists
aspose-com-gists / ppt-to-xml.cs
Last active August 28, 2025 07:19
PPTX to XML in C#
using Aspose.Slides;
using Aspose.Slides.Export;
namespace AsposeSlides
{
class Graphics
{
static void Main(string[] args)
{
string outFilePath = "document.xml";
@aspose-com-gists
aspose-com-gists / pptx-to-md.cs
Created August 26, 2025 15:57
Convert PPTX to Markdown in C#
using Aspose.Slides.Export;
using Aspose.Slides;
namespace AsposeSlides
{
class Graphics
{
// Convert PPTX to MD in .NET
static void Main(string[] args)
{
@aspose-com-gists
aspose-com-gists / convert-numpy-to-excel.md
Created August 26, 2025 13:42
Convert NumPy to Excel with Aspose.Cells for Python
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Licensing Examples
Last active September 1, 2025 11:16
Installing and clearing the license for the Aspose.TeX for .NET library
Aspose.TeX for .NET – Licensing Examples
@aspose-com-gists
aspose-com-gists / Aspose.PUB for .NET – Licensing Examples
Last active September 1, 2025 11:16
Installing and clearing the license for the Aspose.PUB for .NET library
Aspose.PUB for .NET – Licensing Examples