Showing 102 open source projects for "look@lan"

View related business solutions
  • RMM Software | Remote Monitoring Platform and Tools Icon
    RMM Software | Remote Monitoring Platform and Tools

    Best-in-class automation, scalability, and single-pane IT management.

    Don’t settle when it comes to managing your clients’ IT infrastructure. Exceed their expectations with ConnectWise RMM, our MSP RMM software that provides proactive tools and NOC services—regardless of device environment. With the number of new vulnerabilities rising each year, smart patching procedures have never been more important. We automatically test and deploy patches when they are viable and restrict patches that are harmful. Get better protection for clients while you spend less time managing endpoints and more time growing your business. It’s tough to locate, afford, and retain quality talent. In fact, 81% of IT leaders say it’s hard to find the recruits they need. Add ConnectWise RMM, NOC services and get the expertise and problem resolution you need to become the advisor your clients demand—without adding headcount.
  • Gain insights and build data-powered applications Icon
    Gain insights and build data-powered applications

    Your unified business intelligence platform. Self-service. Governed. Embedded.

    Chat with your business data with Looker. More than just a modern business intelligence platform, you can turn to Looker for self-service or governed BI, build your own custom applications with trusted metrics, or even bring Looker modeling to your existing BI environment.
  • 1
    Blade UI Kit

    Blade UI Kit

    A set of renderless components to utilise in your Laravel Blade views

    Blade UI Kit is a set of renderless components to utilize in your Laravel Blade views. In all essence, it's a collection of useful utilities, connect the dots between different parts of the TALL stack. It was made for Blade, Laravel's powerful templating engine.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    fastn

    fastn

    (Alpha stage software) fastn - Full-stack Web Development Made Easy

    ... does not even look like a programming language.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    MinIO Go Client SDK

    MinIO Go Client SDK

    MinIO Go client SDK for S3 compatible object storage

    The MinIO Go Client SDK provides simple APIs to access any Amazon S3-compatible object storage. This quickstart guide will show you how to install the MinIO client SDK, connect to MinIO, and provide a walkthrough for a simple file uploader. For a complete list of APIs and examples, please take a look at the Go Client API Reference.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    concurrent map

    concurrent map

    A thread-safe concurrent map for go

    The map type in Go doesn't support concurrent reads and writes. concurrent-map provides a high-performance solution to this by sharding the map with minimal time spent waiting for locks. Prior to Go 1.9, there was no concurrent map implementation in the stdlib. In Go 1.9, sync.Map was introduced. The new sync.Map has a few key differences from this map. The stdlib sync.Map is designed for append-only scenarios. So if you want to use the map for something more like in-memory db, you might...
    Downloads: 0 This Week
    Last Update:
    See Project
  • Manage your IT department more effectively Icon
    Manage your IT department more effectively

    Streamline your business from end to end with ConnectWise PSA

    ConnectWise PSA (formerly Manage) allows you to stop working in separate systems, and helps you build a more profitable business. No more duplicate data entries, inefficient employees, manual invoices, and the inability to accurately track client service issues. Get a behind the scenes look into the award-winning PSA that automates processes for each area of business: sales, help desk, support, finance, and HR.
  • 5
    Lapis

    Lapis

    A web framework for Lua and OpenResty written in MoonScript

    Lapis is a framework for building web applications in Lua (or MoonScript) that primarily targets OpenResty, a high-performance web platform that runs on a customized version of Nginx. Lapis can also be used in other server environments, being compatible with any modern version of Lua. With OpenResty, Lua is run directly inside of the Nginx worker using LuaJIT, giving you the smallest barrier between the webserver and your code. Have a look at Web Framework Benchmarks just to see how OpenResty...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    openFrameworks

    openFrameworks

    Cross platform toolkit for creative coding in C++

    openFrameworks is a C++ toolkit for creative coding. docs have some documentation around OF usage, per platform things to consider, etc. You should definitely take a look in there; for example, if you are on OSX, read the osx.md. apps and examples are where projects go -- examples contain a variety of tasks that show you how to use OF, and apps is where your own projects will go. libs contain the libraries that OF uses, including the open frameworks core itself. addons are for additional...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    Responsive Framework

    Responsive Framework

    Easily make Flutter apps responsive. Automatically adapt UI

    ... layout proportionally, preserving the exact look of your UI. This eliminates the need to manually adapt layouts to mobile, tablet, and desktop. Flutter's default behavior is resize which Responsive Framework respects. AutoScale is off by default and can be enabled at breakpoints by setting autoScale to true. Flutter's default behavior is to resize your layout when the screen dimensions change. Resizing a layout stretches it in the direction of an unconstrained width or height.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    Jester

    Jester

    A sinatra-like web framework for Nim

    ... this by changing the pattern to "/hello/?@name?". This is useful because Jester will not match "/hello" if the leading '/' is not made optional. Route bodies all have an implicit request object. This object is documented in jester.nim and documentation can be generated by executing nim doc jester.nim. It is possible not to use the routes macro and to do the routing yourself. You can do this by writing your own match procedure. Take a look at example2 for an example on how to do this.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    Marten

    Marten

    .NET Transactional Document DB and Event Store on PostgreSQL

    ..., its fantastic JSON support and ACID compliance as the underlying data store. A robust and full-fledged document database to boost your developer productivity. Build event-sourced style systems with ease to store events and streams. Use projections to create read-side views. Refer to the build commands section to look up the commands to run Mocha tests.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Gain More from your Social Media with Social Display Ads Icon
    Gain More from your Social Media with Social Display Ads

    Create, manage, and distribute social display ads in one place.

    Use Social Display Ads creative management platform to convert your high-performing social media posts into innovative banner ads in minutes.
  • 10
    EventFlow

    EventFlow

    Async/await first CQRS+ES and DDD framework for .NET

    Async/await first CQRS+ES and DDD framework for .NET. Designed with sensible defaults and implementations that make it easy to create an example application. EventFlow uses interfaces for every part of its core, making it easy to replace or extend existing features with custom implementation. To get a more complete example of how EventFlow could be used, have a look at the shipping example found here in the code base. The example is based on the shipping example from the book "Domain-Driven...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Django friendly finite state machine

    Django friendly finite state machine

    Django friendly finite state machine support

    Django-fsm adds simple declarative state management for Django models. If you need parallel task execution, view, and background task code reuse over different flows - check my new project Django-view flow. Instead of adding a state field to a Django model and managing its values by hand, you use FSMField and mark model methods with the transition decorator. These methods could contain side effects of the state change. You may also take a look at the Django-fsm-admin project containing a mixin...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    drf-yasg

    drf-yasg

    Automated generation of real Swagger/OpenAPI 2.0 schemas

    ... a look at drf-spectacular, which is an actively maintained new library that shares most of the goals of this project, while working with OpenAPI 3.0 schemas. OpenAPI 3.0 provides a lot more flexibility than 2.0 in the types of API that can be described. drf-yasg is unlikely to soon, if ever, get support for OpenAPI 3.0.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    Halfmoon

    Halfmoon

    Front-end framework with a built-in dark mode

    ... of its most important and defining features. The framework is built entirely using CSS variables (also known as CSS custom properties). There are close to 1,500 CSS variables, which means that almost everything can be customized by overriding a property, making it very easy to theme Halfmoon to fit your brand. Learn more about customization. The components have a very standard look and feel to them, making them suitable for dashboards and tools.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    DotVVM

    DotVVM

    Open source MVVM framework for Web Apps

    DotVVM is an open-source framework for ASP.NET. It lets you create web apps using the MVVM pattern, with just C# and HTML. DotVVM can be used to build new ASP.NET Core web apps, or to modernize legacy ASP.NET apps and migrate them to .NET 5. Save your time with GridView, FileUpload and other components shipped with the framework. Don't spend the time building an API. Just load data from the database and use data-binding to display them. DotVVM needs less than 100 kB of JavaScript code. It's...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    NG-ALAIN

    NG-ALAIN

    NG-ZORRO admin panel front-end framework

    .... Interaction language and visual style extracted from enterprise-level mid- and back-end products. Detailing functions to allow users to focus more on business. With the continuous feedback of the "designer", it will continue to iterate, gradually precipitate and summarize more design patterns and corresponding code implementations, and elaborate on the best practices of middle and back-end product templates/components/business scenarios, and I look forward to your participation. and co-build.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Awesome Bootstrap Checkbox

    Awesome Bootstrap Checkbox

    Font Awesome Bootstrap checkboxes & radios

    Font Awesome Bootstrap Checkboxes & Radios plugin. Pure CSS way to make inputs look prettier. No Javascript! Free and open-source admin dashboard templates built with Bootstrap 4, React, Vue and Angular. Just include awesome-bootstrap-checkbox.css somewhere in your HTML, or add the equivalent files to your Sass / Less configuration. Next, everything is based on code convention. If you want to enable Opera 12 and earlier support just add class styled to the input element. You may use checkbox...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    wxWidgets

    wxWidgets

    A cross-platform GUI library

    wxWidgets is a C++ library that lets developers create applications for Windows, Mac OS X, Linux and other platforms with a single code base. It has popular language bindings for Python, Perl, Ruby and many other languages, and unlike other cross-platform toolkits, wxWidgets gives applications a truly native look and feel because it uses the platform's native API rather than emulating the GUI. It's also extensive, free, open-source and mature.
    Leader badge
    Downloads: 679 This Week
    Last Update:
    See Project
  • 18
    Manticore

    Manticore

    Symbolic execution tool

    Manticore helps us quickly take advantage of symbolic execution, taint analysis, and instrumentation to analyze binaries. Parts of Manticore underpinned our symbolic execution capabilities in the Cyber Grand Challenge. As an open-source tool, we hope that others can take advantage of these capabilities in their own projects. We prioritized simplicity and usability while building Manticore. We used minimal external dependencies and our API should look familiar to anyone with exploitation...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    Biosphere3D

    Biosphere3D

    Interactive landscape rendering based on a virtual globe.

    Biosphere3D targets interactive landscape rendering based on a virtual globe. It supports DEM, satellite and aerial images, 3D models (Collada), 3D plant models, and Shapefiles. Biosphere3D was initially developed by the landscape visualization group of the Zuse Institute Berlin by Malte Clasen and is now developed further by Lenné3D GmbH. For more information about the used concepts have a look at the thesis of Malte Clasen: Towards Interactive Landscape Visualization Doctoral Thesis...
    Downloads: 8 This Week
    Last Update:
    See Project
  • 20
    Trojan-Go

    Trojan-Go

    A Trojan proxy written in Go

    ... to make the flow look the same as the normal HTTPS website. TLS is a mature encryption system, and HTTPS uses TLS to carry HTTP traffic. For passive testing, the flow of the Trojan agreement is completely consistent with the characteristics and behavior of the HTTPS flow. HTTPS traffic accounts for more than half of current Internet traffic, and the traffic is confidential after TLS's handshake is successful. There is almost no feasible way to distinguish Trojan protocol traffic from it.
    Downloads: 12 This Week
    Last Update:
    See Project
  • 21
    FlaskBB

    FlaskBB

    A classic Forum Software in Python using Flask

    A classic Forum Software in Python with a Modern and Fresh look. FlaskBB is open source and the whole source code is available on GitHub. It is being developed under the BSD 3-Clause license. Due to the plugin system, it is possible to extend FlaskBB without touching a single line of code. You just drop the plugin into the plugin's directory and activate it in the management panel. Are you sick of the standard theme or you simply want to create a customized style for your site? No problem! You...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Polr

    Polr

    A modern, powerful, and robust URL shortener

    ... permissions, redirects, or even its theme. Semantic REST API for integration with other services. Assign new API keys to users automatically, or generate them manually. Create new links or look up existing links without modifying your breaking your existing code. For more information, see API docs.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    GraphQL HTTP Server Middleware

    GraphQL HTTP Server Middleware

    Create a GraphQL HTTP server with Express

    Create a GraphQL HTTP server with any HTTP web framework that supports connect styled middleware, including Connect itself, Express and Restify. This module includes a TypeScript declaration file to enable auto complete in compatible editors and type information for TypeScript projects. Use .get or .post (or both) rather than .use to configure your route handler. If you want to show GraphiQL in the browser, set graphiql, true on your .get handler. An optional function for adding additional...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    ARouter

    ARouter

    Framework for assisting in the renovation of Android componentization

    ... to configure transition animation. Support for fragment. Full kotlin support (Look at Other#2). Generate route doc support. Provide IDE plugin for quick navigation to target class. Support Incremental annotation processing. Support register route meta dynamic. Forward from external URLs to internal pages, and parsing parameters. Jump and decoupling between multi-module. Intercept jump process, handle login, statistics and other logic. Cross-module communication, decouple components by IoC.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 25
    Laravel View Xray

    Laravel View Xray

    Take a look into your Laravel views

    When your Laravel project grows, so do the Laravel views. Sometimes it might be hard to figure out, which part of the output HTML was rendered using which template. With this package, you can take a peek into your Laravel views and find out which template is responsible for which part of the output HTML.
    Downloads: 1 This Week
    Last Update:
    See Project