Search Results for "https/localhost11501" - Page 32

Showing 956 open source projects for "https/localhost11501"

View related business solutions
  • 99.99% Uptime for MySQL and PostgreSQL on Google Cloud Icon
    99.99% Uptime for MySQL and PostgreSQL on Google Cloud

    Enterprise Plus edition delivers sub-second maintenance downtime and 2x read/write performance. Built for critical apps.

    Cloud SQL Enterprise Plus gives you a 99.99% availability SLA with near-zero downtime maintenance—typically under 10 seconds. Get 2x better read/write performance, intelligent data caching, and 35 days of point-in-time recovery. Supports MySQL, PostgreSQL, and SQL Server with built-in vector search for gen AI apps. New customers get $300 in free credit.
    Try Cloud SQL Free
  • Host LLMs in Production With On-Demand GPUs Icon
    Host LLMs in Production With On-Demand GPUs

    NVIDIA L4 GPUs. 5-second cold starts. Scale to zero when idle.

    Deploy your model, get an endpoint, pay only for compute time. No GPU provisioning or infrastructure management required.
    Try Free
  • 1
    Radio Tray is a streaming player for listening to online radios. Any bug or feature request should be reported in https://bitbucket.org/carlmig/radio-tray/issues
    Downloads: 40 This Week
    Last Update:
    See Project
  • 2
    pylabrad development has moved to GitHub: https://github.com/labrad/pylabrad Packages are distributed through PyPI: https://pypi.python.org/pypi/pylabrad
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3

    Function Calculator

    Calculate some BASIC mathematical function

    Calculate some BASIC mathematical function You can browse the source at: https://github.com/TheNiceGuy/FunctionCalculator
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4

    MTest

    pymtest, mbt by pthon, Model base testing framework by python

    MTest(pymtest) is a model based testing framework written by python, which model scenarios by python scripts and then generate test cases and its descriptions to other languages, such as junit test code, c# test code, python test code, jmeter test scripts etc. It can be extended to generate tests by any lanuage when a model viewer is supplied. See https://sourceforge.net/projects/pymtest/files/MTest/
    Downloads: 0 This Week
    Last Update:
    See Project
  • $300 in Free Credit Across 150+ Cloud Services Icon
    $300 in Free Credit Across 150+ Cloud Services

    VMs, containers, AI, databases, storage | build anything. No commitment to start.

    Start your project in minutes. After credits run out, 20+ products include free monthly usage. Only pay when you're ready to scale with Google Cloud.
    Start Building Free
  • 5

    Pysimony

    A Pythonic Implementation of Parsimony Inference of Phylogeny

    UPDATE: After some bug fixes, I've ditched Pysimony for Javamony: https://sourceforge.net/projects/javamony/ Given Python's beauty, I know that someday I will have to finish Pysimony. A student's first attempt at a phylogenetic inference program, written in the simplistic yet elegant Python. Pysimony reads a FASTA file (only ATGC accepted) specified as its only argument. Basic testing has shown that it is slow, inaccurate and most definitely inefficient.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    Novus

    Novus

    Entrepreneurship Training Program

    The Novus Entrepreneurship Training Program contains 36 business and IT training videos, covering basic finance, accounting, marketing, economics, business strategy, Word, Excel, and PowerPoint. Users will have an opportunity to apply the lessons in the Novus Business Simulator. Over six rounds, the user or teams will have to make decisions on capital purchases, financing, production, financing, and human resources for a microbrewery.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 7

    pyscope

    Software oscilloscope using Python and tkinter

    ...Displays data by samples, time or frequency. Scales the input automatically or manually. It has been renamed "pdatascope" to avoid a name-clash with Pyscope, a scoping package on PyPi. See https://sourceforge.net/p/pydatascope/ for the latest code.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    cx_Oracle is a Python extension module that allows access to Oracle databases and conforms to the Python database API specification version 2.0 Project has moved to GitHub (https://github.com/oracle/python-cx_Oracle) and new builds are available at PyPI (https://pypi.python.org/pypi/cx_Oracle).
    Downloads: 7 This Week
    Last Update:
    See Project
  • 9

    vsResolver

    DNS Validating Stub Resolver

    ...These add data origin authentication and data integrity to the Domain Name System. vsResolver extends the dnspython toolkit (http://www.dnspython.org/) and uses the pycrypto library for its underlying crypto implementation(https://www.dlitz.net/software/pycrypto/). Click on this link for a ridiculously simple python page demonstrating vsResolver working - http://superawesum.novas.us/py/hello.py. Try entering some domains and click submit. Then, enable details, click submit to get the details,and compare with what you get for that domain at http://dnssec-debugger.verisignlabs.com.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Gemini 3 and 200+ AI Models on One Platform Icon
    Gemini 3 and 200+ AI Models on One Platform

    Access Google's best plus Claude, Llama, and Gemma. Fine-tune and deploy from one console.

    Build generative AI apps with Vertex AI Studio. Switch between models without switching platforms.
    Start Free
  • 10
    Evolving Objects

    Evolving Objects

    This project have been merged within Paradiseo.

    See the new project page: https://nojhan.github.io/paradiseo/ (Archived project page: http://eodev.sourceforge.net/)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11

    brocc

    BLAST Read and OTU Consensus Classifier

    NOW HOSTED ON GITHUB: https://github.com/kylebittinger/brocc Old releases are kept here for archival purposes.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    Jepp (Java Embedded Python) embeds CPython in Java. It is stable and thread-safe, and is suitable for many different scripting needs. Note: for most purposes Jep is now at https://github.com/mrj0/jep Releases can be found on pypi: https://pypi.python.org/pypi/jep/3.1.0
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13

    Hwrapper

    Hwrapper is a python framework for hbase rest api

    ...(alternate download from pypi http://pypi.python.org/pypi/Hwrapper/0.1 ) Common Usage : start your hbase rest $bin/hbase rest start -p 9300 (Default port is 8080) check out wiki for more detailed tutorial. Creating a table hwrapper=Hwrapper() hwrapper.connectionParameters("host","port", False) // third argument set to false if you are not using https hwrapper.setAcceptType("json") columnFamilies={"cf","cf1"} hwrapper.create_table("table_name",columnFamilies) get Row data by ID (decoded base64 values) hwrapper.get_RowBy_ID("0000000-120529115546748") // outputs list of dicts, dicts contain column names and values Dropping a table hwrapper.drop_table("table_name") Displaying table schema hwrapper.table_schema("table_name") Listing all tables from hbase hwrapper.list_tables()
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    paranoia auto-backup

    paranoia auto-backup

    paranoia,auto-backup,libre, free, gnu/gpl3

    ...Until that date, be retained as a last stable 0.4.11 (written in python with gtk+), which will remain unchanged. This project will continue in "savannah", it may be removed from this when I get to upload: https://savannah.nongnu.org/projects/paranoia/ The new vercion of paranoia will be launched in late 2012, which will be uploaded to savannah.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    ZetaBoards topic fetcher
    Fetches topics with new posts from ZetaBoards forums and does something with the URLs, like opening them in a browser. Configurations can be stored and manipulated for quicker fetching. Development, translations, bug reports, etc. are handled at Launchpad: https://launchpad.net/zb-fetcher SourceForge is used to host released files.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    tunnel a tcp/udp connection through a http(s) connection, surviving proxy-servers
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Compilation of Physics Calculators

    Compilation of Physics Calculators

    A compliation of Physics derived claculators

    A NEW GUI VERSION WILL BE RELEASED SOON! Thank you for visiting the Physics Calculator, provided by PIezoSystems Inc., please visit their company website at https://piezosystems.org. For other downloads, please visit our github page, https://github.com/PiezoSystems. We hope that you find this program useful and easy to use, for troubleshooting, please email us, contact@piezosystems.org. If any bugs were found, please email us at bugs@piezosystems.org.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    ical - intelligent collector algorithms

    ical - intelligent collector algorithms

    Monitoring your infrastructure for free.

    This project (ICAL - Intelligent Collector Algorithms) presents a flexible and configurable proposal for monitoring and management of real and virtual HPC infrastructures, compatible with paradigm of cloud computing. Made for LINUX. Note: This is not a calendar. This project can now be found here: https://sourceforge.net/projects/theminder/
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    Lightning Planning Framework for ROS

    Lightning Planning Framework for ROS

    ROS package implementing the Lightning Framework using OMPL

    ...The code was developed at UC Berkeley by Cameron Lee and Dmitry Berenson under the supervision of Prof. Pieter Abbeel and Prof. Ken Goldberg. Please see the Wiki for instructions on how to install and use lightning: https://sourceforge.net/p/lightningros/wiki/Home/
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20

    pylsb-toolkit

    a small and simple toolkit for LSB based steganalysis

    This is a small and simple toolkit that might be useful during steganalysis, it is currently composed by several general purpose command line tools. NOTE: this project has been moved to https://github.com/luca-m/lsb-toolkit
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21

    niftilib

    ** MAIN SITE IS NOW: https://github.com/NIFTI-Imaging/nifti_clib **

    niftilib is a collection of i/o routines for the nifti1 neuroimage data format. C (nifticlib), Java (niftijlib), Matlab (niftimatlib), and Python (pynifti) code is available. For nifti format info see: http://nifti.nimh.nih.gov/
    Leader badge
    Downloads: 36 This Week
    Last Update:
    See Project
  • 22
    PROJECT HAS MOVED: https://github.com/wiki2beamer
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23

    Web Crawler Security Tool

    A web crawler oriented to information security.

    Last update on tue mar 26 16:25 UTC 2012 The Web Crawler Security is a python based tool to automatically crawl a web site. It is a web crawler oriented to help in penetration testing tasks. The main task of this tool is to search and list all the links (pages and files) in a web site. The crawler has been completely rewritten in v1.0 bringing a lot of improvements: improved the data visualization, interactive option to download files, increased speed in crawling, exports list of...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24

    ProtDB

    A protein database management framework

    This repository is outdated, the project has been renamed to SysBioTK and can be found at: https://sysbiotk.sourceforge.io/ ProtDB is a framework which aims to aid in the management of information on proteins from several databases, storing the information in a library. Several search functions are also included in order to filter the proteins in the library. Support for different screenings, such as control groups, is also included.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25

    Stat466

    Statistics for Bauernschnapsen

    Stat466 has moved to: https://github.com/wachjose88/stat466-desktop https://github.com/wachjose88/stat466-android
    Downloads: 0 This Week
    Last Update:
    See Project
MongoDB Logo MongoDB