Libraries tagged by no code
backbee/backbee-js
2961 Downloads
BackBee JS is the javascript client for backbee/backbee-cms
douglasmariz/pre-commit-git
9 Downloads
GIT pre-commit hook para verificar no código a existência de certas palavras, frases ou funções (dump, var_dump, die, print_r, etc) antes de ser comitado.
commit-solidsoftware/environment-variables
8 Downloads
Classe para gerenciar variáveis de ambiente para não precisar ficar definindo fixo no código constantes, como por exemplo informações do banco de dados.
gpupo/brazilian-cars
1219 Downloads
Acesso a lista de automóveis comercializados no Brasil
tfarias/instalador-tfarias-lte
74 Downloads
Instalador de codigos baseado no template admin-lte
tfarias/instalador-tfarias
0 Downloads
Instalador de codigos baseado no template metronic
i-lateral/silverstripe-siteconfig
111 Downloads
Module that allows access to SiteConfig with only core framework (no CMS) installed.
uphp/mongodb
24 Downloads
Este pacote serve para adicionar conexao ao mongodb no uphp
kriit24/project-rest-server
41 Downloads
Laravel REST API server what based on database models and routing, no controller or other coding is needed
fcunha/proceda
9 Downloads
Projeto para comunicação via EDI entre transportadora e remetente com métodos para decodificação e codificação de arquivos no formato Proceda
wpessential/wpessential-elementor-blocks
6 Downloads
WPEssential Elementor Blocks is a flexible extension of WordPress. It is open-source page builder solution in WordPress. Create any theme, anywhere and make your way. There is no `PHP`, `CSS`, `HTML` and `Javascript` coding knowledge need.
zircote/oauth2
12674 Downloads
OAuth2 Library, this is by no means complete nor is the test coverage optimal, mileage may (will) vary.
yousafsyed/algorithms
19 Downloads
Original Proposal: Using the right data structure or algorithm for the situation is an important aspect of programming. In computer science literature, many data structures and algorithms have been researched and extensively documented. However, there is still no standard library in Php implementing useful structures and algorithms like Red/Black Trees, tries, different sorting algorithms, etc. This project will create such a library with documentation on when to use a particular structure/algorithm. It will also come with a benchmark suite to compare performance in different situations.
the-ar-j/diya-public
2 Downloads
Diya PHP Framework for websites and web applications that can be used in shared hosting. There is no cli required for production build. It's a new PHP framework built with HTML-Tailwind CSS-Js-PHP combination. It's unique ability is simplicity built on core PHP
numeno/api-art-rec
2 Downloads
## Introduction Use the Numeno Article Recommender API to receive a curated selection of articles from across the web. See below for the steps to creating a Feed, as well as an introduction to the top-level concepts making up the Article Recommender API. ## Steps to creating a Feed 1. Create a Feed - [`/feeds`](create-feed) 2. Create a number of Stream queries associated with the Feed - [`/feeds/:feedId/streams`](create-stream) 3. Pull from the Feed as the Feed refreshes - [`/feeds/:feedId/articles`](get-articles-in-feed) 4. Use those Article IDs to look up metadata for the Articles -[`/articles/:id`](get-article-by-id) 5. Visit the Article links and render to your server DB or client app. ## Sources, Articles and Topics A **Source** is a place where Articles come from, typically a website, a blog, or a knowledgebase endpoint. Sources can be queried for activity via the [`/sources`](get-sources) endpoint. Beyond the Sources Numeno regaularly indexes, additional Sources can be associated with Stream queries, and Sources can be `allowlist`/`denylist`'d. **Articles** are the documents produced by Sources, typically pages from a blogpost or website, articles from a news source, or posts from a social platform or company intranet. See the [`/articles`](search-articles) endpoint. **Topics** - Numeno has millions of Topics that it associates with Articles when they are sourced. Topics are used in Stream queries, which themselves are composed to create Feeds. Get topics via the [`/topics`](get-topics) endpoint. ## Feeds **A Feed is a collection of Streams.** Feeds are configured to refresh on a regular schedule. No new Articles are published to a Feed except when it's refreshed. Feeds can be refreshed manually if the API Key Scopes allow. You can ask for Articles chronologically or by decreasing score. You can also limit Articles to a date-range, meaning that you can produce Feeds from historical content. Interact with Feeds via the [`/feeds`](create-feed) endpoint. ## Streams Think of a **Stream** as a search query with a "volume control knob". It's a collection of Topics that you're interested and a collection of Sources you'd explicitly like to include or exclude. Streams are associated with a Feed, and a collection of Streams produce the sequence of Articles that appear when a Feed is refreshed. The "volume control knob" on a Stream is a way to decide how many of the search results from the Stream query are included in the Feed. Our searches are "soft", and with a such a rich `Article x Topic` space to draw on, the "volume control" allows you to put a cuttoff on what you'd like included. Streams are a nested resource of `/feeds` - get started by explorting [`/feeds/:feedId/streams`](create-stream).