With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Try free now
Simple, Secure Domain Registration
Get your domain at wholesale price. Cloudflare offers simple, secure registration with no markups, plus free DNS, CDN, and SSL integration.
Register or renew your domain and pay only what we pay. No markups, hidden fees, or surprise add-ons. Choose from over 400 TLDs (.com, .ai, .dev). Every domain is integrated with Cloudflare's industry-leading DNS, CDN, and free SSL to make your site faster and more secure. Simple, secure, at-cost domain registration.
HTTP proxy via e-mail.
Mailwebproxy reads URL from mail subject and read PUT data from mailbody.
Mailwebproxy accesses web server and makes mail contains web pages.
So, you can read web pages using mail interface. This is usefull for celler phone us
MechaLac is a taken from the German words Machaniker(=Machanic) and Lackierer(=Painter).
MechaLac is planned to be written in PHP mainly, athough it my have java, perl or something else that is needed to perform the type of software that I'm striving for. See the blog and/or website for more info.
"miTEL" is a mashup and service compound for delivering and sharing private contact data (virtual visit cards) with enhanced security and ease of use based on .TEL domains platform.
You know how navigations have only a desktop and a mobile state, right? I thought, "this might cost people money because it requires additional click for users to reach even the most important pages." This navigation aims at progressively collapsing navigation links into an off-screen navigation instead of doing it for all the links at the same time. AMD/CommonJS support. Multi-level navigation. Option to prioritize certain nav items. Option to hide or show all nav items instead of doing it progressively. okayNav depends on jQuery. Tested with jQuery 1.10+ but should work with lower versions. The stylization of okayNav comes in a commented LESS and CSS.
MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
A SOAP client C# GUI to perform U.S. Federal personal income tax estimates using the RushTaxOS taxEngine. Versions will be provided for desktop (Microsoft Windows XP & Vista), web-based (Internet Explorer), and mobile devices (Microsoft Windows Mobile).
Small command line tools for monitoring 3G mobile modems. It shows current operator, radio type and signal quality. Also you can send SMS and ran ppp connection. it can be used to make plugins for any monitoring utils like gkrellm, superKaramba, etc...
light javascript viewer for slippy map tiles, optimized for mobile devices.
based on panoJS. developed for
- openstreetmap data
- (multi-) touch sensitive devices
- webkit browser.
Lay a foundation for success with Tested Reference Architectures developed by Fortinet’s experts. Learn more in this white paper.
Moving to the cloud brings new challenges. How can you manage a larger attack surface while ensuring great network performance? Turn to Fortinet’s Tested Reference Architectures, blueprints for designing and securing cloud environments built by cybersecurity experts. Learn more and explore use cases in this white paper.
The project wms2GO is designed to build a local executable WebGIS application out of pre-defined or manual selected WMS (OGC WebMapServices) of free map extract. Thus it is possible to use this application on a mobile device (e.g. a laptop) without any network access.
Manuals for Installation and Setup have been added to the SVN. You can find them here:
http://wms2go.svn.sourceforge.net/viewvc/wms2go/wms2go-help-1.0/
At the moment, they are only available in german, but this may change in the future.
A demo client is published under:
http://wms2go.dlz-it.de/
Mobile Device Detection for Java - 4 Step Setup - 3 minutes
Add mobile device detection to Java the easy way with 51Degrees.com. No cloud services, no external plug-ins, all Mozilla Public Licence source code. It's a great alternative to WURFL or DeviceAtlas.
Also available on Maven.
1) Download the zip and extract.
2) Add the core JAR located in the "dist" directory to your java project.
3) Import the following packages:
import fiftyone.mobile.detection.Match;
import fiftyone.mobile.detection.Provider;
import fiftyone.mobile.detection.factories.StreamFactory;
4) Use the following code to start detecting devices:
//The Lite data file is provided with every archive.
Provider p = new Provider(StreamFactory.create("path/to/data/file"));
Match match = p.match("USERAGENT_STRING");
boolean isMobile = match.getValues("IsMobile").toBool();
if(isMobile)
System.out.println("Mobile");
else
System.out.println("Not mobile");