code-cookbook icon indicating copy to clipboard operation
code-cookbook copied to clipboard

Reusable code patterns which you can use as reference or copy to your project 👩‍💻👨‍🍳📖🥗

Results 7 code-cookbook issues
Sort by recently updated
recently updated
newest added

Add to Jekyll section. Cover as sidebar and TOC. Sidebar can also go in HTML It's too many lines to go in a cheatsheet.

See the one in cheatsheets - maybe link to a central one as a gist or repo for Jekyll sites.

https://docs.oracle.com/cd/E19504-01/802-5880/6i9k05dhg/index.html ```mk # Simple makefile for compiling a program from # two C source files. .KEEP_STATE functions: main.o data.o cc -O -o functions main.o data.o main.o: main.c cc -O -c...

```html window.addEventListener("load", function() { window.cookieconsent.initialise({ "palette": { "popup": { "background": "#000" }, "button": { "background": "#cba477" } }, "showLink": false, "content": { "message": "This website uses cookies to analyze traffic...

Setup a Rails project without installing Rails globally. ```sh echo '# frozen_string_literal: true source "https://rubygems.org" gem "rails" ' > Gemfile ``` ```sh bundle config set --local path vendor/bundle bundle install...

enhancement

It appears as two on mac Try as literal emoji instead of github emojis. See repo metadata and readmes

Hello, when running the github actions to deploy your page I receive a `github-pages 227 | Error: The fractal theme could not be found.` and the build with jekyll step...

bug