- a task list item
- list syntax required
- normal formatting, @mentions, #1234 refs
- incomplete
- completed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Code | Description | Comment | |
|---|---|---|---|
| Complete BISAC Subject Headings List, 2021 Edition | Generated on 2022-02-03T17:00:35.308Z from https://bisg.org/page/BISACEdition | ||
| ANT000000 | Antiques & Collectibles / General | ||
| ANT056000 | Antiques & Collectibles / Advertising | ||
| ANT001000 | Antiques & Collectibles / Americana | ||
| ANT002000 | Antiques & Collectibles / Art | ||
| ANT003000 | Antiques & Collectibles / Autographs | ||
| ANT005000 | Antiques & Collectibles / Books | ||
| ANT006000 | Antiques & Collectibles / Bottles | ||
| ANT007000 | Antiques & Collectibles / Buttons & Pins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Start the old vagrant | |
| $ vagrant init centos-6.3 | |
| $ vagrant up | |
| # You should see a message like: | |
| # [default] The guest additions on this VM do not match the install version of | |
| # VirtualBox! This may cause things such as forwarded ports, shared | |
| # folders, and more to not work properly. If any of those things fail on | |
| # this machine, please update the guest additions and repackage the | |
| # box. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::io::Write; | |
| use std::process::Command; | |
| extern "C" { | |
| fn mprotect(addr: *const u8, len: usize, prot: u32) -> u32; | |
| } | |
| fn main() { | |
| let mut args = std::env::args(); | |
| let _ = args.next(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # frozen_string_literal: true | |
| class CalendarTitle < ApplicationRecord | |
| include EventTitle | |
| # search | |
| include PgSearch | |
| pg_search_scope( | |
| :search, | |
| against: %i[name], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CalendarEvent < ApplicationRecord | |
| def proper_range? | |
| Time.zone.now >= start_date && Time.zone.now <= end_date | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| html: bar.html | |
| %.html: %.md | |
| pandoc $< -o $@ | |
| pdf: | |
| pandoc bar.md -o bar.pdf | |
| clean: | |
| rm -f *.html *.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "sync" | |
| ) | |
| type unlocked struct { | |
| i int | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from random import randrange | |
| import time | |
| def kelime2(): | |
| puan=0 | |
| list1=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','r','s','t','u','v','w','x','y','z'] | |
| list2=['a','a','a','a','a','a','a','a','a'] | |
| list3=['a','a','a','a','a','a','a','a','a'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "sort" | |
| "math/rand" | |
| "time" | |
| "strings" | |
| ) |
NewerOlder