[go: up one dir, main page]

Open Source C Education Software for ChromeOS

C Education Software for ChromeOS

Browse free open source C Education Software for ChromeOS and projects below. Use the toggles on the left to filter open source C Education Software for ChromeOS by OS, license, language, programming language, and project status.

  • MongoDB Atlas runs apps anywhere Icon
    MongoDB Atlas runs apps anywhere

    Deploy in 115+ regions with the modern database for every enterprise.

    MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
    Start Free
  • La version gratuite d'Auth0 s'enrichit ! Icon
    La version gratuite d'Auth0 s'enrichit !

    Gratuit pour 25 000 utilisateurs avec intégration Okta illimitée : concentrez-vous sur le développement de vos applications.

    Vous l'avez demandé, nous l'avons fait ! Les versions gratuite et payante d'Auth0 incluent des options qui vous permettent de développer, déployer et faire évoluer vos applications en toute sécurité. Utilisez Auth0 dès maintenant pour découvrir tous ses avantages.
    Essayez Auth0 gratuitement
  • 1
    gnuplot

    gnuplot

    A portable, multi-platform, command-line driven graphing utility

    A famous scientific plotting package, features include 2D and 3D plotting, a huge number of output formats, interactive input or script-driven options, and a large set of scripted examples.
    Leader badge">
    Downloads: 5,126 This Week
    Last Update:
    See Project
  • 2
    Klavaro Touch Typing Tutor

    Klavaro Touch Typing Tutor

    A very efficient tutor.

    A touch typing tutor very flexible, supporting customizable keyboard layouts. You can edit and save new or unknown keyboard layouts, as the basic course was designed to not depend on specific ones. Also, there are some charts about the learning process.
    Leader badge">
    Downloads: 1,270 This Week
    Last Update:
    See Project
  • 3

    TILP - TI Linking Program

    TI graphing calculators <-> computer communication software

    TILP (formerly GtkTiLink) can transfer data between Texas Instruments graphing calculators and a computer. It works with all link cables (parallel, serial, Black/Gray/Silver/Direct Link) and it supports the TI-Z80 series (73..86), the TI-eZ80 series (83PCE, 84+CE), the TI-68k series (89, 92, 92+, V200, 89T) and the Nspire series (Nspire Clickpad / Touchpad / CX, both CAS and non-CAS). The project is now managed on Github, https://github.com/debrouxl/tilp_and_gfm . It uses the libti* libraries, https://github.com/debrouxl/tilibs . Install script for *nix: https://github.com/debrouxl/tilp_and_gfm/blob/master/tilp/trunk/build/scripts/install_tilp.sh
    Leader badge">
    Downloads: 395 This Week
    Last Update:
    See Project
  • 4
    MathGL

    MathGL

    A library for scientific data visualization

    A free cross-platform library of fast C++ routines for the plotting of up to 3-ranged data. It can export to bitmap and vector EPS/SVG files. There are window interfaces (GLUT/FLTK/Qt) and console tools. MathGL can be used from C/Fortran/Python/Octav/Lua
    Leader badge">
    Downloads: 116 This Week
    Last Update:
    See Project
  • MongoDB Atlas runs apps anywhere Icon
    MongoDB Atlas runs apps anywhere

    Deploy in 115+ regions with the modern database for every enterprise.

    MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
    Start Free
  • 5
    Artha ~ The Open Thesaurus
    Artha is a handy thesaurus based on WordNet with distinct features like global hotkey look-up, passive desktop notifications, regular expression based search, etc.. Artha may be used as a free open-source replacement to the proprietary WordWeb Pro.
    Leader badge">
    Downloads: 97 This Week
    Last Update:
    See Project
  • 6
    Archbase

    Archbase

    Open source version of "Fundamentals of Computer Architecture"

    The archbase repository appears to focus on architectural patterns, foundational frameworks, or base scaffolds for building software systems (though exact intent may depend on the content). The name “archbase” suggests that it could be a baseline architecture or reference templates for projects, possibly spanning front-end, back-end, or full stacks. The repo likely provides starter code, directory structures, configuration files, core modules, and guidelines that enforce certain architectural conventions (e.g. MVC, layered architecture, plugin systems). It might include sample modules or example features to demonstrate how to build on the base architecture, showing how to extend, override, or integrate components in a consistent manner. Developers can clone or fork archbase as a starting point so they don’t need to structure everything from scratch, helping them focus on business logic.
    Downloads: 8 This Week
    Last Update:
    See Project
  • 7
    Flash Linux 0.11 Talk

    Flash Linux 0.11 Talk

    Annotated Unix system source code

    flash-linux0.11-talk is an annotated walkthrough of the Linux 0.11 kernel that explains how a tiny Unix-like system boots, schedules, handles interrupts, and manages memory. The materials break down historically compact and dense code into digestible segments, with diagrams and call flows that trace execution from bootloader to user space. By focusing on a small, early kernel, the series reveals core OS concepts without the complexity of modern subsystems. It highlights how segmentation and paging cooperate, how system calls are dispatched, and how context switches and signals work in practice. The commentary ties C and assembly listings back to architecture specifics, making the hardware–software interface concrete. For learners, it serves as a guided tour that builds intuition for operating system design and prepares them to tackle contemporary kernels with better mental models.
    Downloads: 7 This Week
    Last Update:
    See Project
  • 8
    os-tutorial

    os-tutorial

    How to create an OS from scratch

    os-tutorial is an open source educational project by cfenollosa that teaches the basics of building an operating system from scratch. The repository provides step-by-step lessons starting with bootloaders and moving through kernel development, interrupts, memory management, and system calls. Each tutorial is accompanied by clear explanations, code examples, and references to deepen understanding. The project uses x86 assembly and C to illustrate concepts, making it accessible to students and hobbyists interested in low-level programming. By compiling and running the examples with tools like QEMU, learners gain hands-on experience with OS fundamentals. With its structured lessons and approachable explanations, the repository has become a widely recommended resource for operating system beginners.
    Downloads: 6 This Week
    Last Update:
    See Project
  • 9
    The Art of Programming

    The Art of Programming

    A collection of practical tips can be found at the bottom of this page

    The Art of Programming (Second Edition) is a curated collection of programming problems and solutions originally derived from the Microsoft 100 Interview Questions blog series, later refined into a long-running tutorial and ultimately a published book. Created by July, the series began in 2010 and has since evolved into an in-depth exploration of algorithmic thinking, data structures, and coding interview preparation. The repository brings together 42 classic programming problems from the original series, enhanced with detailed explanations, formula derivations, and optimized solutions. In July 2023, work on the second edition was announced, which expands the project with updated content, new problems inspired by recent big-tech interviews, and introductions to modern machine learning techniques such as XGBoost, CNNs, RNNs, and LSTMs. This collection serves both as a historical record of algorithm problem-solving and as a living resource for programmers preparing for interviews.
    Downloads: 2 This Week
    Last Update:
    See Project
  • Network Performance Monitoring | Statseeker Icon
    Network Performance Monitoring | Statseeker

    Statseeker is a powerful network performance monitoring solution for businesses

    Using just a single server or virtual machine, Statseeker can be up and running within minutes, and discovering your entire network in less than an hour, without any significant effect on your bandwidth availability.
    Learn More
  • 10
    ZJU Icicles

    ZJU Icicles

    Zhejiang University Course Guide Sharing Program

    zju-icicles is a community-maintained collection of course resources for students at Zhejiang University, organized by department and course. It aggregates syllabi, lecture notes, past exams, assignments, and study guides contributed by generations of students. The catalog structure and contribution guidelines encourage consistent formatting so materials are easy to find and update. It promotes academic integrity by positioning the content as study aids rather than shortcuts, with reminders to follow current course policies. New contributors can add or improve items via pull requests, keeping the repository alive and representative of the evolving curriculum. For incoming and current students alike, it reduces information asymmetry and helps plan coursework with realistic expectations.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 11
    KingJamesPureBibleSearch

    KingJamesPureBibleSearch

    GUI Application to Search and Count the Pure King James Bible

    Study and analyze the Fingerprint of God in the mathematical structure, known as the King James Code, of the King James text of the Holy Bible. Allows instant real-time searches, with an autocompleter droplist to assist with words which come next. Jump to specific words, verses, or chapters by number, and see all possible count statistics of phrases within the text. Graphically visualize search results, cross-reference sources and word lexicons, and search foreign translations derived from the same Divine Masoretic/Textus Receptus Vine of Scripture. For more info and downloads, see http://www.purebiblesearch.com/ For details on the King James Code, see http://visitbethelchurch.com/
    Downloads: 10 This Week
    Last Update:
    See Project
  • 12
    The Player Project: Player is a networked interface to robots and sensors. Stage and Gazebo are Player-friendly multiple-robot simulators. The software aims for POSIX compliance and runs on most UNIX-like OS's. Some parts also work on Windows.
    Downloads: 9 This Week
    Last Update:
    See Project
  • 13
    raspberry-pi-os

    raspberry-pi-os

    Learning operating system development using Linux kernel and Raspberry

    This project provides a step-by-step educational guide on building a simple operating system kernel entirely from scratch, specifically targeting the Raspberry Pi 3. The operating system, referred to as RPi OS, is inspired by the Linux kernel but remains intentionally minimal to focus on clarity and teaching fundamental OS concepts. Each lesson introduces a kernel feature and demonstrates its implementation within RPi OS, followed by a comparison to how the same concept is realized in the Linux kernel. The repository is structured so that every lesson corresponds to a snapshot of the source code at that stage, making it easier for learners to follow the progression of kernel development. The design of the lessons emphasizes gradual learning, allowing readers without prior OS development experience to understand kernel internals. The project is still under active development and encourages community contributions to expand its lessons and improve its content.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14
    This project aims to develop an opensource software with an attractive and efficient GUI which allows to design linear electronic circuits and to characterize existing ones.
    Leader badge">
    Downloads: 18 This Week
    Last Update:
    See Project
  • 15
    GGI stands for "General Graphics Interface", and it is a project that aims to develop a reliable, stable and fast graphics system that works everywhere. We want to allow any program using GGI to run on any platform requiring at most a recompile.
    Downloads: 8 This Week
    Last Update:
    See Project
  • 16
    fb2bin: A program to list binary attachment in FB2 files, extract them to files and replace these attachments by files.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 17
    The General Hidden Markov Model Library (GHMM) is a C library with additional Python bindings implementing a wide range of types of Hidden Markov Models and algorithms: discrete, continous emissions, basic training, HMM clustering, HMM mixtures.
    Downloads: 7 This Week
    Last Update:
    See Project
  • 18
    Crazy Turtle puzzle game solver utility. Other names: CRAZY TURTLE / LE JEU FOU DE LA TORTUE / NAUGHTY TURTLES / ŠAŠAVE KORNJAČE / NAGAJIVE ŽELVICE / SASAVE KORNJACE
    Downloads: 4 This Week
    Last Update:
    See Project
  • 19
    clipsmm is a C++ interface to the CLIPS libray, a C library for developing expert systems.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 20
    This project is now upgraded as educational resource planning tool including LMS (learning management system). Now DEI, AVV K, IITR, NITH, AMU, JMI, IGNOU, SMVDU are partnering in this. Overall coordination is done by IIT Kanpur.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 21

    Disposition

    Program to generate permutations and combinations

    C Library designed to generate in sequence permutations or combinations (possible orderings or subsets) of a number of objects, with or without repetition. A command-line program that uses the library is provided too, useful to teach combinatorics.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 22
    Common Hardware Recovery Solutions by Ukrainian-Russian network
    Downloads: 1 This Week
    Last Update:
    See Project
  • 23

    gsl-pt_BR

    manual da gsl em pt-BR

    Manual da Gnu Scientific Library em português do Brasil. O manual possui código fonte no formato texinfo.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 24
    Artist is a portable 2D graphics library. Main features are: drawing primitives, bitmap blitting, alpha blending, zoom and rotation, text rendering and image file loading. It uses hardware acceleration and provides a simple and elegent API.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 25

    Brandy Basic V Interpreter

    Brandy is an interpreter for BBC Basic

    Brandy is an interpreter for BBC Basic (or Basic V) that runs under a variety of operating systems. Basic V is the version of Basic supplied with desktop computers running RISC OS. These were originally made by Acorn Computers.
    Downloads: 1 This Week
    Last Update:
    See Project