Trending

#fileupload

Latest posts tagged with #fileupload on Bluesky

Latest Top
Trending

Posts tagged #fileupload

How to upload file(s) to your Microsoft Loop Workspace? #microsoftloop #loopapp #fileupload – YouTube How to upload file(s) to your Microsoft Loop Workspace? #microsoftloop #loopapp #fileupload

How to upload file(s) to your Microsoft Loop Workspace? #microsoftloop #loopapp #fileupload – YouTube

How to upload file(s) to your Microsoft Loop Workspace? #microsoftloop #loopapp #fileupload

0 0 0 0
Post image

Anonymous file sharing.
No account. No tracking. No limits.

👉 avfile.io
#PrivacyFirst #FileUpload

1 0 0 0
Bulk SMS File Upload: Supporting Multiple Formats for Maximum Flexibility

Bulk SMS File Upload: Supporting Multiple Formats for Maximum Flexibility

Bulk SMS file upload guide: CSV, XLS, XLSX, TXT, ZIP format support, validation, and error handling. Learn more: www.smsgatewaycenter.com/blog/bulk-sm...

#BulkSMS #FileUpload #SMSMarketing #BusinessTools

1 0 0 0
Preview
Google just made it easier to upload files in AI Mode - try it now Quietly appearing on Google's search page, a new plus button allows you to upload files and images for AI analysis.

Google just made it easier to upload files in AI Mode - try it now #Technology #SoftwareandApps #Other #GoogleAI #FileUpload #TechNews

0 0 0 0

Is anyone still using #Apache Commons #FileUpload 's ProgressListener? Felt nostalgic & migrated (call it POC) the old (currently removed in #Spring 6+) CommonsMultipartResolver to #Jakarta (FileUpload2 is close to final). Had forgotten about the "CSRF token fun" but got it to work. #Java

1 1 0 0
Post image

SFTP Meets PostgreSQL: Building a Smart File Upload System with Quarkus Dev Services
Most file-handling tutorials stop at REST endpoints and a local filesystem.
buff.ly/Fz6qz0a
#Java #Quarkus #SFTP #FileUpload #ComposeDevServices

3 1 0 0
Preview
How to Install Zipline on Your Synology NAS Trustworthy expert guide to your Synology NAS.

How to Install Zipline on Your Synology NAS
mariushosting.com/how-to-insta... #Synology #NAS #Docker #Portainer #Zipline #FileServer #FileUpload #OpenSource #homelab #selfhost #selfhosted #selfhosting #DSM #DSM7 #DSM71 #DSM72 #DSM721 #DSM722 #mariushosting

4 1 0 0
Post image

Daily UI Challenge #031 - File Upload
.
.
.
#figma #figmadesign #uiux #uiuxdesign #dailyui #dailyuichallenge #031 #dailyuichallenge031 #fileupload #upload#피그마#피그마디자인#데일리#챌린지#데일리챌린지#ui디자인#디자인#디자이너#uiux디자이너#uiux디자인

0 0 0 0
Post image

🛡️ Can you break it before it breaks your server? 🐱‍💻

👀 Challenge: Spot the vulnerability.

💬 Drop your exploit ideas (for educational purposes only, of course 😅).

#WebSecurity #PHPDevelopers #CTFChallenge #Dotpotit #Cybersecurity #FileUpload #HackTheBox #WebDevFun

1 0 0 0
Preview
Lightweight Custom File Input Control - FileBokz | CSS Script A tiny, zero-dependency library for creating highly customizable HTML file inputs with drag-and-drop and validation.

FileBokz: A tiny JS lib for better file inputs. Zero deps.

✅ Drag & drop (in/out/between)
🖼️ Previews
⚙️ Custom validation (size/type/count)
🛠️ Flexible HTML/CSS config

Works great w/ standard forms.

👉 www.cssscript.com/file-input-f...

#javascript #css #webdev #fileupload

1 0 0 0
Preview
🔐 𝗙𝗶𝗹𝗲 𝗨𝗽𝗹𝗼𝗮𝗱 𝗶𝗻 𝗔𝗦𝗣.𝗡𝗘𝗧 𝗖𝗼𝗿𝗲: 𝗕𝗲𝘀𝘁 𝗣𝗿𝗮𝗰𝘁𝗶𝗰𝗲𝘀 𝗳𝗼𝗿 𝗦𝗲𝗰𝘂𝗿𝗶𝘁𝘆 In my 𝗝𝗼𝗯 𝗔𝗽𝗽𝗹𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗧𝗿𝗮𝗰𝗸𝗲𝗿 project, I’ve implemented a secure file upload system. While client-side validation (e.g., file size, type) improves user experience, 𝘀𝗲𝗿𝘃𝗲𝗿-𝘀𝗶𝗱𝗲 𝘃𝗮𝗹𝗶𝗱𝗮𝘁𝗶𝗼𝗻 is essential for 𝘀𝗲𝗰𝘂𝗿𝗶𝘁𝘆. It ensures that malicious users cannot bypass your checks and upload unsafe files. 𝗝𝗮𝘃𝗮𝗦𝗰𝗿𝗶𝗽𝘁 𝗟𝗼𝗴𝗶𝗰: // Client-side file type and size validation if (file.size > 5 * 1024 * 1024) alert("Max size: 5MB."); if (file.name.split('.').pop().toLowerCase() !== 'pdf') alert("Only PDF allowed."); 𝗦𝗲𝗿𝘃𝗲𝗿-𝗦𝗶𝗱𝗲 𝗩𝗮𝗹𝗶𝗱𝗮𝘁𝗶𝗼𝗻 (𝗔𝗦𝗣.𝗡𝗘𝗧 𝗖𝗼𝗿𝗲): if (file.Length > 5 * 1024 * 1024) return BadRequest("File size > 5MB."); if (Path.GetExtension(file.FileName).ToLower() != ".pdf") return BadRequest("Only PDFs."); 𝗨𝗽𝗹𝗼𝗮𝗱𝗧𝗲𝗺𝗽𝗥𝗲𝘀𝘂𝗺𝗲() 𝗟𝗼𝗴𝗶𝗰: string tempPath = Path.Combine(Directory.GetCurrentDirectory(), "temp-uploads", fileName); using (var stream = new FileStream(tempPath, FileMode.Create)) { await file.CopyToAsync(stream); // Save to temp folder } 𝗗𝗲𝗹𝗲𝘁𝗶𝗻𝗴 𝗧𝗲𝗺𝗽 𝗙𝗶𝗹𝗲 𝗮𝗳𝘁𝗲𝗿 𝗗𝗮𝘁𝗮𝗯𝗮𝘀𝗲 𝗦𝗮𝘃𝗲: System.IO.File.Delete(tempPath); // Delete temp file after saving to DB 𝗪𝗵𝘆 𝗩𝗮𝗹𝗶𝗱𝗮𝘁𝗲 𝗕𝗼𝘁𝗵 𝗖𝗹𝗶𝗲𝗻𝘁-𝗦𝗶𝗱𝗲 𝗮𝗻𝗱 𝗦𝗲𝗿𝘃𝗲𝗿-𝗦𝗶𝗱𝗲? * Client-side validation can be bypassed, so server-side checks are crucial for 𝘀𝗲𝗰𝘂𝗿𝗶𝘁𝘆. * Validating file size, type, and MIME type ensures that the file is exactly what it should be. * 𝗣𝗿𝗼𝘁𝗲𝗰𝘁 𝘆𝗼𝘂𝗿 𝘀𝘆𝘀𝘁𝗲𝗺 from malicious uploads and errors. 🔄 𝗛𝗼𝘄 𝗱𝗼 𝘆𝗼𝘂 𝗵𝗮𝗻𝗱𝗹𝗲 𝗳𝗶𝗹𝗲 𝘂𝗽𝗹𝗼𝗮𝗱𝘀 𝗶𝗻 𝘆𝗼𝘂𝗿 𝗽𝗿𝗼𝗷𝗲𝗰𝘁𝘀? 𝗗𝗼 𝘆𝗼𝘂 𝗿𝗲𝗹𝘆 𝗼𝗻 𝗰𝗹𝗶𝗲𝗻𝘁-𝘀𝗶𝗱𝗲 𝘃𝗮𝗹𝗶𝗱𝗮𝘁𝗶𝗼𝗻 𝗮𝗹𝗼𝗻𝗲, 𝗼𝗿 𝗱𝗼 𝘆𝗼𝘂 𝗽𝗿𝗶𝗼𝗿𝗶𝘁𝗶𝘇𝗲 𝘀𝗲𝗿𝘃𝗲𝗿-𝘀𝗶𝗱𝗲 𝗰𝗵𝗲𝗰𝗸𝘀 𝗳𝗼𝗿 𝘀𝗲𝗰𝘂𝗿𝗶𝘁𝘆? 𝗟𝗲𝘁’𝘀 𝗱𝗶𝘀𝗰𝘂𝘀𝘀!
0 0 0 0
Post image

You can offer custom products like personalized phone cases, t-shirts with unique designs, engraved jewelry, custom printed guitar picks, or DTF gang sheet. Upload Center, Tru for Free: apps.shopify.com/upload-center

#shopify #fileupload #shopifystore #app

1 0 0 0
Preview
How to Add Many2Many Field in CSV File Odoo Tutorial In this tutorial, we explain how to add many2many field in CSV file Odoo in a clear and practical way. In this blog post, we cover how to upload and extract a file, work with CSV examples, and map many2many field values in the Odoo framework. We use CSV file Odoo examples, file upload techniques, and clear steps to help you integrate many-to-many fields by using a CSV file in your Odoo module.

CSV import tutorial explains the process of adding many2many fields in CSV files for Odoo. Follow clear steps for file upload, extraction, mapping, and troubleshooting. #Odoo #CSVImport #Many2Many #Tutorial #FileUpload

0 0 0 0

With Simple File Upload, you can focus on building your app not wrestling cloud storage. Plus, you can try it free for 7 days!

#FileUpload, #React, #ReactJS #WebDevelopment, #CloudStorage, #FileUploading

0 0 0 0
Preview
Odoo XML: Adding Binary Fields This tutorial explains how to add binary fields in XML files in Odoo. Furthermore, we cover crucial aspects such as creating records, handling different field types (many2one, many2many, one2many), and managing file uploads. Consequently, you will learn to properly maintain binary fields when creating new records through XML. Introduction to Binary Fields in Odoo Binary fields in Odoo store data, such as files or images, in a binary format.

Learn how to add binary fields in XML files within Odoo! This tutorial covers creating records, handling different field types, and managing file uploads in Odoo. #Odoo #OdooTutorial #BinaryField #XML #FileUpload #OdooDevelopment #TechTutorial

0 0 0 0
Video

ChatGPT Gets File & Image Uploads! Major OpenAI Update Explained

Link for free https://vist.ly/3muw7ur

#ChatGPT #OpenAI #AIUpdate #ChatGPTFeatures #AIInnovation #FileUpload #ImageUpload #TechNews #AIAssistant #MachineLearning

1 0 0 0
Preview
Google Search may soon let you upload files to ask questions Google might soon let you upload a file in Search and ask questions about it, though the feature is still in testing.

Imagine uploading a file into Google Search and asking it questions like “What are the key points in this document?” Rumour has it Google’s testing this out. How could it save time for your business?

#GoogleSearch #FileUpload #TimeSaver

0 0 0 0
Uploading Files with Flask | 100 Days of Python Programming | Day 89
Uploading Files with Flask | 100 Days of Python Programming | Day 89 YouTube video by Beth Media

Day 89 of the 100 Days of Python Programming challenge is live! Today, we’re learning how to handle file uploads in Flask. Build functionality to upload, save, and process files in your web applications. #Python #100DaysOfCode #Flask #WebDevelopment #FileUpload

youtu.be/2PXQrDLb2Pw

3 0 0 0
Preview
How to Install DumbDrop on Your Synology NAS Trustworthy expert guide to your Synology NAS.

How to Install DumbDrop on Your Synology NAS
mariushosting.com/how-to-insta... #Synology #NAS #Docker #Portainer #DumbDrop #FileUpload #FileUploads #selfhost #selfhosted #selfhosting #DSM #DSM7 #DSM71 #DSM72 #DSM721 #DSM722 #mariushosting

4 1 0 0
Preview
Streamline File Transfer and Upload in .NET Enhance .NET apps with components that improve data exchange and management, providing functionality for transferring and uploading files.

Streamline #FileTransfer and #FileUpload in .NET. Enhance #dotNET apps with components that improve #DataExchange and management, providing functionality for transferring and uploading files.

2 0 0 0
Post image

𝗖𝗵𝗲𝗰𝗸 𝗜𝘁 𝗢𝘂𝘁 👉 👉 𝗛𝗼𝘄 𝗗𝗼 𝗜 𝗟𝗼𝗼𝗸? 𝗖𝗼𝗱𝗲: github.com/leenyburger/...

#FileUpload, #Founder, #SaaS, #Technology, #FileUploading

0 0 0 0
Post image

Tired of struggling with React file uploads to cloud storage? We get it — wrestling cloud storage can make you want to throw your computer out the window.

Want an easier solution? 𝗠𝗲𝗲𝘁 𝗦𝗙𝗨 & 𝗥𝗲𝗮𝗰𝘁. 🤝

Learn more: www.simplefileupload.com/integrations...

#FileUpload, #React, #SimpleFileUpload

4 0 0 0
Post image Post image

Here’s this week’s UI snapshot! A clean, intuitive design for a simple file upload experience. ⚡📁

.
.
.
#UIDesign #FileUpload #ProductDesign #UXUI #InterfaceDesign #WeeklyUI #DesignShowcase #AppDesign #UIInspo #UXDesign #DigitalProduct #InterfaceInspo #CreativeProcess #UIElement #DesignSystem #UIUX

1 1 0 0

✨ 𝗪𝗵𝗮𝘁 𝗵𝗮𝗽𝗽𝗲𝗻𝗲𝗱 𝘄𝗶𝘁𝗵 𝗦𝗶𝗺𝗽𝗹𝗲 𝗙𝗶𝗹𝗲 𝗨𝗽𝗹𝗼𝗮𝗱 𝗹𝗮𝘀𝘁 𝘄𝗲𝗲𝗸? ✨

- Working through our first content offer for 2025 💪

It's been a slow week for #SimpleFileUpload. Toddlers, sickness, etc.

But, I'm still excited. 🙂

𝗧𝗟𝗗𝗥: 𝗪𝗲 𝗰𝗮𝗻 𝗱𝗼 𝗵𝗮𝗿𝗱 𝘁𝗵𝗶𝗻𝗴𝘀. 𝗜 𝘀𝗲𝗲 𝘆𝗼𝘂 𝗙𝗼𝘂𝗻𝗱𝗲𝗿 𝗺𝗼𝗺𝘀. 👀

#FileUpload, #SaaS, #FileUploading

1 0 0 0

🔥 How I Built a File Upload System with n8n and Digital Ocean Spaces!

Check out my latest tutorial. Based on a real-world use case! Perfect for teams sharing files for SEO, websites, or products.

👉 youtube.com/watch?v=pYOp...

#N8N #DigitalOceanSpaces #NoCode #LowCode #FileUpload

2 0 0 1

✨ 𝗪𝗵𝗮𝘁 𝗵𝗮𝗽𝗽𝗲𝗻𝗲𝗱 𝘄𝗶𝘁𝗵 𝗦𝗶𝗺𝗽𝗹𝗲 𝗙𝗶𝗹𝗲 𝗨𝗽𝗹𝗼𝗮𝗱 𝘁𝗵𝗶𝘀 𝘄𝗲𝗲𝗸? ✨

- Scheduled three social posts

- Updated our onboarding email sequence from 2 very sad emails to 8 emails 🔥

- Completed a content audit and brainstormed a NEW offering for our customers...coming soon...👀

Stay tuned!

#FileUpload, #SaaS

2 0 0 0