All Projects → DevDungeon → Cookbook

DevDungeon / Cookbook

Code snippets for various programming languages and libraries

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language
c
50402 projects - #5 most used programming language
ruby
36898 projects - #4 most used programming language
perl
6916 projects

Projects that are alternatives of or similar to Cookbook

J
❌ Multi-format spreadsheet CLI (now merged in http://github.com/sheetjs/js-xlsx )
Stars: ✭ 343 (+40%)
Mutual labels:  spreadsheet, csv
Sheetjs
📗 SheetJS Community Edition -- Spreadsheet Data Toolkit
Stars: ✭ 28,479 (+11524.08%)
Mutual labels:  spreadsheet, csv
Visidata
A terminal spreadsheet multitool for discovering and arranging data
Stars: ✭ 4,606 (+1780%)
Mutual labels:  spreadsheet, csv
jupyterlab-spreadsheet-editor
JupyterLab spreadsheet editor for tabular data (e.g. csv, tsv)
Stars: ✭ 72 (-70.61%)
Mutual labels:  csv, spreadsheet
30 Days Of Python
Learn Python for the next 30 (or so) Days.
Stars: ✭ 1,748 (+613.47%)
Mutual labels:  csv, tutorial
Cmb2 Snippet Library
CMB2 Code Snippet Library
Stars: ✭ 323 (+31.84%)
Mutual labels:  tutorial, snippets
Dataproofer
A proofreader for your data
Stars: ✭ 628 (+156.33%)
Mutual labels:  spreadsheet, csv
React Spreadsheet
Simple, customizable yet performant spreadsheet for React
Stars: ✭ 393 (+60.41%)
Mutual labels:  spreadsheet, csv
30 Days Of Python 3.6
This is a soon-to-be archived project version of 30 Days of Python. The original tutorial still works but we have an updated version in the works right now.
Stars: ✭ 98 (-60%)
Mutual labels:  csv, tutorial
Spreadsheet architect
Spreadsheet Architect is a library that allows you to create XLSX, ODS, or CSV spreadsheets super easily from ActiveRecord relations, plain Ruby objects, or tabular data.
Stars: ✭ 1,160 (+373.47%)
Mutual labels:  spreadsheet, csv
workbook
simple framework for containing spreadsheet like data
Stars: ✭ 13 (-94.69%)
Mutual labels:  csv, spreadsheet
Volbx
Graphical tool for data manipulation written in C++/Qt
Stars: ✭ 187 (-23.67%)
Mutual labels:  spreadsheet, csv
sheet2dict
Simple XLSX and CSV to dictionary converter
Stars: ✭ 206 (-15.92%)
Mutual labels:  csv, spreadsheet
Spout
Read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way
Stars: ✭ 3,861 (+1475.92%)
Mutual labels:  spreadsheet, csv
convey
CSV processing and web related data types mutual conversion
Stars: ✭ 16 (-93.47%)
Mutual labels:  csv, spreadsheet
Django Rest Pandas
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
Stars: ✭ 1,030 (+320.41%)
Mutual labels:  spreadsheet, csv
Google2csv
Google2Csv a simple google scraper that saves the results on a csv/xlsx/jsonl file
Stars: ✭ 145 (-40.82%)
Mutual labels:  csv, tutorial
Tutorials
Repository for my YouTube tutorials + code snippets
Stars: ✭ 213 (-13.06%)
Mutual labels:  tutorial, snippets
Pytorch fine tuning tutorial
A short tutorial on performing fine tuning or transfer learning in PyTorch.
Stars: ✭ 240 (-2.04%)
Mutual labels:  tutorial
Vscode Restructuredtext
reStructuredText Language Support in Visual Studio Code
Stars: ✭ 243 (-0.82%)
Mutual labels:  snippets

The Cookbook Method

A cookbook in the programming context is collection of tiny programs that each demonstrate a particular programming concept. The Cookbook Method is the process of learning a programming language by building up a repository of small programs that implement specific programming concepts. Starting with a Hello World program and building the knowledge piece by piece on top of that.

If you are a beginner, you will probably want to start out with one language like Python and start building up your repetoire of snippets for reference and confidence. If you are a seasoned developer, you may want to start building a cookbook from scratch for a new language you have never used, or keep a cookbook for more advanced topics in a language you are already familiar with.

Here is an example of when my Cookbook comes in handy. Recently I was faced with a situation where I needed to make an HTTP request to an API, parse the JSON response, generate a CSV spreadsheet, and email the spreadsheet. Because I already had my own cookbook snippets for doing each of those three actions, it was really easy to put together a program that did what I needed it to.

Benefits of Building Your Own Cookbook

  • You can share it with others
  • Learn topics that are interesting to you
  • You build up your knowledge in small increments
  • You can see your progress over time
  • You have a library of reference material in your own style.
  • It is quicker than looking up documentation or looking for a Stack Overflow answer.
  • Explore new topics
  • Learn new programming languages.
  • Tips for Building a Cookbook
  • Store your cookbook in a version control system like Git.
  • Keep a to do list of topics or programming languages you want to explore and learn
  • It does not have to be just code. I have a lot of plain text .txt files with notes on things like how to create a Python pip package, creating Ruby Gems, or how to create a runnable JAR in Java. Sometimes tips on installing prerequisites if something was difficult or just notes on how to compile and run programs.
  • It can also be template programs. For example I have a base chrome browser extension that doesn't really do anything itself, but it is a fully functional extension with all the boilerplate done and ready for me to start developing.
  • Programs should be fully runnable and not just chunks of code without context that do not compile and execute
  • Keep the snippets small, simple and to one topic

Example Cookbook Topics

Everyone has different goals with programming so identify topics relevant to your interests. Here are some ideas if you do not know where to get started.

  • Hello, world
  • Getting user input from stdin
  • Taking command line arguments
  • Reading and writing files
  • Using TCP sockets
  • Making HTTP requests
  • Parsing JSON
  • Creating a CSV file
  • Making database connections
  • Playing an audio file
  • Multithreading
  • Drawing 2D graphics to screen
  • Drawing 3D graphics to screen
  • GUI programming

The DevDungeon Cookbook

Contact

John "NanoDano" Leon [email protected] https://www.devdungeon.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].