commit 66ceff85130632e4b6620f3839111c32ffb46246 Author: pyrotechny-eu Date: Tue Oct 8 19:18:36 2024 +0200 Initial diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml new file mode 100644 index 0000000..ffe4f96 --- /dev/null +++ b/.github/workflows/hugo.yml @@ -0,0 +1,70 @@ +# Sample workflow for building and deploying a Hugo site to GitHub Pages +name: Deploy PyroTechny.EU Hugo site to Github Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +# Default to bash +defaults: + run: + shell: bash + +jobs: + # Build job + build: + runs-on: ubuntu-latest + env: + HUGO_VERSION: 0.125.2 + steps: + - name: Install Hugo CLI + run: | + wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ + && sudo dpkg -i ${{ runner.temp }}/hugo.deb + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + - name: Setup Pages + id: pages + uses: actions/configure-pages@v2 + - name: Build with Hugo + env: + # For maximum backward compatibility with Hugo modules + HUGO_ENVIRONMENT: production + HUGO_ENV: production + run: | + cd src && hugo \ + --minify \ + --baseURL "${{ steps.pages.outputs.base_url }}/" + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + path: ./src/public + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cfd13de --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.DS_Store +*.iml +.idea +.obsidian/ +cmd/rclone.conf +src/resources/_gen +__pycache__ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0e259d4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c28d671 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +watch: + cd src && hugo server -w -D --disableFastRender diff --git a/README.md b/README.md new file mode 100644 index 0000000..dfd4dcc --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# [PyroTechny.eu](https://pyrotechny.eu) + +Pyrotechnics International United + +## DISCLAIMER + +Pyrotechnic Safety Information for individuals above 18 years of age + +**Age Restriction**: Pyrotechnic devices are intended for use by individuals who are 18 years of age or older. It is essential to comply with legal age requirements and regulations pertaining to the possession, purchase, and use of pyrotechnics. + +**Safety Training**: Prior to handling or igniting pyrotechnics, individuals above 18 years of age should undergo proper training from qualified professionals. Understanding safety procedures, precautions, and potential risks associated with pyrotechnic materials is crucial for personal safety. + +**Responsible Use**: The use of pyrotechnic devices should be conducted responsibly, following all applicable laws, regulations, and safety guidelines. Individuals above 18 years of age should ensure they are used in authorised locations, adhering to safety protocols and considering the well-being of themselves and others. + +**Protective Equipment**: When handling pyrotechnics, it is important to wear appropriate personal protective equipment (PPE), such as safety glasses and gloves. Wearing the recommended safety gear helps minimize the risk of injury from sparks, heat, or potential projectiles. + +**Authorised Locations**: Pyrotechnics should only be used in designated areas and authorised settings, complying with local regulations and community guidelines. Usage should be limited to open spaces away from flammable materials, buildings, and crowded areas. + +**Storage and Transportation**: Proper storage and transportation of pyrotechnic devices are essential for safety. They should be kept in cool, dry, and secure locations, away from heat sources or combustible materials. During transportation, ensure they are securely packaged and comply with applicable transportation regulations. + +**Fire Safety Measures**: Emphasise fire safety when using pyrotechnics. Have appropriate fire extinguishing equipment readily available, such as fire extinguishers or buckets of water, to address potential fires. Monitor weather conditions, especially during dry or windy periods, as they can increase the risk of fire. + +**Environmental Considerations**: Show respect for the environment when using pyrotechnics. Clean up after use, dispose of waste properly, and follow guidelines for environmental conservation. Avoid using pyrotechnics in sensitive areas where they may cause harm to wildlife or the ecosystem. + +**Responsible Disposal**: Safely and responsibly dispose of used or unused pyrotechnic devices. Adhere to proper disposal methods in accordance with local regulations. Never attempt to dismantle or modify pyrotechnic devices, as this can pose serious risks. + +**Personal Liability**: Individuals above 18 years of age engaging in pyrotechnic activities assume full responsibility for their actions. Any consequences or damages resulting from the use of pyrotechnic devices are the sole responsibility of the individuals involved. Exercise caution, follow safety guidelines, and act responsibly to minimize risks. diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..f9ba9a4 --- /dev/null +++ b/TODO.md @@ -0,0 +1,10 @@ +# pyrotechny.eu TODO list + +- Link area creation -> Single page far better +- X Library sitemap page +- SKIP: IPFS library mirror links (server) +- X SKIP Tor site hosting (server) +- Calibre to hugo + - X rclone script to sync from disk -> google drive + - X pyrotechny.eu@gmail.com rclone credentials -> keychain + - Multiple file support (pdf + epub) diff --git a/cmd/__pycache__/config.cpython-311.pyc b/cmd/__pycache__/config.cpython-311.pyc new file mode 100644 index 0000000..2621181 Binary files /dev/null and b/cmd/__pycache__/config.cpython-311.pyc differ diff --git a/cmd/calibre_to_hugo.py b/cmd/calibre_to_hugo.py new file mode 100755 index 0000000..e79b689 --- /dev/null +++ b/cmd/calibre_to_hugo.py @@ -0,0 +1,274 @@ +#!/Applications/calibre.app/Contents/MacOS/calibre-debug calibre_to_hugo.py +# See: https://manual.calibre-ebook.com/db_api.html +import os +import json +import copy +import shutil +import pathlib +import hashlib +import urllib +import calibre.library + +import config + +class CalibreLibrary: pass + +class CalibreLibraryBook: + _db: CalibreLibrary + + id: int + title: str + authors: str + filepath: str + filehash: str + filename: str + cover: str + + def __init__(self, db: CalibreLibrary): + self._db = db + self.cover = None + self.filehash = None + + """ Hash the filepath SHA256 to hex string """ + def hash(self) -> str: + if not self.filehash: + self.filehash = hashlib.sha256(self.filepath.encode("utf8")).hexdigest() + + return self.filehash + + """ Get book properties for JSON serialize """ + def to_json(self): + data = {} + for key in list(self.__dict__.keys()): + if key.startswith("_"): + continue + data[key] = self.__dict__[key] + + return data + + """ Generate the ebook filename based on the ebook file hash """ + def ebook_filename(self) -> str: + filehash = self.hash() + ext = pathlib.Path(self.filepath).suffix + self.filename = f"{filehash}{ext}" + return self.filename + + """ Save the ebook from the calibre library to the path """ + def ebook_save(self, path: str) -> str: + filepath = os.path.join(path, self.ebook_filename()) + + if os.path.exists(filepath): + return + + print(f"COPY {self.filepath} -> {filepath}") + shutil.copyfile(self.filepath, filepath) + return filepath + + """ Save the ebook cover to the path """ + def cover_save(self, path: str) -> str: + filehash = self.hash() + + # NOTE: we assume by testing the cover is a .jpg so we check if it exists on disk already as ".jpg" + self.cover = os.path.join(path, f"{filehash}.jpg") + if os.path.exists(self.cover): + print(f"COVER {self.cover}") + return self.cover + + cover_tmpfile = self._db.cover(self.id, as_path=True) + cover_ext = pathlib.Path(cover_tmpfile).suffix + + self.cover = os.path.join(path, f"{filehash}{cover_ext}") + os.rename(cover_tmpfile, self.cover) + print(f"SAVE COVER {self.cover}") + + return self.cover + +class CalibreLibrary: + def __init__(self, library_path: str): + # First open the Calibre library and get a list of the book IDs + self._db = calibre.library.db(library_path).new_api + + @staticmethod + def _get_filesize_str(path: str) -> str: + size = os.path.getsize(path) + if size < 1024: + return f"{size} bytes" + elif size < pow(1024,2): + return f"{round(size/1024, 2)} KB" + elif size < pow(1024,3): + return f"{round(size/(pow(1024,2)), 2)} MB" + elif size < pow(1024,4): + return f"{round(size/(pow(1024,3)), 2)} GB" + + def books(self) -> 'list[CalibreLibraryBook]': + books = [] + book_ids = self._db.all_book_ids() + + for book_id in book_ids: + # TODO check loaded state with state of calibre based on book.id + # hashing takes way to long... + book = CalibreLibraryBook(self._db) + book.id = book_id + book.title = self._db.field_for("title", book.id) + book.authors = self._db.field_for("authors", book.id) + book.comments = self._db.field_for("comments", book.id) + book._metadata = self._db.get_metadata(book.id) + book.ids = book._metadata.get_identifiers() + + # Select only first ebook format + formats = self._db.formats(book.id, verify_formats=True) + if len(formats) > 0: + book.filepath = self._db.format_abspath(book.id, formats[0]) + book.filesize = self._get_filesize_str(book.filepath) + else: + book.filepath = None + book.filesize = 0 + + if book.hash() in config.CLEARWEB_FILTERED_BOOKS: + print(f"SKIP Book {book.title} filtered and not published on the clearweb") + continue + + books.append(book) + + return books + +class PyroTechnyLibrary: + _calibre_library : CalibreLibrary + _path: str + _tempdir: str + _google_drive_file_db: list + + def __init__(self, path: str, calibre_library: CalibreLibrary): + self._books = [] + self._calibre_library = calibre_library + self._path = path + self._state = {} + self._state["books"] = [] + + # Create path directories + if not os.path.exists(self._path): + print(f"CREATE {self._path}") + os.makedirs(self._path, 0o755) + + self._load_google_drive_file_db() + + def _get_google_drive_value_from_filename(self, filename: str, key: str) -> str: + value = "" + for file in self._google_drive_file_db: + if filename == file["filename"]: + value = file[key] + break + return value + + def _load_google_drive_file_db(self): + print(f"LOAD db.json from Google Drive: {config.GOOGLE_DRIVE_EBOOK_LIBRRARY_DB_JSON_URL}") + resp = urllib.request.urlopen(config.GOOGLE_DRIVE_EBOOK_LIBRRARY_DB_JSON_URL) + self._google_drive_file_db = json.loads(resp.read()) + + def _generate_book_dl_page(self, path, book): + pass + + def _generate_book_page(self, path, book): + filepath = os.path.join(path, f'{book.filehash}.md') + if os.path.exists(filepath): + os.remove(filepath) + + # TODO: When we us a template file we can check if the template + # or script is newer than the target book page markdown file. To speed things up a bit + print(f"GEN {filepath}") + + with open(filepath, "w") as fd: + data = f'''--- +title: "{book.title}" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +''' + fd.write(data) + + cover = os.path.basename(book.cover) + cover_url = os.path.join(config.LIBRARY_EBOOKS_THUMBS_URL_PATH, cover) + + book_url = self._get_google_drive_value_from_filename(book.filename, "view_url") + book_dl_url = self._get_google_drive_value_from_filename(book.filename, "download_url") + + authors = list(book.authors) + authors = ', '.join(authors) + if len(book.authors) == 1: + if book.authors[0] == "Unknown": + authors = None + + fd.write(f'![{cover}]({cover_url})\n') + + if authors: + author_suffix = '' + if len(book.authors) > 1: + author_suffix = 's' + fd.write(f"* Author{author_suffix}: {authors}\n") + + # IDs to book libraries and publishers + if book.ids and len(book.ids) > 0: + fd.write(f'* IDs:\n') + for key, value in book.ids.items(): + if key == "amazon": + fd.write(f' * Amazon: {value}\n') + elif key == "google": + fd.write(f' * Google: {value}\n') + elif key == "isbn": + fd.write(f' * ISBN: {value}\n') + elif key == "doi": + fd.write(f' * DOI: {value}\n') + + # View & Download + fd.write(f'* View\n\n') + fd.write(f'* [Download]({book_dl_url}) ({book.filesize})\n\n') + + # Comments + if book.comments: + fd.write(f'## Description') + fd.write(f'{book.comments}\n\n') + + # Back + fd.write(f'
[Back to library]({config.LIBRARY_EBOOKS_BASE_URL}/)\n') + + def synchronize(self): + # Load books from calibre + books = self._calibre_library.books() + for book in books: + book.ebook_filename() + book.cover_save(config.HUGO_STATIC_CONTENT_LIBRARY_IMAGES_PATH) + book.ebook_save(config.HUGO_STATIC_CONTENT_LIBRARY_PATH) + self._state["books"].append(book) + + """ Generate hugo markdown content files """ + def generate(self): + # per-book page generation + book_page_path = config.HUGO_CONTENT_LIBRARY_PATH + if not os.path.exists(book_page_path): + os.makedirs(book_page_path, 0o755) + + # TODO synced state instead of calibre copy.... + for book in self._state["books"]: + self._generate_book_page(book_page_path, book) + + def generate_library_sitemap(self, filepath: str): + if os.path.exists(filepath): + os.remove(filepath) + + with open(filepath, "w") as fd: + fd.write("# E-books library sitemap\n\n") + + for book in self._state["books"]: + fd.write(f"* [{book.title}]({config.LIBRARY_EBOOKS_BASE_URL}/ebooks/{book.hash()})\n") + +def main(): + calibre_library = CalibreLibrary(config.CALIBRE_LIBRARY_PATH) + pyrotechny_library = PyroTechnyLibrary(config.HUGO_STATIC_CONTENT_LIBRARY_PATH, calibre_library) + pyrotechny_library.synchronize() + pyrotechny_library.generate() + pyrotechny_library.generate_library_sitemap(config.HUGO_CONTENT_LIBRARY_SITEMAP_PATH) + +if __name__ == "__main__": + main() diff --git a/cmd/calibre_to_torrent.py b/cmd/calibre_to_torrent.py new file mode 100755 index 0000000..6066075 --- /dev/null +++ b/cmd/calibre_to_torrent.py @@ -0,0 +1,145 @@ +#!/Applications/calibre.app/Contents/MacOS/calibre-debug calibre_to_torrent.py +# See: https://manual.calibre-ebook.com/db_api.html +import os +import json +import copy +import shutil +import pathlib +import hashlib +import urllib +import calibre.library + +import config + +class CalibreLibrary: pass + +class CalibreLibraryBook: + _db: CalibreLibrary + + id: int + title: str + authors: str + filepath: str + filehash: str + filename: str + cover: str + + def __init__(self, db: CalibreLibrary): + self._db = db + self.cover = None + self.filehash = None + + """ Get book properties for JSON serialize """ + def to_json(self): + data = {} + for key in list(self.__dict__.keys()): + if key.startswith("_"): + continue + data[key] = self.__dict__[key] + + return data + + """ Generate the ebook filename based on the ebook file hash """ + def ebook_filename(self) -> str: + title = self.title + ext = pathlib.Path(self.filepath).suffix + self.filename = f"{title}{ext}" + self.filename = self.filename.replace(",", ".") + self.filename = self.filename.replace(";", "") + self.filename = self.filename.replace(":", ".") + self.filename = self.filename.replace("/", "-") + self.filename = self.filename.replace("'", "") + self.filename = self.filename.replace(" ", ".") + self.filename = self.filename.replace("..", ".") + return self.filename + + """ Save the ebook from the calibre library to the path """ + def ebook_save(self, path: str) -> str: + filepath = os.path.join(path, self.ebook_filename()) + + if os.path.exists(filepath): + return + + print(f"COPY {self.filepath} -> {filepath}") + shutil.copyfile(self.filepath, filepath) + return filepath + + +class CalibreLibrary: + def __init__(self, library_path: str): + # First open the Calibre library and get a list of the book IDs + self._db = calibre.library.db(library_path).new_api + + @staticmethod + def _get_filesize_str(path: str) -> str: + size = os.path.getsize(path) + if size < 1024: + return f"{size} bytes" + elif size < pow(1024,2): + return f"{round(size/1024, 2)} KB" + elif size < pow(1024,3): + return f"{round(size/(pow(1024,2)), 2)} MB" + elif size < pow(1024,4): + return f"{round(size/(pow(1024,3)), 2)} GB" + + def books(self) -> 'list[CalibreLibraryBook]': + books = [] + book_ids = self._db.all_book_ids() + + for book_id in book_ids: + # TODO check loaded state with state of calibre based on book.id + # hashing takes way to long... + book = CalibreLibraryBook(self._db) + book.id = book_id + book.title = self._db.field_for("title", book.id) + book.authors = self._db.field_for("authors", book.id) + book.comments = self._db.field_for("comments", book.id) + book._metadata = self._db.get_metadata(book.id) + book.ids = book._metadata.get_identifiers() + + # Select only first ebook format + formats = self._db.formats(book.id, verify_formats=True) + if len(formats) > 0: + book.filepath = self._db.format_abspath(book.id, formats[0]) + book.filesize = self._get_filesize_str(book.filepath) + else: + book.filepath = None + book.filesize = 0 + + books.append(book) + + return books + +class PyroTechnyEbookLibraryTorrent: + _calibre_library : CalibreLibrary + _path: str + _tempdir: str + _google_drive_file_db: list + + def __init__(self, path: str, calibre_library: CalibreLibrary): + self._books = [] + self._calibre_library = calibre_library + self._path = path + self._state = {} + self._state["books"] = [] + + # Create cache pat + if not os.path.exists(self._path): + print(f"CREATE {self._path}") + os.makedirs(self._path, 0o755) + + def synchronize(self): + # Load books from calibre + books = self._calibre_library.books() + for book in books: + #print(f"{book.to_json()}") + book.ebook_save(self._path) + +def main(): + calibre_library = CalibreLibrary(config.CALIBRE_LIBRARY_PATH) + pyrotechny_library = PyroTechnyEbookLibraryTorrent(config.EBOOK_LIBRARY_TORRENT_CACHE_DIR, calibre_library) + pyrotechny_library.synchronize() + +if __name__ == "__main__": + main() + diff --git a/cmd/config.py b/cmd/config.py new file mode 100644 index 0000000..6f02488 --- /dev/null +++ b/cmd/config.py @@ -0,0 +1,10 @@ +GOOGLE_DRIVE_EBOOK_LIBRRARY_DB_JSON_URL = "https://drive.google.com/uc?export=view&id=1eRGzaRg-CsweqivR9TnmX3relG7m4j6F&export=download" +CALIBRE_LIBRARY_PATH = "/Users/jerry/files/pyrotechnics/ebooks" +HUGO_STATIC_CONTENT_LIBRARY_PATH = "/Users/jerry/files/pyrotechnics/cache/pyrotechny.eu/library/ebooks" +HUGO_CONTENT_LIBRARY_PATH = "/Users/jerry/src/github.com/xor-gate/pyrotechny.eu/src/content/library/ebooks" +HUGO_CONTENT_LIBRARY_SITEMAP_PATH = "/Users/jerry/src/github.com/xor-gate/pyrotechny.eu/src/content/library/ebooks/sitemap.md" +HUGO_STATIC_CONTENT_LIBRARY_IMAGES_PATH = "/Users/jerry/src/github.com/xor-gate/pyrotechny.eu/src/static/images/library" +LIBRARY_EBOOKS_BASE_URL = "/library" +LIBRARY_EBOOKS_THUMBS_URL_PATH = "/images/library" +EBOOK_LIBRARY_TORRENT_CACHE_DIR = "/Users/jerry/files/pyrotechnics/cache/fireworks_and_pyrotechnics_ebook_library_by_pyrotechny_eu" +CLEARWEB_FILTERED_BOOKS = ["b74c5626774ce2cfc7efe245aabce72e7e261295931008b843848d2f54f9954b"] diff --git a/cmd/google_drive_db_json_to_hugo.py b/cmd/google_drive_db_json_to_hugo.py new file mode 100755 index 0000000..62f70ff --- /dev/null +++ b/cmd/google_drive_db_json_to_hugo.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 +import json + +import config +from urllib.request import urlopen + +resp = urlopen(config.GOOGLE_DRIVE_EBOOK_LIBRRARY_DB_JSON_URL) +data = json.loads(resp.read()) + +print(data) diff --git a/cmd/google_drive_library_sync.sh b/cmd/google_drive_library_sync.sh new file mode 100755 index 0000000..223b25c --- /dev/null +++ b/cmd/google_drive_library_sync.sh @@ -0,0 +1,6 @@ +#!/bin/sh +DISK_PATH="/Users/jerry/files/pyrotechnics/cache/pyrotechny.eu/library/ebooks" +GDRIVE_PATH="gdrive:library.pyrotechny.eu/ebooks" +RCLONE_ARGS="--progress --config rclone.conf" +#rclone --config rclone.conf ls ${GDRIVE_PATH} +/usr/local/bin/rclone ${RCLONE_ARGS} sync ${DISK_PATH} ${GDRIVE_PATH} diff --git a/cmd/google_drive_share_ebook.js b/cmd/google_drive_share_ebook.js new file mode 100644 index 0000000..951505f --- /dev/null +++ b/cmd/google_drive_share_ebook.js @@ -0,0 +1,52 @@ +/** + * Google drive folder file public share creator + * For use on https://script.google.com/ platform (Google Apps Script) + * Shares the folderID files and writes a db.json to the folder + */ +function share_folder_files() { + var folderId = "1vRPsN2yBqSFVgVJTWarH43Sr7BLolZNS"; // library.pyrotechny.eu/ebooks + var files = DriveApp.getFolderById(folderId).getFiles(); + var result = []; + + while (files.hasNext()) { + var file = files.next(); + + sharing = file.getSharingAccess(); + if (sharing != DriveApp.Access.ANYONE_WITH_LINK) { + file.setSharing(DriveApp.Access.ANYONE_WITH_LINK, DriveApp.Permission.VIEW); + } + + var entry = { + filename: file.getName(), + view_url: "https://drive.google.com/file/d/" + file.getId() + "/view", + download_url: "https://drive.google.com/uc?export=download&id=" + file.getId() + }; + + result.push(entry); + Logger.log(entry["filename"] + " -> " + file.getId()); + }; + + // Update or create db.json and share the file + var file = null; + files = DriveApp.getFolderById(folderId).getFilesByName("db.json"); + while (files.hasNext()) { + file = files.next(); // NOTE: Only last file is updated, no duplicates are removed... + } + + db_json_data = JSON.stringify(result); + + if (!file) { + file = DriveApp.getFolderById(folderId).createFile("db.json", db_json_data, MimeType.PLAIN_TEXT); + sharing = file.getSharingAccess(); + if (sharing != DriveApp.Access.ANYONE_WITH_LINK) { + file.setSharing(DriveApp.Access.ANYONE_WITH_LINK, DriveApp.Permission.VIEW); + } + Logger.log("Created db.json"); + } else { + file.setContent(db_json_data); + Logger.log("Updated db.json"); + } + + download_url = "https://drive.google.com/uc?export=view&id=" + file.getId(); + Logger.log("db.json located at " + download_url) +} diff --git a/cmd/library_ebooks_create_torrent.sh b/cmd/library_ebooks_create_torrent.sh new file mode 100755 index 0000000..6306ab8 --- /dev/null +++ b/cmd/library_ebooks_create_torrent.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# Needs py3createtorrent +## +OUTPUT_DIR="$HOME/files/pyrotechnics/cache" +EBOOK_LIBRARY_DIRECTORY="${OUTPUT_DIR}/fireworks_and_pyrotechnics_ebook_library_by_pyrotechny_eu" +NAME="fireworks_and_pyrotechnics_ebook_library_by_pyrotechny_eu" +COMMENT="Pyrotechnics and fireworks ebook library by PyroTechny.EU" + +py3createtorrent --exclude-pattern '.DS_Store' -o "${OUTPUT_DIR}" -n "${NAME}" -c "${COMMENT}" -t best20 ${EBOOK_LIBRARY_DIRECTORY} diff --git a/cmd/links_to_hugo.py b/cmd/links_to_hugo.py new file mode 100644 index 0000000..97fc901 --- /dev/null +++ b/cmd/links_to_hugo.py @@ -0,0 +1,53 @@ +#!/usr/bin/env python311 +import pprint + +import yaml +import jinja2 + + +class LinksYAMLDB: + def __init__(self, filename: str): + with open(filename, "r", encoding="utf-8") as fd: + self._db = yaml.load(fd, yaml.Loader) + self._process() + + def _process(self): + self._categories = {} + for category in self._db["categories"]: + category_name = category.capitalize() + _category = self._categories[category_name] = {} + _category["links"] = [] + for link in self._db["links"]: + if category in link["categories"]: + _category["links"].append(link) + + pprint.pprint(self._categories) + + def generate_categories_page(self): + env = jinja2.Environment( + loader=jinja2.FileSystemLoader("data"), + autoescape=jinja2.select_autoescape() + ) + tmpl = env.get_template("links-categories-page.md.jinja2") + data = tmpl.render(categories=self._db["categories"]) + with open("src/content/links/categories.md", "w", encoding="utf8") as fd: + fd.write(data) + + def _generate_category_page(self, category: str, links: dict): + env = jinja2.Environment( + loader=jinja2.FileSystemLoader("data"), + autoescape=jinja2.select_autoescape() + ) + tmpl = env.get_template("links-category-page.md.jinja2") + data = tmpl.render(name=category, links=links) + with open(f"src/content/links/category/{category}.md", "w", encoding="utf8") as fd: + fd.write(data) + + def generate_category_pages(self): + for category in self._categories.keys(): + self._generate_category_page(category, links=self._categories[category]["links"]) + + +links_db = LinksYAMLDB("data/links.yaml") +links_db.generate_categories_page() +links_db.generate_category_pages() diff --git a/cmd/requirements.txt b/cmd/requirements.txt new file mode 100644 index 0000000..3534ad9 --- /dev/null +++ b/cmd/requirements.txt @@ -0,0 +1,9 @@ +certifi==2023.5.7 +charset-normalizer==3.2.0 +idna==3.4 +pip==22.3.1 +requests==2.31.0 +setuptools==65.5.1 +wheel==0.38.4 +PyYAML==6.0.1 +Jinja2==3.1.2 \ No newline at end of file diff --git a/data/links-categories-page.md.jinja2 b/data/links-categories-page.md.jinja2 new file mode 100644 index 0000000..9188d10 --- /dev/null +++ b/data/links-categories-page.md.jinja2 @@ -0,0 +1,10 @@ +--- +title: Link categories +description: 'PyroTechny.EU' +featured_image: '/images/site/about-header.jpg' +type: page +--- + +{% for category in categories -%} +* [{{ category }}](/links/category/{{ category }}) +{%- endfor %} \ No newline at end of file diff --git a/data/links-category-page.md.jinja2 b/data/links-category-page.md.jinja2 new file mode 100644 index 0000000..85055c2 --- /dev/null +++ b/data/links-category-page.md.jinja2 @@ -0,0 +1,12 @@ +--- +title: {{ name }} links +description: 'PyroTechny.EU' +featured_image: '/images/site/about-header.jpg' +type: page +--- + +{% for link in links -%} +* {{ link.url_description }} +{% endfor %} + +[Back to links](/links/categories/) \ No newline at end of file diff --git a/data/links.yaml b/data/links.yaml new file mode 100644 index 0000000..2a6d4fe --- /dev/null +++ b/data/links.yaml @@ -0,0 +1,87 @@ +### +# pyrotechny.eu Links YAML database +# see: https://quickref.me/yaml.html +### + +categories: + - forum + +countries: + - international + - US + - NL + - UK + - RU + - PL + - DE + +links: + + ### + # category: forum + ### + + - url: https://fireworking.com/forum + url_description: Fireworking.com forum + country: international + categories: [forum] + + - url: https://www.amateurpyro.com/forum/ + url_description: Amateur Pyrotechnics and Chemistry Forum + country: international + categories: [forum] + + - url: http://pyro-gear.co.uk/forum/ + url_description: Pyro-Gear Forum (United Kingdom) + country: UK + categories: [forum] + + - url: https://www.sciencemadness.org/whisper/ + url_description: Sciencemadness.org Forum (English) + country: international + categories: [forum] + + - url: https://www.reddit.com/r/Pyrotechnics/ + url_description: r/Pyrotechnics on Reddit (English) + country: international + categories: [forum] + + - url: https://www.reddit.com/r/fireworks/ + url_description: r/fireworks on Reddit (English) + country: international + categories: [forum] + + - url: https://pyroforum.nl/ + url_description: PyroForum.nl (Dutch) + country: NL + categories: [forum] + + - url: http://www.pyrosociety.org.uk/forum/ + url_description: UK Pyrotechnics Society - the pyrotechnics forum (United Kingdom) + country: UK + categories: [forum] + + - url: https://www.thevespiary.org/talk/ + url_description: The Vespiary chemistry forum (English) + country: international + categories: [forum] + + - url: https://pirotehnika-ruhelp.com/ + url_description: Pirotehnika-ruhelp.com (Russian) + country: RU + categories: [forum] + + - url: https://freakpyromaniacs.com/index.php + url_description: FREAKPYROMANIACS.com (Dutch) + country: NL + categories: [forum] + + - url: https://www.forumfajerwerki.pl/ + url_description: Forumfajerwerki.pl (Polish) + country: PL + categories: [forum] + + - url: + url_description: Feuerwerk-Forum.de + country: PL + categories: [forum] \ No newline at end of file diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 0000000..5bdfcdf --- /dev/null +++ b/src/.gitignore @@ -0,0 +1,26 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test + +/public +.DS_Store diff --git a/src/.hugo_build.lock b/src/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/src/LICENSE b/src/LICENSE new file mode 100644 index 0000000..4527efb --- /dev/null +++ b/src/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Steve Francia + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000..11a456c --- /dev/null +++ b/src/README.md @@ -0,0 +1,29 @@ +# hugoBasicExample + +This repository offers an example site for [Hugo](https://gohugo.io/) and also it provides the default content for demos hosted on the [Hugo Themes Showcase](https://themes.gohugo.io/). + +# Using + +1. [Install Hugo](https://gohugo.io/overview/installing/) +2. Clone this repository + +```bash +git clone https://github.com/gohugoio/hugoBasicExample.git +cd hugoBasicExample +``` + +3. Clone the repository you want to test. If you want to test all Hugo Themes then follow the instructions provided [here](https://github.com/gohugoio/hugoThemes#installing-all-themes) + +4. Run Hugo and select the theme of your choosing + +```bash +hugo server -t YOURTHEME +``` + +5. Under `/content/` this repository contains the following: + +- A section called `/post/` with sample markdown content +- A headless bundle called `homepage` that you may want to use for single page applications. You can find instructions about headless bundles over [here](https://gohugo.io/content-management/page-bundles/#headless-bundle) +- An `about.md` that is intended to provide the `/about/` page for a theme demo + +6. If you intend to build a theme that does not fit in the content structure provided in this repository, then you are still more than welcome to submit it for review at the [Hugo Themes](https://github.com/gohugoio/hugoThemes/issues) respository diff --git a/src/archetypes/default.md b/src/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/src/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/src/config.toml b/src/config.toml new file mode 100644 index 0000000..6c73812 --- /dev/null +++ b/src/config.toml @@ -0,0 +1,36 @@ +title = "Pyrotechnics International United" +baseURL = "https://gohugo-theme-ananke.pages.dev" +languageCode = "en-us" +theme = ["github.com/theNewDynamic/gohugo-theme-ananke"] +resourceDir = "../resources" + +DefaultContentLanguage = "en" +SectionPagesMenu = "main" +Paginate = 3 # this is set low for demonstrating with dummy content. Set to a higher number +googleAnalytics = "" +enableRobotsTXT = true + +[languages] + title = "Ananke" + weight = 1 + contentDir = "content" + # languageDirection = 'rtl' for Right-To-Left languages + +[sitemap] + changefreq = "monthly" + priority = 0.5 + filename = "sitemap.xml" + +[params] + text_color = "" + author = "" + favicon = "" + site_logo = "" + description = "Pyrotechnics International United" + # choose a background color from any on this page: https://tachyons.io/docs/themes/skins/ and preface it with "bg-" + background_color_class = "bg-black" + recent_posts_number = 3 + +[[params.ananke_socials]] +name = "rss" +url = "/index.xml" diff --git a/src/configTaxo.toml b/src/configTaxo.toml new file mode 100644 index 0000000..9220fcf --- /dev/null +++ b/src/configTaxo.toml @@ -0,0 +1,27 @@ +timeout = 30000 +enableInlineShortcodes = true + +[taxonomies] +category = "categories" +tag = "tags" +series = "series" + +[privacy] + + [privacy.vimeo] + disabled = false + simple = true + + [privacy.twitter] + disabled = false + enableDNT = true + simple = true + disableInlineCSS = true + + [privacy.instagram] + disabled = false + simple = true + + [privacy.youtube] + disabled = false + privacyEnhanced = true diff --git a/src/content/_index.md b/src/content/_index.md new file mode 100644 index 0000000..7bcaf83 --- /dev/null +++ b/src/content/_index.md @@ -0,0 +1,32 @@ +--- +title: "PyroTechny.EU" + +description: "Pyrotechnics International United" +featured_image: '/images/site/disclaimer-header.jpg' +--- + +# DISCLAIMER + +Pyrotechnic Safety Information for individuals above 18 years of age + +**Age Restriction**: Pyrotechnic devices are intended for use by individuals who are 18 years of age or older. It is essential to comply with legal age requirements and regulations pertaining to the possession, purchase, and use of pyrotechnics. + +**Safety Training**: Prior to handling or igniting pyrotechnics, individuals above 18 years of age should undergo proper training from qualified professionals. Understanding safety procedures, precautions, and potential risks associated with pyrotechnic materials is crucial for personal safety. + +**Responsible Use**: The use of pyrotechnic devices should be conducted responsibly, following all applicable laws, regulations, and safety guidelines. Individuals above 18 years of age should ensure they are used in authorized locations, adhering to safety protocols and considering the well-being of themselves and others. + +**Protective Equipment**: When handling pyrotechnics, it is important to wear appropriate personal protective equipment (PPE), such as safety glasses and gloves. Wearing the recommended safety gear helps minimize the risk of injury from sparks, heat, or potential projectiles. + +**Authorized Locations**: Pyrotechnics should only be used in designated areas and authorized settings, complying with local regulations and community guidelines. Usage should be limited to open spaces away from flammable materials, buildings, and crowded areas. + +**Storage and Transportation**: Proper storage and transportation of pyrotechnic devices are essential for safety. They should be kept in cool, dry, and secure locations, away from heat sources or combustible materials. During transportation, ensure they are securely packaged and comply with applicable transportation regulations. + +**Fire Safety Measures**: Emphasize fire safety when using pyrotechnics. Have appropriate fire extinguishing equipment readily available, such as fire extinguishers or buckets of water, to address potential fires. Monitor weather conditions, especially during dry or windy periods, as they can increase the risk of fire. + +**Environmental Considerations**: Show respect for the environment when using pyrotechnics. Clean up after use, dispose of waste properly, and follow guidelines for environmental conservation. Avoid using pyrotechnics in sensitive areas where they may cause harm to wildlife or the ecosystem. + +**Responsible Disposal**: Safely and responsibly dispose of used or unused pyrotechnic devices. Adhere to proper disposal methods in accordance with local regulations. Never attempt to dismantle or modify pyrotechnic devices, as this can pose serious risks. + +**Personal Liability**: Individuals above 18 years of age engaging in pyrotechnic activities assume full responsibility for their actions. Any consequences or damages resulting from the use of pyrotechnic devices are the sole responsibility of the individuals involved. Exercise caution, follow safety guidelines, and act responsibly to minimize risks. + +# [ENTER](/landing/) diff --git a/src/content/about.md b/src/content/about.md new file mode 100644 index 0000000..654581e --- /dev/null +++ b/src/content/about.md @@ -0,0 +1,16 @@ +--- +title: About +description: 'PyroTechny.EU' +featured_image: '/images/site/about-header.jpg' +type: page +menus: main +--- + +- YouTube channel: [@PyroTechnyEU](https://youtube.com/@PyroTechnyEU) +- RSS feed: pyrotechny.eu/index.xml + +The PyroTechny.EU site is a knowledge base and Pyrotechnic information preservation project. +Feel free to contact us if you have something to for to the [Library](/library/) or [Links](/links/) sections. +It is also possible to submit blog posts about anything Pyrotechnic related. + + diff --git a/src/content/blog.md b/src/content/blog.md new file mode 100644 index 0000000..136b8a9 --- /dev/null +++ b/src/content/blog.md @@ -0,0 +1,7 @@ +--- +title: Blog +featured_image: '' +omit_header_text: true +type: page +menus: main +--- diff --git a/src/content/blog/_index.md b/src/content/blog/_index.md new file mode 100644 index 0000000..1947d34 --- /dev/null +++ b/src/content/blog/_index.md @@ -0,0 +1,7 @@ +--- +title: "Blog" +cascade: + featured_image: '/images/site/blog-header.jpg' +description: "PyroTechny.EU" +menus: main +--- diff --git a/src/content/blog/launch.md b/src/content/blog/launch.md new file mode 100644 index 0000000..9af5da9 --- /dev/null +++ b/src/content/blog/launch.md @@ -0,0 +1,6 @@ +--- +date: 2023-07-14 +title: "Launching the Pyrotechnic Knowledge Base" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse sollicitudin lorem rhoncus lorem gravida, in mattis dui commodo. Donec egestas massa vel lacus tempor dignissim. Fusce fermentum accumsan nunc, a feugiat ante volutpat finibus. Aliquam erat volutpat. Sed pharetra arcu sapien, fermentum rhoncus nisl porttitor eu. Morbi feugiat ex fermentum tincidunt tincidunt. Suspendisse tempor eu turpis non hendrerit. Fusce vel velit justo. Curabitur rutrum mi nisl, ut venenatis turpis fermentum vitae. Suspendisse potenti. Nam congue purus a eros tristique, vel molestie magna bibendum. Etiam vehicula nisl bibendum augue vestibulum gravida. diff --git a/src/content/history.md b/src/content/history.md new file mode 100644 index 0000000..f170329 --- /dev/null +++ b/src/content/history.md @@ -0,0 +1,43 @@ +--- +title: History +featured_image: '/images/site/landing-header.jpg' +omit_header_text: false +# description: Welcome to the world of Pyrotechnics +type: page +--- + +

What about the old word Pyrotechny?

+ +

THE ORIGIN OF PYROTECHNY

+ +
+PYROTECHNY, or the Art of Firework-making, is of great antiquity, and the date of its origin is quite unknown; indeed, it would be impossible to define with any degree of exactitude what actually constitutes a firework. + +It is curious how universal is the belief that fireworks were dependent upon the invention or discovery of gunpowder. Very little consideration will prove the fallacy of this view ; in fact, will show that the reverse is probably the case. In India and China saltpetre (or nitrate of potash) is found in large quantities, and was, no doubt, used by the primitive inhabitants in far-off times for such purposes as curing meat, cooking, etc. The dropping of a quantity in the camp fire may have attracted the attention of some early inventor to the extent of starting him on a series of what were probably the earliest chemical experiments. + +PYROTECHNICS + +Gradually he gives up his hitherto necessary tasks of hunting and trapping, as he receives the fruits of other labours in return for his services as fire-maker to the tribe. + +The most important item in early social life is fire, the implements for producing it the most valued property of the tribe ; it was the focus of religion and the centre of daily existence, so that any new phenomenon connected with fire would be of the greatest interest to primitive people, and any short cut to the production of fire would be accorded more perseverance and care in its perfection than almost any other invention. + +Fire would be struck with a piece of iron pyrites on a flint, small pieces of reguline particles of iron would be detached and fall on the fire mixture unlit. Afterwards, when combustion of the mass of fire mixture took place, these small pieces of metal would scintillate as do the iron filings in a modern firework composition. This would give rise to a further series of experiments, and gradually the composition known as Chinese Fire would be evolved, which is known to have been in use in the East from remote times. + +Having arrived at a pyrotechnic composition, attempt to use it in other ways besides fire-making would naturally follow, and sooner or later the idea of filling the mixture into tubes would suggest itself, especially as both in India and China (in one of which countries pyrotechny undoubtedly originated) a serviceable tube—or to use the modern term “ case ”—was ready to hand in any size or quantity in the ubiquitous bamboo. The bamboo is in use for the purpose at the present day in the East, and until recent times, when displaced by European weapons, was used in the construction of ordnance of considerable size. Mortars used for throwing firework shell up to six or more inches in diameter are still in use in Japan and China, the barrel consisting of a section of 4. + +- From [**Pyrotechnics: The History and Art of Firework Making by Alan St. Hill. Brock (1918)**](https://doi.org/10.5479/sil.117260.39088002567626) +
+ +

Pyrotechny the two Greek words for Fire and Art

+ +
+The term Pyrotechny is derived from pyr and techny, the two Greek words for Fire and Art; or it is the art of employing fire for purposes of utility or pleasure. The term has been applied by some writers to the use and structure of fire-arms, and Artillery employed in the art of warfare; but in the present publication, we shall take a different view of the subject; for we can see no amusement in the motion of a bullet, which decimates so many of our fellow-creatures, nor in the action of a bomb-shell, that carries with it more dreadful devastations. + +We shall confine ourselves in this Work to a more pleasing application of fire, and endeavour to give plain and efficient rules for the safe management of that element, and for the making, by means of gunpowder, and other inflammable substances, various compositions, agreeable to the eye, both by their form and splendor, and to describe every principal article and instrument made use of in these pleasing operations. + +On the other hand, our Work does not pretend to dictate an original set of rules and receipts, for those who term themselves Artists in Fire-works, whose exclusive business it is to manufacture the different articles on which it treats; to those, it is expected it will yield but little instruction; but, to the sciolistic Tyro in the Art, it is intended (as its title expresses) to be a Manual of Pyrotechny, and to treat of fire-works as objects of rational amusement; to describe in a perspicuous manner the materials and apparatus made use of in their construction; and to select such examples of their particular combinations, as are calculated rather for private diversion than public exhibition. The directions herein given (if strictly attended to) will enable youth to gratify their taste for this species of recreation at a comparatively small expense, and at the same time will guard them against those accidents which often arise to the ignorant, in firing the larger works purchased from the makers; and throughout the whole it will strictly observe a principle of economy, the neglect of which has so frequently retarded the operations of genius. + +In regard to the origin of Pyrotechny, our knowledge is very limited. The Chinese are said to have been the first people who had any practical knowledge of it, or brought the art to any degree of perfection; with them the use of fire-works is said to have been very general, long before they were known in European countries; and from accounts given of some recent exhibitions at Pekin, it should seem that they have attained to a degree of perfection not surpassed by any of our modern artists: Mr. Barrow, in his “Travels in China” gives, from the Journal of Lord Macartney, the following description of one of their exhibitions: “The fire-works, in some particulars,” says he, “exceeded any thing of the kind I had ever seen. In grandeur, magnificence, and variety, they were, I own, inferior to the Chinese fire-works we had seen at Batavia, but infinitely superior in point of novelty, neatness, and ingenuity of contrivance. One piece of machinery I greatly admired: a green chest, five feet square, was hoisted up by a pulley fifty or sixty feet from the ground, the bottom of which was so contrived as then suddenly to fall out, and make way for twenty or thirty strings of lanterns, inclosed in a box, to descend from it, unfolding themselves from one another by degrees, so as at last, to form a collection of full five hundred, each having a light of a beautifully coloured flame burning brightly within it. + +- From [**A Manual of Pyrotechny or, A Familiar System of Recreative Fire-works by G. W. Mortimer**](https://www.gutenberg.org/ebooks/58756) +
diff --git a/src/content/landing.md b/src/content/landing.md new file mode 100644 index 0000000..576b285 --- /dev/null +++ b/src/content/landing.md @@ -0,0 +1,21 @@ +--- +title: PyroTechny.EU +featured_image: '/images/site/landing-header.jpg' +omit_header_text: false +description: Welcome to the world of Pyrotechnics +type: page +--- + +Welcome to PyroTechny.EU the home for all information related to Pyrotechnics, Pyrotechnic chemistry and the craft of fire-works +and making of fireworks. We have a collection of links about fireworks and pyrotechnics to other sites. And a library +of books, documents and website mirrors. + +Want to know more about the old and almost [forgotten word Pyrotechny](/history/)? + +Use the navigation above on the page or go to one of the following sections: + +- [Blog](/blog/) +- [Links](/links/) +- [Library](/library/) +- [About](/about/) + - YouTube Channel [@PyroTechnyEU](https://youtube.com/@PyroTechnyEU) diff --git a/src/content/library.md b/src/content/library.md new file mode 100644 index 0000000..58a9fbc --- /dev/null +++ b/src/content/library.md @@ -0,0 +1,9 @@ +--- +title: "Library" +cascade: + featured_image: '/images/site/library-header.jpg' +description: "PyroTechny.EU" +type: page +menus: main +--- + diff --git a/src/content/library/_index.md b/src/content/library/_index.md new file mode 100644 index 0000000..f445d6f --- /dev/null +++ b/src/content/library/_index.md @@ -0,0 +1,12 @@ +--- +title: "Library" +cascade: + featured_image: '/images/site/library-header.jpg' +description: "PyroTechny.EU" +type: page +menus: main +--- + +This Library contains Pyrotechnic related e-books and website mirrors. + +View also the simple [library e-books sitemap](/library/ebooks/sitemap) or [download a snapshot of the library using Torrent](/library/ebooks/torrent). diff --git a/src/content/library/ebooks/0039279fc5575d18f08ee60553ea5045cdcee45de6fb807d0ea241731049e8ff.md b/src/content/library/ebooks/0039279fc5575d18f08ee60553ea5045cdcee45de6fb807d0ea241731049e8ff.md new file mode 100644 index 0000000..481cbe8 --- /dev/null +++ b/src/content/library/ebooks/0039279fc5575d18f08ee60553ea5045cdcee45de6fb807d0ea241731049e8ff.md @@ -0,0 +1,14 @@ +--- +title: "The Chlorates and Perchlorates" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![0039279fc5575d18f08ee60553ea5045cdcee45de6fb807d0ea241731049e8ff.jpg](/images/library/0039279fc5575d18f08ee60553ea5045cdcee45de6fb807d0ea241731049e8ff.jpg) +* Author: CapeCarnaval +* View + +* [Download](https://drive.google.com/uc?export=download&id=1RF0ZgGUyB3z7w0IeIohbOjz3VUDeRb4u) (23.77 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/005c8d4773cbd1fd6eded463edd6222895df0c17e62328b7acad1096a21ed2cf.md b/src/content/library/ebooks/005c8d4773cbd1fd6eded463edd6222895df0c17e62328b7acad1096a21ed2cf.md new file mode 100644 index 0000000..04980a0 --- /dev/null +++ b/src/content/library/ebooks/005c8d4773cbd1fd6eded463edd6222895df0c17e62328b7acad1096a21ed2cf.md @@ -0,0 +1,16 @@ +--- +title: "Basic Pyrotechnical Manipulations" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![005c8d4773cbd1fd6eded463edd6222895df0c17e62328b7acad1096a21ed2cf.jpg](/images/library/005c8d4773cbd1fd6eded463edd6222895df0c17e62328b7acad1096a21ed2cf.jpg) +* Authors: Degn, Various Uncredited Cribs +* View + +* [Download](https://drive.google.com/uc?export=download&id=1SnyK6HNz86TiUsiBpPyaRMEZ8NkzGo-W) (11.46 MB) + +## DescriptionFireworks + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/00a4bc5c221eb55409abcff63c6e970fb558709bd54479bcf176960af58a695c.md b/src/content/library/ebooks/00a4bc5c221eb55409abcff63c6e970fb558709bd54479bcf176960af58a695c.md new file mode 100644 index 0000000..c5eff00 --- /dev/null +++ b/src/content/library/ebooks/00a4bc5c221eb55409abcff63c6e970fb558709bd54479bcf176960af58a695c.md @@ -0,0 +1,21 @@ +--- +title: "Safety of Reactive Chemicals and Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![00a4bc5c221eb55409abcff63c6e970fb558709bd54479bcf176960af58a695c.jpg](/images/library/00a4bc5c221eb55409abcff63c6e970fb558709bd54479bcf176960af58a695c.jpg) +* Authors: Tadao Yoshida, Yuji Wada, Natalie Foster +* IDs: + * Google: QbHgAAAAMAAJ + * ISBN: 9780444886569 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1gSGBHhnosGkTITXWm-GskEN-0oUyiTfq) (14.5 MB) + +## Description
+

Hardbound. Accidents involving reactive chemicals can often be prevented, or their effects alleviated, if those handling them have a sound knowledge both of their hazardous properties and of appropriate handling methods. This book addresses this need.

+

It opens with a definition of the key technical terms and evaluation methods for hazardous materials are outlined. Chapter 2 covers accidents involving self-reactive substances, accidents occurring during chemical reactions, and accidents involving hazardous products in the event of an earthquake. In the next three chapters, methods for evaluating fire and explosion hazards of reactive substances are covered. The test methods described include DSC test using a sealed cell, impact sensitivity tests, the ignitability test, burning tests, the pyrolytic severity test, and shock sensitivity tests. Recently, the Japanese Fire Services Law was amended, requiring hazardous materials to be evaluated and classified

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/0121d70334c147cda50c6ce90b4504aae2111875c1ed7113310617fd467298ca.md b/src/content/library/ebooks/0121d70334c147cda50c6ce90b4504aae2111875c1ed7113310617fd467298ca.md new file mode 100644 index 0000000..d354287 --- /dev/null +++ b/src/content/library/ebooks/0121d70334c147cda50c6ce90b4504aae2111875c1ed7113310617fd467298ca.md @@ -0,0 +1,16 @@ +--- +title: "Professional Homemade Salutes" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![0121d70334c147cda50c6ce90b4504aae2111875c1ed7113310617fd467298ca.jpg](/images/library/0121d70334c147cda50c6ce90b4504aae2111875c1ed7113310617fd467298ca.jpg) +* Author: Joseph Abrusci +* IDs: + * Google: AbbSzgEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=17g1jetBuqoP3MaIiXhgp6zIH3ZfProgB) (1.95 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/017bc87d35ce27a29de90bbaf53eda31553f1cc58c05c92da3d9806dd9227909.md b/src/content/library/ebooks/017bc87d35ce27a29de90bbaf53eda31553f1cc58c05c92da3d9806dd9227909.md new file mode 100644 index 0000000..8cab7b6 --- /dev/null +++ b/src/content/library/ebooks/017bc87d35ce27a29de90bbaf53eda31553f1cc58c05c92da3d9806dd9227909.md @@ -0,0 +1,17 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 3 (1993 and 1994)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![017bc87d35ce27a29de90bbaf53eda31553f1cc58c05c92da3d9806dd9227909.jpg](/images/library/017bc87d35ce27a29de90bbaf53eda31553f1cc58c05c92da3d9806dd9227909.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=11rxqDhtqjX1Vbmm_FBioGPsmQq3L8Hhq) (5.15 MB) + +## Description
+

Pyrotechnic Literature Series No. 3

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/02a1d5a44e6732d71f672d881ad8f31ffd4776a9804cf42caa3e83d749b61d3c.md b/src/content/library/ebooks/02a1d5a44e6732d71f672d881ad8f31ffd4776a9804cf42caa3e83d749b61d3c.md new file mode 100644 index 0000000..5c4dcc5 --- /dev/null +++ b/src/content/library/ebooks/02a1d5a44e6732d71f672d881ad8f31ffd4776a9804cf42caa3e83d749b61d3c.md @@ -0,0 +1,13 @@ +--- +title: "Westech fireworks manual" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![02a1d5a44e6732d71f672d881ad8f31ffd4776a9804cf42caa3e83d749b61d3c.jpg](/images/library/02a1d5a44e6732d71f672d881ad8f31ffd4776a9804cf42caa3e83d749b61d3c.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=13o-YF2ieNb71sggqz4XKNVS3u_FEzI7t) (10.42 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/02dee08a18fb60e3c9cd03603a19c59b2b2fcf0ee65442de05a34e53d06bb58f.md b/src/content/library/ebooks/02dee08a18fb60e3c9cd03603a19c59b2b2fcf0ee65442de05a34e53d06bb58f.md new file mode 100644 index 0000000..08195b6 --- /dev/null +++ b/src/content/library/ebooks/02dee08a18fb60e3c9cd03603a19c59b2b2fcf0ee65442de05a34e53d06bb58f.md @@ -0,0 +1,13 @@ +--- +title: "A complete system of pyrotechny or the art of making fire-works (endless amusement pamplet)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![02dee08a18fb60e3c9cd03603a19c59b2b2fcf0ee65442de05a34e53d06bb58f.jpg](/images/library/02dee08a18fb60e3c9cd03603a19c59b2b2fcf0ee65442de05a34e53d06bb58f.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1QKRCxEmx9godTTsSueXuG-VOH4vFzCPJ) (3.55 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/038d994b3c6878812ceb426944b6894f30d786b5d9acb05d7a95c32f86d2568b.md b/src/content/library/ebooks/038d994b3c6878812ceb426944b6894f30d786b5d9acb05d7a95c32f86d2568b.md new file mode 100644 index 0000000..42580b7 --- /dev/null +++ b/src/content/library/ebooks/038d994b3c6878812ceb426944b6894f30d786b5d9acb05d7a95c32f86d2568b.md @@ -0,0 +1,17 @@ +--- +title: "Pyrotechnic Chemistry" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![038d994b3c6878812ceb426944b6894f30d786b5d9acb05d7a95c32f86d2568b.jpg](/images/library/038d994b3c6878812ceb426944b6894f30d786b5d9acb05d7a95c32f86d2568b.jpg) +* Author: Bonnie Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1zeLg-7TzDstnF5deI4z_DIUrVHTHtPDB) (16.9 MB) + +## Description
+

Pyrotechnic Reference Series No.4

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/04a10939cc815b40ea2d58f63dda75728f4ba49a9afb106ed625eca85a23a3e7.md b/src/content/library/ebooks/04a10939cc815b40ea2d58f63dda75728f4ba49a9afb106ed625eca85a23a3e7.md new file mode 100644 index 0000000..7989aa1 --- /dev/null +++ b/src/content/library/ebooks/04a10939cc815b40ea2d58f63dda75728f4ba49a9afb106ed625eca85a23a3e7.md @@ -0,0 +1,13 @@ +--- +title: "National Fireworks Review" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![04a10939cc815b40ea2d58f63dda75728f4ba49a9afb106ed625eca85a23a3e7.jpg](/images/library/04a10939cc815b40ea2d58f63dda75728f4ba49a9afb106ed625eca85a23a3e7.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1A9WsSIz-YqGOgMkVZYaXVJbci5BJKsSz) (34.43 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/069dd3eeab5d933d2d550aac40044832e36a0666f1e579aed6743ccd4d18dfea.md b/src/content/library/ebooks/069dd3eeab5d933d2d550aac40044832e36a0666f1e579aed6743ccd4d18dfea.md new file mode 100644 index 0000000..bf11544 --- /dev/null +++ b/src/content/library/ebooks/069dd3eeab5d933d2d550aac40044832e36a0666f1e579aed6743ccd4d18dfea.md @@ -0,0 +1,31 @@ +--- +title: "Military Pyrotechnics: Principles and Practices" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![069dd3eeab5d933d2d550aac40044832e36a0666f1e579aed6743ccd4d18dfea.jpg](/images/library/069dd3eeab5d933d2d550aac40044832e36a0666f1e579aed6743ccd4d18dfea.jpg) +* Author: Ajoy K. Bose +* IDs: + * Google: DT1PEAAAQBAJ + * ISBN: 9780367554118 + * Amazon: 0367554119 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1JxyLs426DwiVwDBtLd7IgVUNXkpOfTrj) (89.95 MB) + +## Description
+

This book covers military pyrotechnics characteristics, sensitivity, combustion, performance parameters, ingredients and their behaviour, various pyrotechnic compositions and their manufacturing methods, filling, pressing and assembly of ammunition and so forth. Divided into two broader sections, namely military pyrotechnic compositions and military pyrotechnic ammunitions and devices, it provides full spectrum of military pyrotechnics and a guide for all personnel involved with management of military pyrotechnic ammunitions and devices in design, production, inspection, training, and use.

+

Features:

+
  • Answers "know what", "know why "and "know how" of pyrotechnic compositions and pyrotechnic ammunitions and devices
  • +
  • Explains various concepts and mechanisms of the military pyrotechnics
  • +
  • Deliberates on role and characteristics of pyrotechnic compositions and its classification
  • +
  • Discusses various factors affecting performance and some differences in military pyrotechnics
  • +
  • Describes various methods of initiation of ignition in ammunition
  • +
  • Elucidates basic requirements of pyrotechnic ammunitions, its development and life cycle of ammunition lots
  • +
  • Provides classification, division, shelf life, compatibility and nomenclature of ammunitions and devices
  • +
  • Reviews test/proof requirements of ammunitions and devices, deployment and functioning, defect classification, sampling plan and acceptance criteria
  • +
  • Explores latest trends in 'green pyrotechnics' for environment- friendly military pyrotechnics
+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/091da78a306db7e4d69d2e96db4a83e61c4e9f2141c3d4b54f34755e645153a8.md b/src/content/library/ebooks/091da78a306db7e4d69d2e96db4a83e61c4e9f2141c3d4b54f34755e645153a8.md new file mode 100644 index 0000000..39d07a6 --- /dev/null +++ b/src/content/library/ebooks/091da78a306db7e4d69d2e96db4a83e61c4e9f2141c3d4b54f34755e645153a8.md @@ -0,0 +1,36 @@ +--- +title: "High Explosives, Propellants, Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![091da78a306db7e4d69d2e96db4a83e61c4e9f2141c3d4b54f34755e645153a8.jpg](/images/library/091da78a306db7e4d69d2e96db4a83e61c4e9f2141c3d4b54f34755e645153a8.jpg) +* Author: Ernst-Christian Koch +* IDs: + * ISBN: 9783110660524 + * Google: bOsUEAAAQBAJ + * Amazon: 3110660520 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1-1y7n4op0TG2O1VpFVMuelmAu3_clX1R) (28.21 MB) + +## Description
+

This dictionary contains 739 entries with about 1400 references to the primary literature. Details on the composition, performance, sensitivity and other pertinent properties of Energetic Materials such as High Explosives, Propellants, Pyrotechnics, as well as important ingredients such as Oxidizers, Fuels, Binders, and Modifiers are given and presented partly in over 180 tables with more than 240 structural formulas .

+

In detail the dictionary gives elaborate descriptions of

+
    +
  • 460 Chemical Substances
  • +
  • 170 Pyrotechnic Compositions
  • +
  • 360 High Explosive and Propellant Formulations
+

In addition, the basic physical and thermochemical properties of 435 pure substances (elements & compounds) typically occuring as ingredients or reaction products are given too.

+

150 Figures, schemes and diagrams explain Applications, Test methods, Scientific facilities, and finally Individuals closely tied with the development and investigation of Energetic Materials.

+

The book is intended for readers with a technical or scientific background, active in governmental agencies, research institutes, trade and industry, concerned with the procurement, development, manufacture, investigation and use of Energetic Materials, such as High Explosives, Propellants, Pyrotechnics, Fireworks and Ammunition. The book serves both as a daily reference for the experienced as well as an introduction for the newcomer to the field.

+

Review

+

review of the second german edition:

+

.. Diese Enzyklopädie ist für alle mit Explosivstoffen und Munition befassten Fachleute ein "Muss. Es ist dem Autor gelungen, die Fülle an Informationen außerordentlich übersichtlich und graphisch gelungen darzustellen. ...

+

...This encyclopedia is a must for every expert handling explosives and ammunition. The author has succeeded in presenting a wealth of information in an exceptionally well-arranged manner with clear depictions...

+

--Dr. Stephan Wilker, BAAINBw, Koblenz

+

About the Author

+

Ernst-Christian Koch , Lutradyn-Energetic Materials Science & Technology Consulting, Germany.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/10733f7f723ff8ceaefb86db9cf09781a30a6b3044d3a24a15cb8d5b14331e69.md b/src/content/library/ebooks/10733f7f723ff8ceaefb86db9cf09781a30a6b3044d3a24a15cb8d5b14331e69.md new file mode 100644 index 0000000..1eb5d32 --- /dev/null +++ b/src/content/library/ebooks/10733f7f723ff8ceaefb86db9cf09781a30a6b3044d3a24a15cb8d5b14331e69.md @@ -0,0 +1,14 @@ +--- +title: "Pyrotechnics Cook Book" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![10733f7f723ff8ceaefb86db9cf09781a30a6b3044d3a24a15cb8d5b14331e69.jpg](/images/library/10733f7f723ff8ceaefb86db9cf09781a30a6b3044d3a24a15cb8d5b14331e69.jpg) +* Author: Owner +* View + +* [Download](https://drive.google.com/uc?export=download&id=1sVlUmX8Y71S8e0u_3SmHns3Q8jfCN1h2) (847.92 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/13bf4ff52c0889f35096cc385ac028a95efdffd20eb9d8b2b2e9bbe286d8cc4a.md b/src/content/library/ebooks/13bf4ff52c0889f35096cc385ac028a95efdffd20eb9d8b2b2e9bbe286d8cc4a.md new file mode 100644 index 0000000..ce8c2a7 --- /dev/null +++ b/src/content/library/ebooks/13bf4ff52c0889f35096cc385ac028a95efdffd20eb9d8b2b2e9bbe286d8cc4a.md @@ -0,0 +1,14 @@ +--- +title: "The Best of AFN III" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![13bf4ff52c0889f35096cc385ac028a95efdffd20eb9d8b2b2e9bbe286d8cc4a.jpg](/images/library/13bf4ff52c0889f35096cc385ac028a95efdffd20eb9d8b2b2e9bbe286d8cc4a.jpg) +* Author: American Fireworks News +* View + +* [Download](https://drive.google.com/uc?export=download&id=13DTDM8yMt1_uqHnvStfL53ZWt9unGIHR) (2.78 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/162f96cbe941be44437945b35bb8fa15510b09599c08d5bb484fc66c9d2a1285.md b/src/content/library/ebooks/162f96cbe941be44437945b35bb8fa15510b09599c08d5bb484fc66c9d2a1285.md new file mode 100644 index 0000000..bc3a255 --- /dev/null +++ b/src/content/library/ebooks/162f96cbe941be44437945b35bb8fa15510b09599c08d5bb484fc66c9d2a1285.md @@ -0,0 +1,20 @@ +--- +title: "The Chemistry of Powder and Explosives" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![162f96cbe941be44437945b35bb8fa15510b09599c08d5bb484fc66c9d2a1285.jpg](/images/library/162f96cbe941be44437945b35bb8fa15510b09599c08d5bb484fc66c9d2a1285.jpg) +* Author: Dr. Tenney L. Davis +* IDs: + * Google: iKb2CwAAQBAJ + * ISBN: 9781786258960 +* View + +* [Download](https://drive.google.com/uc?export=download&id=18Phw_nR2_ApN04FauAXu7Loyk-8cO1XN) (8.35 MB) + +## Description
+

The present volume contains in one binding the whole contents of Volume I, first published in May, 1941, and the whole contents of Volume II which was published in March, 1943. The book was primarily for chemists. The writing of it was commenced in order that a textbook might be available for the use of students in the course in powder and explosives which the author gave for about twenty years (nearly every year since the first World War) to fourth-year and graduate students of chemistry and of chemical engineering at the Massachusetts Institute of Technology.[...]The aim of the book has been to describe as clearly and interestingly as possible, and as fully as seemed profitable the modes of behavior, both physical and chemical, of explosive substances, whether these modes find practical application or not. Historical material has been included where it was thought that it contributed to this end, and has not been included elsewhere or for any other reason. It is a fact that a knowledge of the history of ideas, of persons, or of things produces something of the same sympathetic understanding of them that living with them and working with them does.-Print ed.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/17664eb4911405ad284952b858874426af4b1720bb4dc551b528c81e86cd1d74.md b/src/content/library/ebooks/17664eb4911405ad284952b858874426af4b1720bb4dc551b528c81e86cd1d74.md new file mode 100644 index 0000000..15e9673 --- /dev/null +++ b/src/content/library/ebooks/17664eb4911405ad284952b858874426af4b1720bb4dc551b528c81e86cd1d74.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 19, Summer 2004" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![17664eb4911405ad284952b858874426af4b1720bb4dc551b528c81e86cd1d74.jpg](/images/library/17664eb4911405ad284952b858874426af4b1720bb4dc551b528c81e86cd1d74.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1AhhXkiLvPBupFCUbFI7lYfD-qzUEMEx0) (8.51 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/17dc9832e32bc6688793af7ee0e5520ec2a0ca1e9a2fd5c533ce08a176c616cd.md b/src/content/library/ebooks/17dc9832e32bc6688793af7ee0e5520ec2a0ca1e9a2fd5c533ce08a176c616cd.md new file mode 100644 index 0000000..7ee1d95 --- /dev/null +++ b/src/content/library/ebooks/17dc9832e32bc6688793af7ee0e5520ec2a0ca1e9a2fd5c533ce08a176c616cd.md @@ -0,0 +1,14 @@ +--- +title: "Lecture Slides for Fireworks Display Practices" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![17dc9832e32bc6688793af7ee0e5520ec2a0ca1e9a2fd5c533ce08a176c616cd.jpg](/images/library/17dc9832e32bc6688793af7ee0e5520ec2a0ca1e9a2fd5c533ce08a176c616cd.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1WQ0qJ7r7lMwqquKNNpjbv7ES_7REyXF0) (13.3 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/199f3a2031e78c272225f64a85d814de7a954f94d1b3aa5939371bf1aec09612.md b/src/content/library/ebooks/199f3a2031e78c272225f64a85d814de7a954f94d1b3aa5939371bf1aec09612.md new file mode 100644 index 0000000..dbe4798 --- /dev/null +++ b/src/content/library/ebooks/199f3a2031e78c272225f64a85d814de7a954f94d1b3aa5939371bf1aec09612.md @@ -0,0 +1,16 @@ +--- +title: "Firework Displays, Explosive Entertainment: A guide to getting the most from your firework display for designers, firers and event organisers" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![199f3a2031e78c272225f64a85d814de7a954f94d1b3aa5939371bf1aec09612.jpg](/images/library/199f3a2031e78c272225f64a85d814de7a954f94d1b3aa5939371bf1aec09612.jpg) +* Author: Smith, Tom +* IDs: + * ISBN: 9780820600918 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1l-wGwqii4PEVYf4qZOJRUq_SjExg06Lp) (7.34 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/1c3174a282cc479a6abcee7b8670e054b0bd53574eefa0df006c232d533c6a1b.md b/src/content/library/ebooks/1c3174a282cc479a6abcee7b8670e054b0bd53574eefa0df006c232d533c6a1b.md new file mode 100644 index 0000000..40394f2 --- /dev/null +++ b/src/content/library/ebooks/1c3174a282cc479a6abcee7b8670e054b0bd53574eefa0df006c232d533c6a1b.md @@ -0,0 +1,16 @@ +--- +title: "Illuminating pyrotechnic compositions and their specific features (Doctoral Dissertation)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![1c3174a282cc479a6abcee7b8670e054b0bd53574eefa0df006c232d533c6a1b.jpg](/images/library/1c3174a282cc479a6abcee7b8670e054b0bd53574eefa0df006c232d533c6a1b.jpg) +* Author: Dominykas Juknelvičius +* IDs: + * DOI: 10.15388/vu.thesis.122 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1GxkiSBGLyOXjijGAF14xX9TB_QO0fB4V) (6.91 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/1d216d9d6777b6c2f44cc7cad4578d28b432a2d9182dca89ceb97c490be8ea22.md b/src/content/library/ebooks/1d216d9d6777b6c2f44cc7cad4578d28b432a2d9182dca89ceb97c490be8ea22.md new file mode 100644 index 0000000..e8398b3 --- /dev/null +++ b/src/content/library/ebooks/1d216d9d6777b6c2f44cc7cad4578d28b432a2d9182dca89ceb97c490be8ea22.md @@ -0,0 +1,14 @@ +--- +title: "AMCP 706-187 Military Pyrotechnics Series, Part 3" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![1d216d9d6777b6c2f44cc7cad4578d28b432a2d9182dca89ceb97c490be8ea22.jpg](/images/library/1d216d9d6777b6c2f44cc7cad4578d28b432a2d9182dca89ceb97c490be8ea22.jpg) +* Author: Properties of Materials Used in Pyrotechnic Compositions +* View + +* [Download](https://drive.google.com/uc?export=download&id=1ppuc4tIeyal-YsQCLk2QqwoU9bbOGMn4) (16.17 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/1e7e26920eb7ae98c500120fd150c6b6d0d1168c538c7aed5161d66ecde0b8ac.md b/src/content/library/ebooks/1e7e26920eb7ae98c500120fd150c6b6d0d1168c538c7aed5161d66ecde0b8ac.md new file mode 100644 index 0000000..e745d58 --- /dev/null +++ b/src/content/library/ebooks/1e7e26920eb7ae98c500120fd150c6b6d0d1168c538c7aed5161d66ecde0b8ac.md @@ -0,0 +1,14 @@ +--- +title: "Incendiaries Advanced Improvised Explosives" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![1e7e26920eb7ae98c500120fd150c6b6d0d1168c538c7aed5161d66ecde0b8ac.jpg](/images/library/1e7e26920eb7ae98c500120fd150c6b6d0d1168c538c7aed5161d66ecde0b8ac.jpg) +* Author: Seymour Lecker +* View + +* [Download](https://drive.google.com/uc?export=download&id=1hA551MqkGmP2MDRn3-xqkEXLV1EsXmlB) (3.73 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/1ea2cbc4bd78fa632afd862db4652f34bb4ed8633bd1400ca00c979116197229.md b/src/content/library/ebooks/1ea2cbc4bd78fa632afd862db4652f34bb4ed8633bd1400ca00c979116197229.md new file mode 100644 index 0000000..c3ca232 --- /dev/null +++ b/src/content/library/ebooks/1ea2cbc4bd78fa632afd862db4652f34bb4ed8633bd1400ca00c979116197229.md @@ -0,0 +1,14 @@ +--- +title: "A System of Pyrotechny" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![1ea2cbc4bd78fa632afd862db4652f34bb4ed8633bd1400ca00c979116197229.jpg](/images/library/1ea2cbc4bd78fa632afd862db4652f34bb4ed8633bd1400ca00c979116197229.jpg) +* Author: James Cutbush, PhD +* View + +* [Download](https://drive.google.com/uc?export=download&id=1ZYTOVXPHpSo8SR-MtD8lqpq6h93P1DBY) (54.21 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/1ee324e6fc4952db6dc7006b47768bf8ed3ba26cca2639ba92c930b1528acbd2.md b/src/content/library/ebooks/1ee324e6fc4952db6dc7006b47768bf8ed3ba26cca2639ba92c930b1528acbd2.md new file mode 100644 index 0000000..5357e06 --- /dev/null +++ b/src/content/library/ebooks/1ee324e6fc4952db6dc7006b47768bf8ed3ba26cca2639ba92c930b1528acbd2.md @@ -0,0 +1,28 @@ +--- +title: "The Chemistry of Explosives" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![1ee324e6fc4952db6dc7006b47768bf8ed3ba26cca2639ba92c930b1528acbd2.jpg](/images/library/1ee324e6fc4952db6dc7006b47768bf8ed3ba26cca2639ba92c930b1528acbd2.jpg) +* Author: Jacqueline Akhavan +* IDs: + * Google: 2LfCDJZxey8C + * Amazon: 1839164468 + * ISBN: 9781839164460 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1QmyPtikaNq5yFyB_alrEPb-2UXa68VKl) (3.62 MB) + +## Description
+

Product Description

+

This concise, easy-to-read book outlines the basic principles needed to understand the chemical mechanisms of explosion. Written for students with no previous knowledge of explosives but some understanding of chemical reactions in mind, it takes the reader through the history of explosives and introduces the concepts of high explosives, propellants and pyrotechnics.

+

Covering combustion, deflagration, and detonation; ignition, initiation, and thermal decomposition; thermochemistry, thermodynamics and kinetics, the text includes detailed formulations and reactions presented with thermochemical calculations to aid understanding. This edition includes environmental legislation and its impact on explosives, together with a section on safety hazard tests. It also contains the latest developments in synthesis and manufacturing of explosives.

+

Covering all aspects of the properties of explosives, The Chemistry of Explosives is a unique text which introduces difficult subjects in a readable manner. Ideal for A-level students and new graduates with no previous knowledge of explosive materials, it will also be useful to anyone needing succinct information on the subject, such as the more experienced chemist in the explosives sector.

+

From the Back Cover

+

This concise, easy-to-read book outlines the basic principles needed to understand the chemical mechanisms of explosion. Written for students with no previous knowledge of explosives but some understanding of chemical reactions in mind, it takes the reader through the history of explosives and introduces the concepts of high explosives, propellants and pyrotechnics.

+

Covering combustion, deflagration, and detonation; ignition, initiation, and thermal decomposition; thermochemistry, thermodynamics and kinetics, the text includes detailed formulations and reactions presented with thermochemical calculations to aid understanding. This edition includes environmental legislation and its impact on explosives, together with a section on safety hazard tests. It also contains the latest developments in synthesis and manufacturing of explosives.

+

Covering all aspects of the properties of explosives, The Chemistry of Explosives is a unique text which introduces difficult subjects in a readable manner. Ideal for A-level students and new graduates with no previous knowledge of explosive materials, it will also be useful to anyone needing succinct information on the subject, such as the more experienced chemist in the explosives sector.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2078453599d64b0f5276022fd0665f1af6b6d58b1cd6b146c3a023c3a01a5f24.md b/src/content/library/ebooks/2078453599d64b0f5276022fd0665f1af6b6d58b1cd6b146c3a023c3a01a5f24.md new file mode 100644 index 0000000..259f030 --- /dev/null +++ b/src/content/library/ebooks/2078453599d64b0f5276022fd0665f1af6b6d58b1cd6b146c3a023c3a01a5f24.md @@ -0,0 +1,16 @@ +--- +title: "Perchlorates: Their Properties, Manufacture and Uses. Edited by J.C. Schumacher" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2078453599d64b0f5276022fd0665f1af6b6d58b1cd6b146c3a023c3a01a5f24.jpg](/images/library/2078453599d64b0f5276022fd0665f1af6b6d58b1cd6b146c3a023c3a01a5f24.jpg) +* Author: Joseph Charles Schumacher +* IDs: + * Google: 6ykVMwEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=15VzqVLCabQaCe-AtflAsHFE-x97h48UF) (15.06 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2183d57094fb91bdb1f4f37448e3a394491e5662c6430f58f2e0ed8bd31bdb2a.md b/src/content/library/ebooks/2183d57094fb91bdb1f4f37448e3a394491e5662c6430f58f2e0ed8bd31bdb2a.md new file mode 100644 index 0000000..f815a50 --- /dev/null +++ b/src/content/library/ebooks/2183d57094fb91bdb1f4f37448e3a394491e5662c6430f58f2e0ed8bd31bdb2a.md @@ -0,0 +1,14 @@ +--- +title: "Skylighter.com Turbo Pyro 10 fireworks you can make this weekend" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2183d57094fb91bdb1f4f37448e3a394491e5662c6430f58f2e0ed8bd31bdb2a.jpg](/images/library/2183d57094fb91bdb1f4f37448e3a394491e5662c6430f58f2e0ed8bd31bdb2a.jpg) +* Author: Ned Gorski +* View + +* [Download](https://drive.google.com/uc?export=download&id=1veQIwnsMljKpEBrQ5RmWUp_cxnRhTWLV) (5.65 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/24360bce1db53b7ca653cc2eb6d3dd0060ea76f25d595a7f7b0479730195467d.md b/src/content/library/ebooks/24360bce1db53b7ca653cc2eb6d3dd0060ea76f25d595a7f7b0479730195467d.md new file mode 100644 index 0000000..f138393 --- /dev/null +++ b/src/content/library/ebooks/24360bce1db53b7ca653cc2eb6d3dd0060ea76f25d595a7f7b0479730195467d.md @@ -0,0 +1,16 @@ +--- +title: "Pyrotechnic Compositions" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![24360bce1db53b7ca653cc2eb6d3dd0060ea76f25d595a7f7b0479730195467d.jpg](/images/library/24360bce1db53b7ca653cc2eb6d3dd0060ea76f25d595a7f7b0479730195467d.jpg) +* Author: Broderick Still +* IDs: + * ISBN: 9781283492393 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1-BWyuIjZO87clmCUkg787b9UzqPK2Ivl) (3.93 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/248b6f82e8e31774c3e458d5972824cfaaf57e1536a447a420023336f09bf5a6.md b/src/content/library/ebooks/248b6f82e8e31774c3e458d5972824cfaaf57e1536a447a420023336f09bf5a6.md new file mode 100644 index 0000000..3c6d7bb --- /dev/null +++ b/src/content/library/ebooks/248b6f82e8e31774c3e458d5972824cfaaf57e1536a447a420023336f09bf5a6.md @@ -0,0 +1,17 @@ +--- +title: "Selected Pyrotechnic Publications of Dr. Takeo Shimizu, Part 3" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![248b6f82e8e31774c3e458d5972824cfaaf57e1536a447a420023336f09bf5a6.jpg](/images/library/248b6f82e8e31774c3e458d5972824cfaaf57e1536a447a420023336f09bf5a6.jpg) +* Author: Dr. Takeo Shimizu +* View + +* [Download](https://drive.google.com/uc?export=download&id=1geeJuww31fGEad9zXRljNrpQy2igO-ND) (9.99 MB) + +## Description
+

Pyrotechnic Literature Series No. 6

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/249a9c09b4d852a2bce4c49111c90b20db2cd7671923318d76064387e10d8671.md b/src/content/library/ebooks/249a9c09b4d852a2bce4c49111c90b20db2cd7671923318d76064387e10d8671.md new file mode 100644 index 0000000..0c1fcb8 --- /dev/null +++ b/src/content/library/ebooks/249a9c09b4d852a2bce4c49111c90b20db2cd7671923318d76064387e10d8671.md @@ -0,0 +1,17 @@ +--- +title: "Selected Pyrotechnic Publications of Dr. Takeo Shimizu Part 2" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![249a9c09b4d852a2bce4c49111c90b20db2cd7671923318d76064387e10d8671.jpg](/images/library/249a9c09b4d852a2bce4c49111c90b20db2cd7671923318d76064387e10d8671.jpg) +* Author: Dr. Takeo Shimizu +* View + +* [Download](https://drive.google.com/uc?export=download&id=1LxUSdNZnLm8aEfj6jL8a4OaV-8BzhLIz) (6.81 MB) + +## Description
+

Pyrotechnic Literature Series No. 6

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/25558ef56e6e17c9c16807e5ec100428ad498ff60902fc80268d22d99671727b.md b/src/content/library/ebooks/25558ef56e6e17c9c16807e5ec100428ad498ff60902fc80268d22d99671727b.md new file mode 100644 index 0000000..e368c12 --- /dev/null +++ b/src/content/library/ebooks/25558ef56e6e17c9c16807e5ec100428ad498ff60902fc80268d22d99671727b.md @@ -0,0 +1,20 @@ +--- +title: "A Professional's Guide To Pyrotechnics: Understanding and Making Exploding Fireworks" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![25558ef56e6e17c9c16807e5ec100428ad498ff60902fc80268d22d99671727b.jpg](/images/library/25558ef56e6e17c9c16807e5ec100428ad498ff60902fc80268d22d99671727b.jpg) +* Author: John Donner +* IDs: + * ISBN: 9780873649292 + * Amazon: 087364929X +* View + +* [Download](https://drive.google.com/uc?export=download&id=1vG0AtNBGxw_Uky3P9hTgAzK63EIY6grZ) (4.76 MB) + +## Description
+

This book offers a well-rounded selection of reliable, well-researched formulas for the most popular exploding fireworks, including M80s, cherry bombs, ash cans, chasers, globe torpedoes, Knallkorpers, aerial bombs, cracker balls, Flashcrackas and more. For academic study only.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/259dfa0a0ce5931041ed1a28dae0578bfdeb8c461ad165c9a1d0a3e37151a2de.md b/src/content/library/ebooks/259dfa0a0ce5931041ed1a28dae0578bfdeb8c461ad165c9a1d0a3e37151a2de.md new file mode 100644 index 0000000..b743735 --- /dev/null +++ b/src/content/library/ebooks/259dfa0a0ce5931041ed1a28dae0578bfdeb8c461ad165c9a1d0a3e37151a2de.md @@ -0,0 +1,14 @@ +--- +title: "Wouter's Practical Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![259dfa0a0ce5931041ed1a28dae0578bfdeb8c461ad165c9a1d0a3e37151a2de.jpg](/images/library/259dfa0a0ce5931041ed1a28dae0578bfdeb8c461ad165c9a1d0a3e37151a2de.jpg) +* Author: Wouter Visser +* View + +* [Download](https://drive.google.com/uc?export=download&id=1J6wicu8OcOtkGZgsg-MtZUHR33hJCdhM) (801.64 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/275d53e429a6712207ea7bf1d8a2d41acd1c28b05f06ecbc80aa12c13300a014.md b/src/content/library/ebooks/275d53e429a6712207ea7bf1d8a2d41acd1c28b05f06ecbc80aa12c13300a014.md new file mode 100644 index 0000000..dc236b1 --- /dev/null +++ b/src/content/library/ebooks/275d53e429a6712207ea7bf1d8a2d41acd1c28b05f06ecbc80aa12c13300a014.md @@ -0,0 +1,13 @@ +--- +title: "The Cafe - Former - Official Organ of The Society for the Defense of Tradition in Pyrotechny" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![275d53e429a6712207ea7bf1d8a2d41acd1c28b05f06ecbc80aa12c13300a014.jpg](/images/library/275d53e429a6712207ea7bf1d8a2d41acd1c28b05f06ecbc80aa12c13300a014.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1pzD-QipbV5euWjRdi30h1haD7oQyr4WE) (26.1 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/280b69c0f4e926331679e2e2053d6d677761d0c03f48e3daeb5b3ab184c91334.md b/src/content/library/ebooks/280b69c0f4e926331679e2e2053d6d677761d0c03f48e3daeb5b3ab184c91334.md new file mode 100644 index 0000000..39184af --- /dev/null +++ b/src/content/library/ebooks/280b69c0f4e926331679e2e2053d6d677761d0c03f48e3daeb5b3ab184c91334.md @@ -0,0 +1,14 @@ +--- +title: "Field Expedient - Preparation of Black Powders" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![280b69c0f4e926331679e2e2053d6d677761d0c03f48e3daeb5b3ab184c91334.jpg](/images/library/280b69c0f4e926331679e2e2053d6d677761d0c03f48e3daeb5b3ab184c91334.jpg) +* Author: Paul Schumacher +* View + +* [Download](https://drive.google.com/uc?export=download&id=1px7RwWyJLmRyx296fdfNtl1QCUs1FKdB) (99.91 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/280cfbd90aba364a6d9acf6ab045827d023542ee9c71e900f613e340ad364949.md b/src/content/library/ebooks/280cfbd90aba364a6d9acf6ab045827d023542ee9c71e900f613e340ad364949.md new file mode 100644 index 0000000..be9d7b7 --- /dev/null +++ b/src/content/library/ebooks/280cfbd90aba364a6d9acf6ab045827d023542ee9c71e900f613e340ad364949.md @@ -0,0 +1,17 @@ +--- +title: "NFPA 1124 Code for the Manufacture, Transportation, and Storage of Fireworks and Pyrotechnic Articles 2022 Edition" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![280cfbd90aba364a6d9acf6ab045827d023542ee9c71e900f613e340ad364949.jpg](/images/library/280cfbd90aba364a6d9acf6ab045827d023542ee9c71e900f613e340ad364949.jpg) +* Author: National Fire Protection Association +* View + +* [Download](https://drive.google.com/uc?export=download&id=1XKsfQciwZz4MyYFkja9w4z3F4gDpRU9F) (2.08 MB) + +## Description
+

National Fire Protection Association (NFPA)

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2b457d5bb97aedf4a4323cf0e7b94501d831d5e17a47d8c575d0054a4320fa0a.md b/src/content/library/ebooks/2b457d5bb97aedf4a4323cf0e7b94501d831d5e17a47d8c575d0054a4320fa0a.md new file mode 100644 index 0000000..c785a10 --- /dev/null +++ b/src/content/library/ebooks/2b457d5bb97aedf4a4323cf0e7b94501d831d5e17a47d8c575d0054a4320fa0a.md @@ -0,0 +1,14 @@ +--- +title: "Make Your Own Fireworks" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2b457d5bb97aedf4a4323cf0e7b94501d831d5e17a47d8c575d0054a4320fa0a.jpg](/images/library/2b457d5bb97aedf4a4323cf0e7b94501d831d5e17a47d8c575d0054a4320fa0a.jpg) +* Author: Questor +* View + +* [Download](https://drive.google.com/uc?export=download&id=1P1GoHlHojc_-avAnjXFm0RPutsHdxFz8) (1.1 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2bd7b501b2ff5200bc45ecd065639edadb959e96814006303b5e62ad2709b0da.md b/src/content/library/ebooks/2bd7b501b2ff5200bc45ecd065639edadb959e96814006303b5e62ad2709b0da.md new file mode 100644 index 0000000..8495a6f --- /dev/null +++ b/src/content/library/ebooks/2bd7b501b2ff5200bc45ecd065639edadb959e96814006303b5e62ad2709b0da.md @@ -0,0 +1,15 @@ +--- +title: "The Pyrotechnist's Treasury; Or, Complete Art of Making Fireworks" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2bd7b501b2ff5200bc45ecd065639edadb959e96814006303b5e62ad2709b0da.jpg](/images/library/2bd7b501b2ff5200bc45ecd065639edadb959e96814006303b5e62ad2709b0da.jpg) +* Author: Thomas Kentish +* IDs: +* View + +* [Download](https://drive.google.com/uc?export=download&id=1R77iLXb8rc7JLkDH075xSl7SVl6LQdn0) (725.17 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2dc762c4cb5fbd860a816fec236e7c31117575f5f304376f44f18cd76c7afe18.md b/src/content/library/ebooks/2dc762c4cb5fbd860a816fec236e7c31117575f5f304376f44f18cd76c7afe18.md new file mode 100644 index 0000000..9fbe29e --- /dev/null +++ b/src/content/library/ebooks/2dc762c4cb5fbd860a816fec236e7c31117575f5f304376f44f18cd76c7afe18.md @@ -0,0 +1,67 @@ +--- +title: "Pyrotechnia, of meer dan hondertderleye konstvermakelijcke vuurwerken" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2dc762c4cb5fbd860a816fec236e7c31117575f5f304376f44f18cd76c7afe18.jpg](/images/library/2dc762c4cb5fbd860a816fec236e7c31117575f5f304376f44f18cd76c7afe18.jpg) +* Author: John Babington +* IDs: +* View + +* [Download]() (4.81 MB) + +## Description
+

bron

+

John Babington, Pyrotechnia, of meer dan hondertderleye konstvermakelijcke vuurwerken. Baltes Boekholt, Amsterdam 1678

+

 

+

codering

+

DBNL-TEI 1

+

 

+

Wijze van coderen: standaard

+

 

+

dbnl-nr babi001pyro02_01

+

logboek

+

- 2013-03-27 MvdH colofon toegevoegd

+

 

+

verantwoording

+

gebruikt exemplaar

+

 

+

exemplaar persoonlijke collectie

+

 

+

 

+

algemene opmerkingen

+

 

+

Dit bestand biedt, behoudens een aantal hierna te noemen ingrepen, een diplomatische weergave van Pyrotechnia, of meer dan hondertderleye konstvermakelijcke vuurwerken van John Babington, vertaald door Daniel Manlyn, in de eerste druk, verschenen in 1678. Het originele werk Pyrotechnia, or Artificiall Fire Works stamt uit 1635.

+

Er is gebruik gemaakt van een door Stichting Vrijwilligersnetwerk Nederlandse Taal o.l.v. Nicoline van der Sijs en Hans Beelen aangeleverd bestand.

+

Coördinatie

+

prof. dr. Nicoline van der Sijs, Leiden (NL)

+

Medewerkers

+

dr. Ingrid Biesheuvel, Rijswijk (correctie)

+

drs. Dirkje Ebbers, Culemborg

+

Cor en Marga Jacobs, Amstelveen

+

dr. J.J. (Jantien) Kettenes-van den Bosch, Putten

+

Elly Pijpers, Rotterdam

+

Ton van der Steenhoven, MA, Ouderkerk aan den IJssel

+

Herman en Tineke Wiltink, Krimpen a/d IJssel (correctie)

+

Dé Wintersteijn, Assendelft

+

 

+

 

+

redactionele ingrepen

+

 

+

De afbeelding op p. 31 in het origineel is zeer onduidelijk en daarom hier weggelaten.

+

 

+

p. 77: het foutieve paginanummer 79 is verbeterd naar 77.

+

 

+

p. 84: het foutieve paginanummer 48 is verbeterd naar 84.

+

 

+

Paginanummers 120 en 121 ontbreken in de nummering; de tekst loopt gewoon door.

+

 

+

p. 166: het foutieve paginanummer 616 is verbeterd naar 166.

+

 

+

 

+

Bij de omzetting van de gebruikte bron naar deze publicatie in de dbnl is een aantal delen van de tekst niet overgenomen. Hieronder volgen de tekstgedeelten die wel in het origineel voorkomen maar hier uit de lopende tekst zijn weggelaten.

+

https://www.dbnl.org/tekst/babi001pyro02_01

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2e7ed97a2cc1b10e92ff6f80d4a9809e9da9bbd417f78f10e800941e11c819ce.md b/src/content/library/ebooks/2e7ed97a2cc1b10e92ff6f80d4a9809e9da9bbd417f78f10e800941e11c819ce.md new file mode 100644 index 0000000..fb8e90a --- /dev/null +++ b/src/content/library/ebooks/2e7ed97a2cc1b10e92ff6f80d4a9809e9da9bbd417f78f10e800941e11c819ce.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 7" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2e7ed97a2cc1b10e92ff6f80d4a9809e9da9bbd417f78f10e800941e11c819ce.jpg](/images/library/2e7ed97a2cc1b10e92ff6f80d4a9809e9da9bbd417f78f10e800941e11c819ce.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=1CY6jgC1xYThQbJFyQdpFF0eEod3qXx6o) (150.13 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2e832d4f3a3bf98fd203813845e5dd82595d3f8b82946c1c991ab466d58024af.md b/src/content/library/ebooks/2e832d4f3a3bf98fd203813845e5dd82595d3f8b82946c1c991ab466d58024af.md new file mode 100644 index 0000000..29ce5c7 --- /dev/null +++ b/src/content/library/ebooks/2e832d4f3a3bf98fd203813845e5dd82595d3f8b82946c1c991ab466d58024af.md @@ -0,0 +1,13 @@ +--- +title: "Engineering Design Handbook - Military Pyrotechnics Series, Part Three - Properties of Materials Used in Pyrotechnic Compositions" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2e832d4f3a3bf98fd203813845e5dd82595d3f8b82946c1c991ab466d58024af.jpg](/images/library/2e832d4f3a3bf98fd203813845e5dd82595d3f8b82946c1c991ab466d58024af.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1qjyzalsZKYCIjdwvZMrVTAiSMa_0MhRQ) (16.17 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2f38dbdc3bb9efc5cab75d0e53c9093f4b03ebed041aba7837a94ca42db9e00b.md b/src/content/library/ebooks/2f38dbdc3bb9efc5cab75d0e53c9093f4b03ebed041aba7837a94ca42db9e00b.md new file mode 100644 index 0000000..c258d6a --- /dev/null +++ b/src/content/library/ebooks/2f38dbdc3bb9efc5cab75d0e53c9093f4b03ebed041aba7837a94ca42db9e00b.md @@ -0,0 +1,14 @@ +--- +title: "Pirotecnia E Fuochi Artificiali" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2f38dbdc3bb9efc5cab75d0e53c9093f4b03ebed041aba7837a94ca42db9e00b.jpg](/images/library/2f38dbdc3bb9efc5cab75d0e53c9093f4b03ebed041aba7837a94ca42db9e00b.jpg) +* Author: Atillio Izzo +* View + +* [Download](https://drive.google.com/uc?export=download&id=1UHirrAPoeMiD5yutpspUZTlCRkkLcC2p) (3.67 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/2fdc3166758a55149d312104056b57821dfc8049b00f7a63ab083da9a99484b1.md b/src/content/library/ebooks/2fdc3166758a55149d312104056b57821dfc8049b00f7a63ab083da9a99484b1.md new file mode 100644 index 0000000..75302f6 --- /dev/null +++ b/src/content/library/ebooks/2fdc3166758a55149d312104056b57821dfc8049b00f7a63ab083da9a99484b1.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 14, Winter 2001" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![2fdc3166758a55149d312104056b57821dfc8049b00f7a63ab083da9a99484b1.jpg](/images/library/2fdc3166758a55149d312104056b57821dfc8049b00f7a63ab083da9a99484b1.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1VD6DyF9QkaKyCvoNjfupnD1ecKL9-3pW) (2.85 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/304c63d5d98a58688ea01e02c3583009a9a86b95cb9c8495b60a13ce44e7014f.md b/src/content/library/ebooks/304c63d5d98a58688ea01e02c3583009a9a86b95cb9c8495b60a13ce44e7014f.md new file mode 100644 index 0000000..df4fdfb --- /dev/null +++ b/src/content/library/ebooks/304c63d5d98a58688ea01e02c3583009a9a86b95cb9c8495b60a13ce44e7014f.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 2" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![304c63d5d98a58688ea01e02c3583009a9a86b95cb9c8495b60a13ce44e7014f.jpg](/images/library/304c63d5d98a58688ea01e02c3583009a9a86b95cb9c8495b60a13ce44e7014f.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=14Yh0_YAzQBi4fxZ-PjEzyy_J8YJ8I0Dr) (166.66 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/3069bd0d4d26b0e252c427d90a6af73c82b0ff683944ac60a153c314b06a61b7.md b/src/content/library/ebooks/3069bd0d4d26b0e252c427d90a6af73c82b0ff683944ac60a153c314b06a61b7.md new file mode 100644 index 0000000..4a2d6f9 --- /dev/null +++ b/src/content/library/ebooks/3069bd0d4d26b0e252c427d90a6af73c82b0ff683944ac60a153c314b06a61b7.md @@ -0,0 +1,14 @@ +--- +title: "Pyrotechnics and Propellants" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![3069bd0d4d26b0e252c427d90a6af73c82b0ff683944ac60a153c314b06a61b7.jpg](/images/library/3069bd0d4d26b0e252c427d90a6af73c82b0ff683944ac60a153c314b06a61b7.jpg) +* Author: Steven Todd, PhD +* View + +* [Download](https://drive.google.com/uc?export=download&id=1YHsWXa5XIhoaC6Mg8JpZYql1zENBXOqA) (2.93 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/30d31914a6250ac5362935674cd589de541dff4b18058b5a3316864a6262ad3f.md b/src/content/library/ebooks/30d31914a6250ac5362935674cd589de541dff4b18058b5a3316864a6262ad3f.md new file mode 100644 index 0000000..0af911d --- /dev/null +++ b/src/content/library/ebooks/30d31914a6250ac5362935674cd589de541dff4b18058b5a3316864a6262ad3f.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 4" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![30d31914a6250ac5362935674cd589de541dff4b18058b5a3316864a6262ad3f.jpg](/images/library/30d31914a6250ac5362935674cd589de541dff4b18058b5a3316864a6262ad3f.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=1ERD3NuYTHam4uLqT35_cEFx846cMrpxT) (141.02 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/3131f9a950ad58a82f753e79e876f2d49884808c4cbc35640dcff4f0c32dce25.md b/src/content/library/ebooks/3131f9a950ad58a82f753e79e876f2d49884808c4cbc35640dcff4f0c32dce25.md new file mode 100644 index 0000000..05392c5 --- /dev/null +++ b/src/content/library/ebooks/3131f9a950ad58a82f753e79e876f2d49884808c4cbc35640dcff4f0c32dce25.md @@ -0,0 +1,14 @@ +--- +title: "Pyromans Revenge" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![3131f9a950ad58a82f753e79e876f2d49884808c4cbc35640dcff4f0c32dce25.jpg](/images/library/3131f9a950ad58a82f753e79e876f2d49884808c4cbc35640dcff4f0c32dce25.jpg) +* Author: TeamLBVG +* View + +* [Download](https://drive.google.com/uc?export=download&id=110TmO6nJYVJvuJYJ33psSc8sjMjWglOB) (5.89 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/358e4c3e4527e1701901d804b26fddc0ac3514cfe8d84b1c60aa05a240e9b309.md b/src/content/library/ebooks/358e4c3e4527e1701901d804b26fddc0ac3514cfe8d84b1c60aa05a240e9b309.md new file mode 100644 index 0000000..66e94db --- /dev/null +++ b/src/content/library/ebooks/358e4c3e4527e1701901d804b26fddc0ac3514cfe8d84b1c60aa05a240e9b309.md @@ -0,0 +1,14 @@ +--- +title: "Pyro Projects cannonfuse" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![358e4c3e4527e1701901d804b26fddc0ac3514cfe8d84b1c60aa05a240e9b309.jpg](/images/library/358e4c3e4527e1701901d804b26fddc0ac3514cfe8d84b1c60aa05a240e9b309.jpg) +* Author: Paul Rebich +* View + +* [Download](https://drive.google.com/uc?export=download&id=1tLztv_yOLsVHfT9egYB7Jk48EOD8SK80) (1.15 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/35f390bdc64540a571f200231df34a88368edc0a3db58e4a780be88bfb5bf932.md b/src/content/library/ebooks/35f390bdc64540a571f200231df34a88368edc0a3db58e4a780be88bfb5bf932.md new file mode 100644 index 0000000..6579605 --- /dev/null +++ b/src/content/library/ebooks/35f390bdc64540a571f200231df34a88368edc0a3db58e4a780be88bfb5bf932.md @@ -0,0 +1,14 @@ +--- +title: "Journal of Pyrotechnics Issue 18, Winter 2003" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![35f390bdc64540a571f200231df34a88368edc0a3db58e4a780be88bfb5bf932.jpg](/images/library/35f390bdc64540a571f200231df34a88368edc0a3db58e4a780be88bfb5bf932.jpg) +* Author: Bonnie Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1qL3WSx4sHrbUPQ5bRgSu7KPbVXZ-Uh5u) (3.27 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/360d49d28a9f5f83d5e87da4e7b46f6c9e6072a24c7f35439dd9f2130240e561.md b/src/content/library/ebooks/360d49d28a9f5f83d5e87da4e7b46f6c9e6072a24c7f35439dd9f2130240e561.md new file mode 100644 index 0000000..30109e5 --- /dev/null +++ b/src/content/library/ebooks/360d49d28a9f5f83d5e87da4e7b46f6c9e6072a24c7f35439dd9f2130240e561.md @@ -0,0 +1,14 @@ +--- +title: "Theory of Colored Flame Production" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![360d49d28a9f5f83d5e87da4e7b46f6c9e6072a24c7f35439dd9f2130240e561.jpg](/images/library/360d49d28a9f5f83d5e87da4e7b46f6c9e6072a24c7f35439dd9f2130240e561.jpg) +* Author: B.E. Douda +* View + +* [Download](https://drive.google.com/uc?export=download&id=1RGLcwpl9Sk9l3huj3sRSK8UxpG9qS1D0) (553.42 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/362b02a9b84f4c6d902b370426c834715f16e63f5452e036639aacc786fa978c.md b/src/content/library/ebooks/362b02a9b84f4c6d902b370426c834715f16e63f5452e036639aacc786fa978c.md new file mode 100644 index 0000000..473d2c4 --- /dev/null +++ b/src/content/library/ebooks/362b02a9b84f4c6d902b370426c834715f16e63f5452e036639aacc786fa978c.md @@ -0,0 +1,16 @@ +--- +title: "A SYNTHESIS AND SOURCING GUIDE TO OVER THE COUNTER PYROTECHNICS – 2nd EDITION" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![362b02a9b84f4c6d902b370426c834715f16e63f5452e036639aacc786fa978c.jpg](/images/library/362b02a9b84f4c6d902b370426c834715f16e63f5452e036639aacc786fa978c.jpg) +* Author: LEO OGLECEVAC +* View + +* [Download](https://drive.google.com/uc?export=download&id=12sgCRJYRu6J44yRyAkeZqHnrHtZp9-Ro) (2.22 MB) + +## DescriptionAn OTC Composition Repository, Chemical Sourcing and Synthesis Guide + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/36c5cd110c5431931ab04c4e296c52576a9444e8192d7c24eeefb3c3f4b8b54b.md b/src/content/library/ebooks/36c5cd110c5431931ab04c4e296c52576a9444e8192d7c24eeefb3c3f4b8b54b.md new file mode 100644 index 0000000..8422ffe --- /dev/null +++ b/src/content/library/ebooks/36c5cd110c5431931ab04c4e296c52576a9444e8192d7c24eeefb3c3f4b8b54b.md @@ -0,0 +1,14 @@ +--- +title: "Pyrotechny, A Practical Manual for Manufactures of Fireworks, Signals, Flares & Pyrotechnic Displays" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![36c5cd110c5431931ab04c4e296c52576a9444e8192d7c24eeefb3c3f4b8b54b.jpg](/images/library/36c5cd110c5431931ab04c4e296c52576a9444e8192d7c24eeefb3c3f4b8b54b.jpg) +* Author: George W. Weingart +* View + +* [Download](https://drive.google.com/uc?export=download&id=1sBlqvBlbDx11m0G3l8Gux0QE2B_ILKtt) (10.69 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/36c6a67dcd5b148e3a06ce2f610edd56ef3415962c48873583db4f408785b22c.md b/src/content/library/ebooks/36c6a67dcd5b148e3a06ce2f610edd56ef3415962c48873583db4f408785b22c.md new file mode 100644 index 0000000..d526d9b --- /dev/null +++ b/src/content/library/ebooks/36c6a67dcd5b148e3a06ce2f610edd56ef3415962c48873583db4f408785b22c.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 27, Winter 2008" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![36c6a67dcd5b148e3a06ce2f610edd56ef3415962c48873583db4f408785b22c.jpg](/images/library/36c6a67dcd5b148e3a06ce2f610edd56ef3415962c48873583db4f408785b22c.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=18aMaWc5-ta45HktSeEtPHirY6CoDmPcK) (4.34 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/374b16ee5fe687159969c1500f5b1a29e5adf707f372be8dba23834d690dcdf3.md b/src/content/library/ebooks/374b16ee5fe687159969c1500f5b1a29e5adf707f372be8dba23834d690dcdf3.md new file mode 100644 index 0000000..80a6668 --- /dev/null +++ b/src/content/library/ebooks/374b16ee5fe687159969c1500f5b1a29e5adf707f372be8dba23834d690dcdf3.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue Number 7, Summer 1998" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![374b16ee5fe687159969c1500f5b1a29e5adf707f372be8dba23834d690dcdf3.jpg](/images/library/374b16ee5fe687159969c1500f5b1a29e5adf707f372be8dba23834d690dcdf3.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1A22CeUouK8E_Ki1VxQtp39xA2cmnpyp5) (2.79 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/3758938dcdaad60c9a94950746be0e5b9165419d49dd8b18d888890d6ac84e49.md b/src/content/library/ebooks/3758938dcdaad60c9a94950746be0e5b9165419d49dd8b18d888890d6ac84e49.md new file mode 100644 index 0000000..7a06889 --- /dev/null +++ b/src/content/library/ebooks/3758938dcdaad60c9a94950746be0e5b9165419d49dd8b18d888890d6ac84e49.md @@ -0,0 +1,16 @@ +--- +title: "The Chemistry of Fireworks (Reprinted 2002)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![3758938dcdaad60c9a94950746be0e5b9165419d49dd8b18d888890d6ac84e49.jpg](/images/library/3758938dcdaad60c9a94950746be0e5b9165419d49dd8b18d888890d6ac84e49.jpg) +* Author: Michael S. Russel +* IDs: + * ISBN: 1250212502 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1OhYb0XsUCUlU7yfkrb3f8CGjZb01MpYM) (1.89 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/3859402d1d8a6fb1b2f16f3b91309e103dc6750ffcd574a7986eb16b14a0f406.md b/src/content/library/ebooks/3859402d1d8a6fb1b2f16f3b91309e103dc6750ffcd574a7986eb16b14a0f406.md new file mode 100644 index 0000000..57247ef --- /dev/null +++ b/src/content/library/ebooks/3859402d1d8a6fb1b2f16f3b91309e103dc6750ffcd574a7986eb16b14a0f406.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 21, Summer 2005" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![3859402d1d8a6fb1b2f16f3b91309e103dc6750ffcd574a7986eb16b14a0f406.jpg](/images/library/3859402d1d8a6fb1b2f16f3b91309e103dc6750ffcd574a7986eb16b14a0f406.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1-AVddPK1QIMDuFxksamh93iDp0rsZ2Xo) (18.67 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/394215e339c012fff984f5da5c7eaa8abc8a1a09e6fbc60ae14aadf8a6ce3a5b.md b/src/content/library/ebooks/394215e339c012fff984f5da5c7eaa8abc8a1a09e6fbc60ae14aadf8a6ce3a5b.md new file mode 100644 index 0000000..002ac3f --- /dev/null +++ b/src/content/library/ebooks/394215e339c012fff984f5da5c7eaa8abc8a1a09e6fbc60ae14aadf8a6ce3a5b.md @@ -0,0 +1,16 @@ +--- +title: "Photographing Fireworks: The Right Gear, Location, and Techniques for Capturing Beautiful Images (Kevin L Wheeler's Library)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![394215e339c012fff984f5da5c7eaa8abc8a1a09e6fbc60ae14aadf8a6ce3a5b.jpg](/images/library/394215e339c012fff984f5da5c7eaa8abc8a1a09e6fbc60ae14aadf8a6ce3a5b.jpg) +* Author: Alan Hess +* IDs: + * ISBN: 9780133562507 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1sRIa6pjNjjqaLhGXKIJCz3tnegC4qoIk) (44.81 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/3e2cfeea1461a6d96e2878dffb587d83cd99f405dc926f98a4423bfa578772c1.md b/src/content/library/ebooks/3e2cfeea1461a6d96e2878dffb587d83cd99f405dc926f98a4423bfa578772c1.md new file mode 100644 index 0000000..c8410e7 --- /dev/null +++ b/src/content/library/ebooks/3e2cfeea1461a6d96e2878dffb587d83cd99f405dc926f98a4423bfa578772c1.md @@ -0,0 +1,17 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 2 (1990 and 1992)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![3e2cfeea1461a6d96e2878dffb587d83cd99f405dc926f98a4423bfa578772c1.jpg](/images/library/3e2cfeea1461a6d96e2878dffb587d83cd99f405dc926f98a4423bfa578772c1.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1yDKFcK6EsAg4bctBPofdRketJRS5Asxm) (3.32 MB) + +## Description
+

Pyrotechnic Literature Series No. 2

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/3f6578b910e4878fd3e3bf932a6b082520eb242a9e9432471c83ef6a86f91936.md b/src/content/library/ebooks/3f6578b910e4878fd3e3bf932a6b082520eb242a9e9432471c83ef6a86f91936.md new file mode 100644 index 0000000..eb9a206 --- /dev/null +++ b/src/content/library/ebooks/3f6578b910e4878fd3e3bf932a6b082520eb242a9e9432471c83ef6a86f91936.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 22, Winter 2005" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![3f6578b910e4878fd3e3bf932a6b082520eb242a9e9432471c83ef6a86f91936.jpg](/images/library/3f6578b910e4878fd3e3bf932a6b082520eb242a9e9432471c83ef6a86f91936.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1WEAK4J-paTyX7mM9Lcci0RKbYyZ3RNAV) (1.92 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/40861efe831f511aacaa4ac9347b3d2d558a9c0631a1865987dd9b8226a4ec76.md b/src/content/library/ebooks/40861efe831f511aacaa4ac9347b3d2d558a9c0631a1865987dd9b8226a4ec76.md new file mode 100644 index 0000000..77331ac --- /dev/null +++ b/src/content/library/ebooks/40861efe831f511aacaa4ac9347b3d2d558a9c0631a1865987dd9b8226a4ec76.md @@ -0,0 +1,14 @@ +--- +title: "A collection of pyrotechnic compositions & Practical Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![40861efe831f511aacaa4ac9347b3d2d558a9c0631a1865987dd9b8226a4ec76.jpg](/images/library/40861efe831f511aacaa4ac9347b3d2d558a9c0631a1865987dd9b8226a4ec76.jpg) +* Author: Wouter Visser +* View + +* [Download](https://drive.google.com/uc?export=download&id=1zBAgVq-F5WncgyeaCuc33n5LXttjSFVR) (1.67 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/435fe5bab263822980f11ccc47c1781063a31c601bad4e3e3a59a4322ca68071.md b/src/content/library/ebooks/435fe5bab263822980f11ccc47c1781063a31c601bad4e3e3a59a4322ca68071.md new file mode 100644 index 0000000..4098752 --- /dev/null +++ b/src/content/library/ebooks/435fe5bab263822980f11ccc47c1781063a31c601bad4e3e3a59a4322ca68071.md @@ -0,0 +1,18 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 1 (1981 through 1989)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![435fe5bab263822980f11ccc47c1781063a31c601bad4e3e3a59a4322ca68071.jpg](/images/library/435fe5bab263822980f11ccc47c1781063a31c601bad4e3e3a59a4322ca68071.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1nkWy6oP2ACIkcPW4HlJ09wvAgifJ5wO3) (13.01 MB) + +## Description
+

Selected Pyrotechnic Publications Part 1 (1981 through 1989)

+

Pyrotechnic Literature Series No. 1

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/448067c36a81b4f00127aac52e498b03b6cbc3303376d6f8f91ef297b34a083d.md b/src/content/library/ebooks/448067c36a81b4f00127aac52e498b03b6cbc3303376d6f8f91ef297b34a083d.md new file mode 100644 index 0000000..3e0c10d --- /dev/null +++ b/src/content/library/ebooks/448067c36a81b4f00127aac52e498b03b6cbc3303376d6f8f91ef297b34a083d.md @@ -0,0 +1,16 @@ +--- +title: "The Best of AFN II" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![448067c36a81b4f00127aac52e498b03b6cbc3303376d6f8f91ef297b34a083d.jpg](/images/library/448067c36a81b4f00127aac52e498b03b6cbc3303376d6f8f91ef297b34a083d.jpg) +* Author: American Fireworks News +* IDs: + * ISBN: 0929931157 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1irJh3TxxS5U6EigbnXek72IvQ6sU8QUD) (4.13 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/45cce9e1baad45891ccb73c5a0dbe232c0fce52b9dcefa4d87eb5010dbef5298.md b/src/content/library/ebooks/45cce9e1baad45891ccb73c5a0dbe232c0fce52b9dcefa4d87eb5010dbef5298.md new file mode 100644 index 0000000..c90af4e --- /dev/null +++ b/src/content/library/ebooks/45cce9e1baad45891ccb73c5a0dbe232c0fce52b9dcefa4d87eb5010dbef5298.md @@ -0,0 +1,20 @@ +--- +title: "Dictionary of Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![45cce9e1baad45891ccb73c5a0dbe232c0fce52b9dcefa4d87eb5010dbef5298.jpg](/images/library/45cce9e1baad45891ccb73c5a0dbe232c0fce52b9dcefa4d87eb5010dbef5298.jpg) +* Author: George Washington Weingart +* IDs: + * ISBN: 9780929931128 + * Amazon: 0929931122 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1mdI-fipciQ1ASZVZcHQfU6ZOg1TvGfSY) (24.45 MB) + +## Description
+

The prices and sources mentioned throughout the text are no longer valid. This text contains descriptions and depictions of fireworks. Readers are cautioned that they must form their own opinion as to the application of anything found herein. Rekeyed from original text with additional material.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/45debbb625e3d7196a5745fd87084058c6305a80586e131258e778ef6cd4ff29.md b/src/content/library/ebooks/45debbb625e3d7196a5745fd87084058c6305a80586e131258e778ef6cd4ff29.md new file mode 100644 index 0000000..69310f6 --- /dev/null +++ b/src/content/library/ebooks/45debbb625e3d7196a5745fd87084058c6305a80586e131258e778ef6cd4ff29.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 25, Summer 2007" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![45debbb625e3d7196a5745fd87084058c6305a80586e131258e778ef6cd4ff29.jpg](/images/library/45debbb625e3d7196a5745fd87084058c6305a80586e131258e778ef6cd4ff29.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1GLr-3fXo-PlkXGc-Bcc5oJecBdyWqiJ-) (6.03 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/47e7aae15b57ac095fc7ea9ee49bcd5f55e7d5e47e3eb974e89b148a8fa4b57c.md b/src/content/library/ebooks/47e7aae15b57ac095fc7ea9ee49bcd5f55e7d5e47e3eb974e89b148a8fa4b57c.md new file mode 100644 index 0000000..f96cdc2 --- /dev/null +++ b/src/content/library/ebooks/47e7aae15b57ac095fc7ea9ee49bcd5f55e7d5e47e3eb974e89b148a8fa4b57c.md @@ -0,0 +1,16 @@ +--- +title: "Gunpowder (Encyclopaedia Britannica 9th Edition 1891, vol 14)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![47e7aae15b57ac095fc7ea9ee49bcd5f55e7d5e47e3eb974e89b148a8fa4b57c.jpg](/images/library/47e7aae15b57ac095fc7ea9ee49bcd5f55e7d5e47e3eb974e89b148a8fa4b57c.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1LHRDnwtr6Dl9ZlLZnrv_W5ObScgSIyX6) (14.37 MB) + +## Description
+

PDFC-Encyclopaedia Britannica 9th Edition 1891, vol 14 KAO-LON.pdf

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/484c00fb8e9e7330df3a4db0540124d24bbedec4dfa44de00d47e4ea270b627b.md b/src/content/library/ebooks/484c00fb8e9e7330df3a4db0540124d24bbedec4dfa44de00d47e4ea270b627b.md new file mode 100644 index 0000000..ae76654 --- /dev/null +++ b/src/content/library/ebooks/484c00fb8e9e7330df3a4db0540124d24bbedec4dfa44de00d47e4ea270b627b.md @@ -0,0 +1,20 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 6 (2001 and 2002)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![484c00fb8e9e7330df3a4db0540124d24bbedec4dfa44de00d47e4ea270b627b.jpg](/images/library/484c00fb8e9e7330df3a4db0540124d24bbedec4dfa44de00d47e4ea270b627b.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1RgNaFzEkHtyau2ha4rgz-mA8DzRdw6sy) (15.18 MB) + +## Description
+

Selected Pyrotechnic Publications of K. L. and B. J. Kosanke,

+

Part 6 (2001 and 2002)

+

 

+

Pyrotechnic Literature Series No. 10

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/4922c967dc4b5eb3792fe1a7246bd83c2fa9f8455f83df079b3f6619a223df75.md b/src/content/library/ebooks/4922c967dc4b5eb3792fe1a7246bd83c2fa9f8455f83df079b3f6619a223df75.md new file mode 100644 index 0000000..e76dfea --- /dev/null +++ b/src/content/library/ebooks/4922c967dc4b5eb3792fe1a7246bd83c2fa9f8455f83df079b3f6619a223df75.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 9, Summer 1999" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![4922c967dc4b5eb3792fe1a7246bd83c2fa9f8455f83df079b3f6619a223df75.jpg](/images/library/4922c967dc4b5eb3792fe1a7246bd83c2fa9f8455f83df079b3f6619a223df75.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1ZZJrd7tRtistqjokqCUdh14_oeC-iuRJ) (1.73 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/4b483a4d1a31ef6925f91728cae011c1bf87054955d9ca766107a79ed9ddd2ca.md b/src/content/library/ebooks/4b483a4d1a31ef6925f91728cae011c1bf87054955d9ca766107a79ed9ddd2ca.md new file mode 100644 index 0000000..474bad3 --- /dev/null +++ b/src/content/library/ebooks/4b483a4d1a31ef6925f91728cae011c1bf87054955d9ca766107a79ed9ddd2ca.md @@ -0,0 +1,16 @@ +--- +title: "A Comprehensive Review of Black Powder" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![4b483a4d1a31ef6925f91728cae011c1bf87054955d9ca766107a79ed9ddd2ca.jpg](/images/library/4b483a4d1a31ef6925f91728cae011c1bf87054955d9ca766107a79ed9ddd2ca.jpg) +* Author: Ronald A. Sasse +* IDs: + * Amazon: B00CC2EV5Y +* View + +* [Download]() (1.99 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/4dbde367e2584e91a19464165718d663c147931cf8384dc54941298870e757a6.md b/src/content/library/ebooks/4dbde367e2584e91a19464165718d663c147931cf8384dc54941298870e757a6.md new file mode 100644 index 0000000..bb2d441 --- /dev/null +++ b/src/content/library/ebooks/4dbde367e2584e91a19464165718d663c147931cf8384dc54941298870e757a6.md @@ -0,0 +1,33 @@ +--- +title: "A Manual of Pyrotechny; Or, a Familiar System of Recreative Fire-Works" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![4dbde367e2584e91a19464165718d663c147931cf8384dc54941298870e757a6.jpg](/images/library/4dbde367e2584e91a19464165718d663c147931cf8384dc54941298870e757a6.jpg) +* Author: G. W. Mortimer +* IDs: + * Amazon: B0CMG96Q3J + * ISBN: 9789356787704 + * Google: H8yjEAAAQBAJ +* View + +* [Download]() (633.87 KB) + +## Description
+

A Manual of Pyrotechny; or, A Familiar System of Recreative Fire-works by Mortimer, G. W.

+

"Rediscover This Timeless Classic - The Ultimate MP3 Audiobook CD Experience!"

+

Journey back in time and immerse yourself in a world of timeless stories with our classic MP3 Audiobook series.

+

Why Dive into Our Classic Title MP3 Audiobook CDS?

+

Historical Significance: This masterwork, has shaped literature, inspired countless adaptations, and touched the hearts of generations.

+

Authentic Reproduction: Faithfully reproduced to capture the essence of the original publication.

+

High Quality Narration: Narrated by a cutting-edge AI voice.

+

Consistent Quality: AI narration ensures a consistent tone and pace throughout the book. There's no risk of the narrator becoming fatigued or any variations happening in the audio quality.

+

Universal Playability: This MP3 CD is compatible with any device that supports MP3 playback - from vintage CD players to modern car stereos and computers

+

Made in the USA: Meticulously produced in a specialized duplication facility right here in the USA.

+

**Reacquaint yourself with the tales that have withstood the test of time and embark on a audible journey through literature's golden age!

+

*Note:* The text of this book is deemed to be in the public domain in the United States. Any use or redistribution of this item outside the United States is done at the user's own risk and liability.

+

Listed Subjects:
**

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/4e5c793973230039732caf7341e93b0d69ead8ac1f0b03ef3ff1c152cc5cfce0.md b/src/content/library/ebooks/4e5c793973230039732caf7341e93b0d69ead8ac1f0b03ef3ff1c152cc5cfce0.md new file mode 100644 index 0000000..009738b --- /dev/null +++ b/src/content/library/ebooks/4e5c793973230039732caf7341e93b0d69ead8ac1f0b03ef3ff1c152cc5cfce0.md @@ -0,0 +1,13 @@ +--- +title: "Passfire.com Archive" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![4e5c793973230039732caf7341e93b0d69ead8ac1f0b03ef3ff1c152cc5cfce0.jpg](/images/library/4e5c793973230039732caf7341e93b0d69ead8ac1f0b03ef3ff1c152cc5cfce0.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1paR2qc8TfP4hBeKADX4VdBWA-KIWdj1M) (29.79 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/5009b321049d303a545a1894e07655f4a69d55ea2f049379e3efe6c26c68093f.md b/src/content/library/ebooks/5009b321049d303a545a1894e07655f4a69d55ea2f049379e3efe6c26c68093f.md new file mode 100644 index 0000000..f9663ad --- /dev/null +++ b/src/content/library/ebooks/5009b321049d303a545a1894e07655f4a69d55ea2f049379e3efe6c26c68093f.md @@ -0,0 +1,14 @@ +--- +title: "Pyrotechnic Flash Compositions" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![5009b321049d303a545a1894e07655f4a69d55ea2f049379e3efe6c26c68093f.jpg](/images/library/5009b321049d303a545a1894e07655f4a69d55ea2f049379e3efe6c26c68093f.jpg) +* Author: libgen.li +* View + +* [Download](https://drive.google.com/uc?export=download&id=1oE_wyUUwVz9qYUoVK5q4_EFFltwwqBwQ) (640.59 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/507ec6b691074d4747efd148895d527404d588d72e22d7131e443e4c67a8746a.md b/src/content/library/ebooks/507ec6b691074d4747efd148895d527404d588d72e22d7131e443e4c67a8746a.md new file mode 100644 index 0000000..c7fa760 --- /dev/null +++ b/src/content/library/ebooks/507ec6b691074d4747efd148895d527404d588d72e22d7131e443e4c67a8746a.md @@ -0,0 +1,16 @@ +--- +title: "Se per la fabbricazione e vendita dei preparati pirotecnici (fuochi artificiali)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![507ec6b691074d4747efd148895d527404d588d72e22d7131e443e4c67a8746a.jpg](/images/library/507ec6b691074d4747efd148895d527404d588d72e22d7131e443e4c67a8746a.jpg) +* Author: Francesco Gambini +* IDs: + * Google: ur84HQAACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=13dI1Waq-eWfojoMDvCq60_hlep68PP3h) (1.12 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/51415717ec9768561db55e92ab15510570ee34111e11a465693447196ad782e0.md b/src/content/library/ebooks/51415717ec9768561db55e92ab15510570ee34111e11a465693447196ad782e0.md new file mode 100644 index 0000000..062a087 --- /dev/null +++ b/src/content/library/ebooks/51415717ec9768561db55e92ab15510570ee34111e11a465693447196ad782e0.md @@ -0,0 +1,24 @@ +--- +title: "Breath of the Dragon: Homebuilt Flamethrowers" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![51415717ec9768561db55e92ab15510570ee34111e11a465693447196ad782e0.jpg](/images/library/51415717ec9768561db55e92ab15510570ee34111e11a465693447196ad782e0.jpg) +* Author: Ragnar Benson +* IDs: + * Amazon: 0873645650 + * Google: gKWRPQAACAAJ + * ISBN: 9780873645652 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1i95r0U_P0PJO1ElSEabaNtdoEfxn915q) (3.78 MB) + +## Description
+

Product Description

+

Do you have a weapon in your arsenal that will hold off tanks or a small army of hostile people? What you need is a flamethrower. They're cheap; easy to build and maintain; and use common, inexpensive fuel. A recipe for napalm is included. One whiff of the dragon"s breath will put attackers at your mercy.

+

About the Author

+

Ragnar Benson is America's most-esteemed survival expert. He has written more than 20 books for Paladin throughout the years on a variety of topics covering everything from weapons to politics to survival medicine.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/5298c322a1e188fa0d680f26642f3557f710dbdd4760d14d9b9e1f828c495c4c.md b/src/content/library/ebooks/5298c322a1e188fa0d680f26642f3557f710dbdd4760d14d9b9e1f828c495c4c.md new file mode 100644 index 0000000..21fdff8 --- /dev/null +++ b/src/content/library/ebooks/5298c322a1e188fa0d680f26642f3557f710dbdd4760d14d9b9e1f828c495c4c.md @@ -0,0 +1,23 @@ +--- +title: "Chemistry of Pyrotechnics: Basic Principles and Theory, Second Edition" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![5298c322a1e188fa0d680f26642f3557f710dbdd4760d14d9b9e1f828c495c4c.jpg](/images/library/5298c322a1e188fa0d680f26642f3557f710dbdd4760d14d9b9e1f828c495c4c.jpg) +* Author: John A. Conkling +* IDs: + * Amazon: 1574447408 + * ISBN: 9781574447408 +* View + +* [Download](https://drive.google.com/uc?export=download&id=15njyZSSlhgHrSkqKLE0qo16pfjIKzHRC) (3.57 MB) + +## Description
+

Primarily driven by advancing technology and concerns for safety, advancement in the world of pyrotechnics and high-energy materials has exploded in the past 25 years. The promulgation of new government regulations places new and more stringent restrictions on the materials that may be used in energetic mixtures. These regulations now mandate numerous training programs, and initiate other actions, such as OSHA’s Process Safety Management standard, intended to eliminate accidents and incidents. Unfortunately, the US lacks an organized, broad-range academic program to cover the science and use of energetic materials and educate the next generation of pyrotechnicians.

+

Designed as a bridge to allow a smooth and confident transition for personnel coming from a chemistry background into the practical world of explosives, Chemistry of Pyrotechnics: Basic Principles and Theory, Second Edition emphasizes basic chemical principles alongside practical, hands-on knowledge in the preparation of energetic mixtures. It examines the interactions between and adaptations of pyrotechnics to changing technology in areas such as obscuration science and low-signature flame emission.

+

Much more than a simple how-to guide, the book discusses chemical and pyrotechnic principles, components of high-energy mixtures, and elements of ignition, propagation, and sensitivity. It offers heat compositions, including ignition mixes, delays, thermites, and propellants and investigates the production of smoke and sound as well as light and color.

+

Promoting the growth and expansion of pyrotechnics as a science, Chemistry of Pyrotechnics: Basic Principles and Theory, Second Edition provides practitioners with the ability to apply chemical principles and logic to energetic materials and thereby make the field as productive, useful, and safe as possible.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/53f044dc9ccdc9bb8e654866bf5babedbadc64a24bc1a6d35e088b409b7d6053.md b/src/content/library/ebooks/53f044dc9ccdc9bb8e654866bf5babedbadc64a24bc1a6d35e088b409b7d6053.md new file mode 100644 index 0000000..86ac409 --- /dev/null +++ b/src/content/library/ebooks/53f044dc9ccdc9bb8e654866bf5babedbadc64a24bc1a6d35e088b409b7d6053.md @@ -0,0 +1,14 @@ +--- +title: "Bottle Rocket Handbook" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![53f044dc9ccdc9bb8e654866bf5babedbadc64a24bc1a6d35e088b409b7d6053.jpg](/images/library/53f044dc9ccdc9bb8e654866bf5babedbadc64a24bc1a6d35e088b409b7d6053.jpg) +* Author: Leo C. Singleton IV +* View + +* [Download](https://drive.google.com/uc?export=download&id=1vwC2XURsrO2gJpl9nmz_0yICZYUjWyM4) (670.22 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/54cb8e492154ddfbb96a132fed915c0e1266dfd8a7312d67a8cee48d92062fb6.md b/src/content/library/ebooks/54cb8e492154ddfbb96a132fed915c0e1266dfd8a7312d67a8cee48d92062fb6.md new file mode 100644 index 0000000..285c116 --- /dev/null +++ b/src/content/library/ebooks/54cb8e492154ddfbb96a132fed915c0e1266dfd8a7312d67a8cee48d92062fb6.md @@ -0,0 +1,21 @@ +--- +title: "Chemistry of Pyrotechnics: Basic Principles and Theory" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![54cb8e492154ddfbb96a132fed915c0e1266dfd8a7312d67a8cee48d92062fb6.jpg](/images/library/54cb8e492154ddfbb96a132fed915c0e1266dfd8a7312d67a8cee48d92062fb6.jpg) +* Author: John A. Conkling +* IDs: + * Google: E9fNzgEACAAJ + * Amazon: 1574447408 + * ISBN: 9780824774431 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1zvEGKXWetzNqC872HYRpOWQ5_OV8toNX) (1.58 MB) + +## Description
+

A perennial bestseller, Chemistry of Pyrotechnics and Explosives: Basic Principles and Theory, is simply the most definitive reference in this field. Author J.A. Conkling first covers the requisite background in chemistry, thermodynamics, and light emission, introduces oxidizing agents, fuels, binders, and retardants, then explores virtually every aspect of formulating pyrotechnics. Topics include the requirements for and preparation of high-energy mixtures, ignition and propagation, heat and delay compositions, and color and light production, including sparks, flitter, and glitter. The journal Pyrotechnica said this book "…belongs on every pyrotechnist's bookshelf."

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/5538b3b53842c71ab232209ff29764f3027a6e831e706c0e7fdccc42baa4c58f.md b/src/content/library/ebooks/5538b3b53842c71ab232209ff29764f3027a6e831e706c0e7fdccc42baa4c58f.md new file mode 100644 index 0000000..9027d9d --- /dev/null +++ b/src/content/library/ebooks/5538b3b53842c71ab232209ff29764f3027a6e831e706c0e7fdccc42baa4c58f.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 31, 2012" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![5538b3b53842c71ab232209ff29764f3027a6e831e706c0e7fdccc42baa4c58f.jpg](/images/library/5538b3b53842c71ab232209ff29764f3027a6e831e706c0e7fdccc42baa4c58f.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1fupQ39gCv_zbunApQw3JhQCdVn71RoyG) (5.2 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/564f5113a2abd57bfa0b2591a4e8cc6948dfc751de21e21280fc18a94736b616.md b/src/content/library/ebooks/564f5113a2abd57bfa0b2591a4e8cc6948dfc751de21e21280fc18a94736b616.md new file mode 100644 index 0000000..888ede5 --- /dev/null +++ b/src/content/library/ebooks/564f5113a2abd57bfa0b2591a4e8cc6948dfc751de21e21280fc18a94736b616.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 12, Winter 2000" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![564f5113a2abd57bfa0b2591a4e8cc6948dfc751de21e21280fc18a94736b616.jpg](/images/library/564f5113a2abd57bfa0b2591a4e8cc6948dfc751de21e21280fc18a94736b616.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Tj-2IQf6wnfRSQO4DMKQSSAGCLcP7hqL) (10.12 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/5730cc4e2187ece0edadd3caf5cde8099a8eee7145f3e9edcb7e10a6537b7f22.md b/src/content/library/ebooks/5730cc4e2187ece0edadd3caf5cde8099a8eee7145f3e9edcb7e10a6537b7f22.md new file mode 100644 index 0000000..3d3df46 --- /dev/null +++ b/src/content/library/ebooks/5730cc4e2187ece0edadd3caf5cde8099a8eee7145f3e9edcb7e10a6537b7f22.md @@ -0,0 +1,17 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 8 (2005 through 2007)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![5730cc4e2187ece0edadd3caf5cde8099a8eee7145f3e9edcb7e10a6537b7f22.jpg](/images/library/5730cc4e2187ece0edadd3caf5cde8099a8eee7145f3e9edcb7e10a6537b7f22.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1aK9ydSCs73kSacyYf-qPHST-CQ7JsjFP) (24.87 MB) + +## Description
+

Pyrotechnic Literature Series No. 12

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/597e756a6ec32a335c6dfae45dbf35400c98d22db1a468808ad98646d84ab64c.md b/src/content/library/ebooks/597e756a6ec32a335c6dfae45dbf35400c98d22db1a468808ad98646d84ab64c.md new file mode 100644 index 0000000..7829d7e --- /dev/null +++ b/src/content/library/ebooks/597e756a6ec32a335c6dfae45dbf35400c98d22db1a468808ad98646d84ab64c.md @@ -0,0 +1,21 @@ +--- +title: "Glitter: Chemistry and Techniques (Revised edition)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![597e756a6ec32a335c6dfae45dbf35400c98d22db1a468808ad98646d84ab64c.jpg](/images/library/597e756a6ec32a335c6dfae45dbf35400c98d22db1a468808ad98646d84ab64c.jpg) +* Author: Lloyd S. Oglesby +* IDs: + * Google: 4JG3PQAACAAJ + * Amazon: 0929931017 + * ISBN: 9780929931012 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1JrLQ9PBBhjmNpJAq1418gX5dHmsVjPji) (2.69 MB) + +## Description
+

Glitter, The Chemistry & Technique - Lloyd Scott Oglesby's definitive study of the phenomenon of glitter. It details the theory of glitter production, with plenty of photographs, then shows how to use the information to plan and develop your own glitter formulations. It's all here. 82 pages, 22 tables, 35 photos, 20 formulations. First published in 1983, completely reworked by the author in 1989.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/5bc123ca47207be94620cffce6fdcb3f96929d1d4d06f0954720a2ed7865bd25.md b/src/content/library/ebooks/5bc123ca47207be94620cffce6fdcb3f96929d1d4d06f0954720a2ed7865bd25.md new file mode 100644 index 0000000..61ba291 --- /dev/null +++ b/src/content/library/ebooks/5bc123ca47207be94620cffce6fdcb3f96929d1d4d06f0954720a2ed7865bd25.md @@ -0,0 +1,21 @@ +--- +title: "Military and Civilian Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![5bc123ca47207be94620cffce6fdcb3f96929d1d4d06f0954720a2ed7865bd25.jpg](/images/library/5bc123ca47207be94620cffce6fdcb3f96929d1d4d06f0954720a2ed7865bd25.jpg) +* Author: Herbert Ellern +* IDs: + * ISBN: 9780820603643 + * Amazon: 0820603643 + * Google: kQ8oqAAACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1m1Za5GojGWU-e1rfsXTOv8uyC0ZKF5i-) (4.48 MB) + +## Description
+

Written for manufacturers, laboratory pyrotechnicians, and lay students, this book contains an enormous amount of invaluable data on the properties and production of pyrotechnic materials, on heat and light production, on aerosols, energy, and noise. Includes a manufacturing formulary, and a good reference section. Its wealth of information and highly readable style make it a ‘must have’ in every pyrotechnician’s library. These titles may also pair well with these books: Brauer, Karl O., Handbook of Pyrotechnics: ISBN 978-0-8206-0349-0 Rev. Ronald Lancaster, Fireworks, Principles and Practice, 4th Edition: ISBN 0-8206-0407-0; Weingart, George W., Pyrotechnics: ISBN 0-8206-0112-8 Visit us at www.chemical-publishing.com

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/5cb9f772775a9169b0725500394b535a47b56e01b97b1d684b02c1498d7889ee.md b/src/content/library/ebooks/5cb9f772775a9169b0725500394b535a47b56e01b97b1d684b02c1498d7889ee.md new file mode 100644 index 0000000..97fd60a --- /dev/null +++ b/src/content/library/ebooks/5cb9f772775a9169b0725500394b535a47b56e01b97b1d684b02c1498d7889ee.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 8 June 2016" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![5cb9f772775a9169b0725500394b535a47b56e01b97b1d684b02c1498d7889ee.jpg](/images/library/5cb9f772775a9169b0725500394b535a47b56e01b97b1d684b02c1498d7889ee.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=1oFuJOy89n64LZyKaVBQ5pkB7095JvT2p) (223.18 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/5ec391de06120ba17073852906f876990573e40b53cefce9e58b11809f1ea2d4.md b/src/content/library/ebooks/5ec391de06120ba17073852906f876990573e40b53cefce9e58b11809f1ea2d4.md new file mode 100644 index 0000000..ae2f022 --- /dev/null +++ b/src/content/library/ebooks/5ec391de06120ba17073852906f876990573e40b53cefce9e58b11809f1ea2d4.md @@ -0,0 +1,17 @@ +--- +title: "Fireworks: The Art, Science, and Technique" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![5ec391de06120ba17073852906f876990573e40b53cefce9e58b11809f1ea2d4.jpg](/images/library/5ec391de06120ba17073852906f876990573e40b53cefce9e58b11809f1ea2d4.jpg) +* Author: Takeo Shimizu +* IDs: + * Amazon: 0929388054 + * ISBN: 9780929388052 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1TVIFknlkzjnHAb6u5Ix4HKfMlp2TVp_l) (5.15 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/6365ba7192c61dfd65a0ce3a10f1dd023d9b2c1e6b8b42535548f23e747d5531.md b/src/content/library/ebooks/6365ba7192c61dfd65a0ce3a10f1dd023d9b2c1e6b8b42535548f23e747d5531.md new file mode 100644 index 0000000..570b59f --- /dev/null +++ b/src/content/library/ebooks/6365ba7192c61dfd65a0ce3a10f1dd023d9b2c1e6b8b42535548f23e747d5531.md @@ -0,0 +1,29 @@ +--- +title: "De la pirotechnia : Libri X. doue ampiamente si tratta non solo di ogni sorte & diuersita di miniere, ma anchora quanto si ricerca intorno à la prattica di quelle cose di quel che si appartiene à l'arte de la fusione ouer gitto de metalli come d'ogni altra cosa simile à questa" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![6365ba7192c61dfd65a0ce3a10f1dd023d9b2c1e6b8b42535548f23e747d5531.jpg](/images/library/6365ba7192c61dfd65a0ce3a10f1dd023d9b2c1e6b8b42535548f23e747d5531.jpg) +* Authors: Biringucci, Vannoccio, 1480-1539?, Ruffinelli, Venturino, d. 1558, printer, Navò, Curzio Troiano de, fl. 1537-1566, publisher, Burndy Library, donor. DSI +* IDs: + * DOI: 10.5962/bhl.title.62542 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1lYVlChGrZFH5-dd1kp3iJHHVLVZyXvxo) (28.73 MB) + +## DescriptionFirst edition +On verso of t.p.: Dedication "al molto magnifico m. Bernardino di Moncelesi da Salo, Curtio Nauo"; followed by publisher's device (rampant lion in center with springing lion on top of shield held by "Scipion" and "Fabio") below which is lettered "per Curtio Nauò et fratelli. Al Segno del lion." +Colophon: Stampata in Venetia per Venturino Roffinello. Ad instantia di Curtio Nauo. & fratelli. Del M. CCCCC. XL +Leaves printed on both sides +Title within ornamental border, with motto: Invidia fortitudine superatur, and place name: Venetia; initials +Signatures: *, A-X(last leaf blank) +Dibner Library. Heralds of science (1980 ed.) +Stillwell, M.B. Science +Exhibit +SCDIRB copy 39088002555118 has dark stains (ink?) on leaf 8 verso, slightly affecting the legibility of the text. A ms. ink autograph of a former owner on t.p. has been erased +SCDIRB copy has bookplate: Burndy Library ... gift of Bern Dibner +SCDIRB copy has an old (contemporary?) full vellum binding over paper boards, with raised bands and title inked on spine + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/668a373bfb6fe525e6755efcc939c3436dd4f1c9331b0b954a3d63700fdfb3c3.md b/src/content/library/ebooks/668a373bfb6fe525e6755efcc939c3436dd4f1c9331b0b954a3d63700fdfb3c3.md new file mode 100644 index 0000000..f86558f --- /dev/null +++ b/src/content/library/ebooks/668a373bfb6fe525e6755efcc939c3436dd4f1c9331b0b954a3d63700fdfb3c3.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 30, 2011" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![668a373bfb6fe525e6755efcc939c3436dd4f1c9331b0b954a3d63700fdfb3c3.jpg](/images/library/668a373bfb6fe525e6755efcc939c3436dd4f1c9331b0b954a3d63700fdfb3c3.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1NDXm6dD729KqKtn8VXN2pG9EvIjFrPPt) (3.7 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/6778a7773b6a82bf6ccb7c5678f7f5f16f31706ad2547a40ebaa35b5981a0a9e.md b/src/content/library/ebooks/6778a7773b6a82bf6ccb7c5678f7f5f16f31706ad2547a40ebaa35b5981a0a9e.md new file mode 100644 index 0000000..7618077 --- /dev/null +++ b/src/content/library/ebooks/6778a7773b6a82bf6ccb7c5678f7f5f16f31706ad2547a40ebaa35b5981a0a9e.md @@ -0,0 +1,14 @@ +--- +title: "Pyrotechnics : from the viewpoint of solid state chemistry" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![6778a7773b6a82bf6ccb7c5678f7f5f16f31706ad2547a40ebaa35b5981a0a9e.jpg](/images/library/6778a7773b6a82bf6ccb7c5678f7f5f16f31706ad2547a40ebaa35b5981a0a9e.jpg) +* Author: McLain, Joseph Howard, 1916- +* View + +* [Download](https://drive.google.com/uc?export=download&id=1K9g35bRw6Ji_qLh0_k7cj5Xok0bFQ6qk) (9.81 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/680e1da71ad48debd454d3efc2aba1ade8b290d29b82228b3353ce4e5c2a7ce0.md b/src/content/library/ebooks/680e1da71ad48debd454d3efc2aba1ade8b290d29b82228b3353ce4e5c2a7ce0.md new file mode 100644 index 0000000..0a50a1d --- /dev/null +++ b/src/content/library/ebooks/680e1da71ad48debd454d3efc2aba1ade8b290d29b82228b3353ce4e5c2a7ce0.md @@ -0,0 +1,14 @@ +--- +title: "fireworks & pyro projects" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![680e1da71ad48debd454d3efc2aba1ade8b290d29b82228b3353ce4e5c2a7ce0.jpg](/images/library/680e1da71ad48debd454d3efc2aba1ade8b290d29b82228b3353ce4e5c2a7ce0.jpg) +* Author: Skylighter.com +* View + +* [Download](https://drive.google.com/uc?export=download&id=1KKISOZRaNwB5OgTYZdCk2ib-zgXJwTPD) (22.45 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/69278e2a6f200cef63b509fcd221f97b77d675a0ce89778cbbc488dcdbf20087.md b/src/content/library/ebooks/69278e2a6f200cef63b509fcd221f97b77d675a0ce89778cbbc488dcdbf20087.md new file mode 100644 index 0000000..9885bd5 --- /dev/null +++ b/src/content/library/ebooks/69278e2a6f200cef63b509fcd221f97b77d675a0ce89778cbbc488dcdbf20087.md @@ -0,0 +1,14 @@ +--- +title: "Pyrotechnics, Second Edition" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![69278e2a6f200cef63b509fcd221f97b77d675a0ce89778cbbc488dcdbf20087.jpg](/images/library/69278e2a6f200cef63b509fcd221f97b77d675a0ce89778cbbc488dcdbf20087.jpg) +* Author: George Washington Weingart +* View + +* [Download](https://drive.google.com/uc?export=download&id=1kIcUj3-L8_l3r7K_Dq_B9aQpP9a9VJi_) (1.08 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/6cbb91718b483b8fc2f20f3984e03a0e9b2455709addba97f4436915608b0bbf.md b/src/content/library/ebooks/6cbb91718b483b8fc2f20f3984e03a0e9b2455709addba97f4436915608b0bbf.md new file mode 100644 index 0000000..a23884d --- /dev/null +++ b/src/content/library/ebooks/6cbb91718b483b8fc2f20f3984e03a0e9b2455709addba97f4436915608b0bbf.md @@ -0,0 +1,14 @@ +--- +title: "Magician's Arsenal - Professional Tricks Of The Trade" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![6cbb91718b483b8fc2f20f3984e03a0e9b2455709addba97f4436915608b0bbf.jpg](/images/library/6cbb91718b483b8fc2f20f3984e03a0e9b2455709addba97f4436915608b0bbf.jpg) +* Author: Lee Scott +* View + +* [Download](https://drive.google.com/uc?export=download&id=1uOZo0G61wm1wQ6Gsr89QpYLuTMYDIzM9) (4.93 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/6d228d0421a8e8026ef0c329bd65d9ee7c85124452dc300c8716e3cacdc30e2e.md b/src/content/library/ebooks/6d228d0421a8e8026ef0c329bd65d9ee7c85124452dc300c8716e3cacdc30e2e.md new file mode 100644 index 0000000..f3b6332 --- /dev/null +++ b/src/content/library/ebooks/6d228d0421a8e8026ef0c329bd65d9ee7c85124452dc300c8716e3cacdc30e2e.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 3" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![6d228d0421a8e8026ef0c329bd65d9ee7c85124452dc300c8716e3cacdc30e2e.jpg](/images/library/6d228d0421a8e8026ef0c329bd65d9ee7c85124452dc300c8716e3cacdc30e2e.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=1BZtoowXs7NIEe9nTqEl1FYs-V2TcO4_S) (230.37 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/6d6cc43ed18aa077a8e03c7808995047d797b27ab8e531dc731b8edc18d07eeb.md b/src/content/library/ebooks/6d6cc43ed18aa077a8e03c7808995047d797b27ab8e531dc731b8edc18d07eeb.md new file mode 100644 index 0000000..83c75ad --- /dev/null +++ b/src/content/library/ebooks/6d6cc43ed18aa077a8e03c7808995047d797b27ab8e531dc731b8edc18d07eeb.md @@ -0,0 +1,14 @@ +--- +title: "PGI Glossary" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![6d6cc43ed18aa077a8e03c7808995047d797b27ab8e531dc731b8edc18d07eeb.jpg](/images/library/6d6cc43ed18aa077a8e03c7808995047d797b27ab8e531dc731b8edc18d07eeb.jpg) +* Author: PGI +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Sp3ErFjtiFe0K4FcaNtuNH2AUePcq2xB) (2.6 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/6fa38c5dd859892e129d4034812ded7c3f1baf629d25abd87c4e2ce2df1efa12.md b/src/content/library/ebooks/6fa38c5dd859892e129d4034812ded7c3f1baf629d25abd87c4e2ce2df1efa12.md new file mode 100644 index 0000000..d963153 --- /dev/null +++ b/src/content/library/ebooks/6fa38c5dd859892e129d4034812ded7c3f1baf629d25abd87c4e2ce2df1efa12.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue Number 1, Summer 1995" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![6fa38c5dd859892e129d4034812ded7c3f1baf629d25abd87c4e2ce2df1efa12.jpg](/images/library/6fa38c5dd859892e129d4034812ded7c3f1baf629d25abd87c4e2ce2df1efa12.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1OxmFurpkQnmNIMnACzOs0gCVcXp2czYR) (1.56 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/70d9e25d95c10e0c00490234aded69397989cbe0de912a017fa03599bec64e2f.md b/src/content/library/ebooks/70d9e25d95c10e0c00490234aded69397989cbe0de912a017fa03599bec64e2f.md new file mode 100644 index 0000000..17ffd58 --- /dev/null +++ b/src/content/library/ebooks/70d9e25d95c10e0c00490234aded69397989cbe0de912a017fa03599bec64e2f.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue Number 6, Winter 1997" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![70d9e25d95c10e0c00490234aded69397989cbe0de912a017fa03599bec64e2f.jpg](/images/library/70d9e25d95c10e0c00490234aded69397989cbe0de912a017fa03599bec64e2f.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1qA7vfrMotdJh5TdUgsWCstbsWtHjM5AG) (3.85 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7305c5a716eb1f8994cf5b0bb5df11e463c174fcac54b2b639dc2e21525013fc.md b/src/content/library/ebooks/7305c5a716eb1f8994cf5b0bb5df11e463c174fcac54b2b639dc2e21525013fc.md new file mode 100644 index 0000000..d8c9f0d --- /dev/null +++ b/src/content/library/ebooks/7305c5a716eb1f8994cf5b0bb5df11e463c174fcac54b2b639dc2e21525013fc.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue Number 4, Winter 1996" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7305c5a716eb1f8994cf5b0bb5df11e463c174fcac54b2b639dc2e21525013fc.jpg](/images/library/7305c5a716eb1f8994cf5b0bb5df11e463c174fcac54b2b639dc2e21525013fc.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1_BD9CEHkstAaGBnjko6WMN3VdOyLBL5Q) (5.18 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/734db357464b78ef87bac9d5252b418323524abe15da1b6e1830cbb7363f37b8.md b/src/content/library/ebooks/734db357464b78ef87bac9d5252b418323524abe15da1b6e1830cbb7363f37b8.md new file mode 100644 index 0000000..459c0ac --- /dev/null +++ b/src/content/library/ebooks/734db357464b78ef87bac9d5252b418323524abe15da1b6e1830cbb7363f37b8.md @@ -0,0 +1,18 @@ +--- +title: "Pyrotechnics: The History and Art of Firework Making" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![734db357464b78ef87bac9d5252b418323524abe15da1b6e1830cbb7363f37b8.jpg](/images/library/734db357464b78ef87bac9d5252b418323524abe15da1b6e1830cbb7363f37b8.jpg) +* Author: Alan St. Hill. Brock +* IDs: + * DOI: 10.5479/sil.117260.39088002567626 + * Google: Pf23PgAACAAJ + * Amazon: B00416B6JS +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Pe0Yu39ajDa_FDMmLyEE2RsdQCFvLSw-) (2.13 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7522469fde03292cbab76cbc5991359151df461c811a3ba242e99fcd9dc0a2f0.md b/src/content/library/ebooks/7522469fde03292cbab76cbc5991359151df461c811a3ba242e99fcd9dc0a2f0.md new file mode 100644 index 0000000..9b3c060 --- /dev/null +++ b/src/content/library/ebooks/7522469fde03292cbab76cbc5991359151df461c811a3ba242e99fcd9dc0a2f0.md @@ -0,0 +1,16 @@ +--- +title: "The Making of Rockets" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7522469fde03292cbab76cbc5991359151df461c811a3ba242e99fcd9dc0a2f0.jpg](/images/library/7522469fde03292cbab76cbc5991359151df461c811a3ba242e99fcd9dc0a2f0.jpg) +* Author: Robert Anderson +* IDs: + * Google: ZYPCzwEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=14jNAx67NFFlCpHsl0i901Osj3_kGr_31) (1.97 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/75afba6de581455e212b5ae2d9b2a444727778479e3a9cf7c72adc97f76e9353.md b/src/content/library/ebooks/75afba6de581455e212b5ae2d9b2a444727778479e3a9cf7c72adc97f76e9353.md new file mode 100644 index 0000000..3023834 --- /dev/null +++ b/src/content/library/ebooks/75afba6de581455e212b5ae2d9b2a444727778479e3a9cf7c72adc97f76e9353.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 26, Winter 2007" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![75afba6de581455e212b5ae2d9b2a444727778479e3a9cf7c72adc97f76e9353.jpg](/images/library/75afba6de581455e212b5ae2d9b2a444727778479e3a9cf7c72adc97f76e9353.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1A-S0mi_xD3Cv3UcYd6hWRb8o_4wgjvx5) (13.89 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/788e337039f59fd8a7b65f78fa569fc04ca45ac61e67542b4783e35f376d9900.md b/src/content/library/ebooks/788e337039f59fd8a7b65f78fa569fc04ca45ac61e67542b4783e35f376d9900.md new file mode 100644 index 0000000..ebe55b3 --- /dev/null +++ b/src/content/library/ebooks/788e337039f59fd8a7b65f78fa569fc04ca45ac61e67542b4783e35f376d9900.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue Number 3, Summer 1996" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![788e337039f59fd8a7b65f78fa569fc04ca45ac61e67542b4783e35f376d9900.jpg](/images/library/788e337039f59fd8a7b65f78fa569fc04ca45ac61e67542b4783e35f376d9900.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1hnW2CwFgseWhbjpeBoYt9v8K1rcjynZ3) (2.6 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/790cb61af4e86c0299090f8c4b1a021a498adaa02925cfa4d4289d65efb72bae.md b/src/content/library/ebooks/790cb61af4e86c0299090f8c4b1a021a498adaa02925cfa4d4289d65efb72bae.md new file mode 100644 index 0000000..4226753 --- /dev/null +++ b/src/content/library/ebooks/790cb61af4e86c0299090f8c4b1a021a498adaa02925cfa4d4289d65efb72bae.md @@ -0,0 +1,18 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 4 (1995 and 1997)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![790cb61af4e86c0299090f8c4b1a021a498adaa02925cfa4d4289d65efb72bae.jpg](/images/library/790cb61af4e86c0299090f8c4b1a021a498adaa02925cfa4d4289d65efb72bae.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1zj5LVMf7hBYF1vsoz_wquhNGU3snTKKt) (8.87 MB) + +## Description
+

Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 4 (1995 and 1997)

+

Pyrotechnic Literature Series No. 7

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7b41fa501adc3bd492062003040dbaafef6b5b112228479051b906e7339ad662.md b/src/content/library/ebooks/7b41fa501adc3bd492062003040dbaafef6b5b112228479051b906e7339ad662.md new file mode 100644 index 0000000..1b9bfd7 --- /dev/null +++ b/src/content/library/ebooks/7b41fa501adc3bd492062003040dbaafef6b5b112228479051b906e7339ad662.md @@ -0,0 +1,14 @@ +--- +title: "CannonFuse Collection of Pyrotechnic Compositions" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7b41fa501adc3bd492062003040dbaafef6b5b112228479051b906e7339ad662.jpg](/images/library/7b41fa501adc3bd492062003040dbaafef6b5b112228479051b906e7339ad662.jpg) +* Author: CannonFuse.com +* View + +* [Download](https://drive.google.com/uc?export=download&id=1g7oXp-9aJyQNuVGGAVNVYQ6dBl8p1ZoV) (935.06 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7bff106227aed56e8651ae92b899c0ee07209444ef6c0e495d293b8ed95aa938.md b/src/content/library/ebooks/7bff106227aed56e8651ae92b899c0ee07209444ef6c0e495d293b8ed95aa938.md new file mode 100644 index 0000000..ebd2eea --- /dev/null +++ b/src/content/library/ebooks/7bff106227aed56e8651ae92b899c0ee07209444ef6c0e495d293b8ed95aa938.md @@ -0,0 +1,14 @@ +--- +title: "The Pyro Cookbook" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7bff106227aed56e8651ae92b899c0ee07209444ef6c0e495d293b8ed95aa938.jpg](/images/library/7bff106227aed56e8651ae92b899c0ee07209444ef6c0e495d293b8ed95aa938.jpg) +* Author: AMATO/VitaminC +* View + +* [Download](https://drive.google.com/uc?export=download&id=1kUhKppMfeze9m3rnBcAhh7IwpvSloXqL) (3.31 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7c3a8eef1afd8c8499fbc34b2a5e42fdba61047d169043f6147ee42ef40371d4.md b/src/content/library/ebooks/7c3a8eef1afd8c8499fbc34b2a5e42fdba61047d169043f6147ee42ef40371d4.md new file mode 100644 index 0000000..f1e9bd6 --- /dev/null +++ b/src/content/library/ebooks/7c3a8eef1afd8c8499fbc34b2a5e42fdba61047d169043f6147ee42ef40371d4.md @@ -0,0 +1,21 @@ +--- +title: "Military Pyrotechnics: The History of Development of Military Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7c3a8eef1afd8c8499fbc34b2a5e42fdba61047d169043f6147ee42ef40371d4.jpg](/images/library/7c3a8eef1afd8c8499fbc34b2a5e42fdba61047d169043f6147ee42ef40371d4.jpg) +* Author: Henry Burnell Faber +* IDs: + * ISBN: 9780554592961 + * Amazon: 0554592967 + * Google: ILx8wwEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1uzc7j-YcTTLOJCspHydynA2fev6ajlMO) (8.6 MB) + +## Description
+

This work has been selected by scholars as being culturally important, and is part of the knowledge base of civilization as we know it. This work was reproduced from the original artifact, and remains as true to the original work as possible. Therefore, you will see the original copyright references, library stamps (as most of these works have been housed in our most important libraries around the world), and other notations in the work. This work is in the public domain in the United States of America, and possibly other nations. Within the United States, you may freely copy and distribute this work, as no entity (individual or corporate) has a copyright on the body of the work. As a reproduction of a historical artifact, this work may contain missing or blurred pages, poor pictures, errant marks, etc. Scholars believe, and we concur, that this work is important enough to be preserved, reproduced, and made generally available to the public. We appreciate your support of the preservation process, and thank you for being an important part of keeping this knowledge alive and relevant.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7d368dd99842b5b013b833df37bea34278ac7f987fc9bca8099c8657586225e1.md b/src/content/library/ebooks/7d368dd99842b5b013b833df37bea34278ac7f987fc9bca8099c8657586225e1.md new file mode 100644 index 0000000..a859931 --- /dev/null +++ b/src/content/library/ebooks/7d368dd99842b5b013b833df37bea34278ac7f987fc9bca8099c8657586225e1.md @@ -0,0 +1,16 @@ +--- +title: "Encyclopedic Dictonary of Pyrotechnics (and Related Subjects) - Internet Edition" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7d368dd99842b5b013b833df37bea34278ac7f987fc9bca8099c8657586225e1.jpg](/images/library/7d368dd99842b5b013b833df37bea34278ac7f987fc9bca8099c8657586225e1.jpg) +* Author: Bonnie +* IDs: + * ISBN: 9782889526317 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1nqStEbKjCemArVxN8WBpeH_XDGt4wxfx) (374.63 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7e0c0bad3259ace8cc1fafa8d1870733f50e25921818d8e78dfef0c652ce479b.md b/src/content/library/ebooks/7e0c0bad3259ace8cc1fafa8d1870733f50e25921818d8e78dfef0c652ce479b.md new file mode 100644 index 0000000..0513228 --- /dev/null +++ b/src/content/library/ebooks/7e0c0bad3259ace8cc1fafa8d1870733f50e25921818d8e78dfef0c652ce479b.md @@ -0,0 +1,16 @@ +--- +title: "The Chemistry of Fireworks" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7e0c0bad3259ace8cc1fafa8d1870733f50e25921818d8e78dfef0c652ce479b.jpg](/images/library/7e0c0bad3259ace8cc1fafa8d1870733f50e25921818d8e78dfef0c652ce479b.jpg) +* Author: Michael S. Russel +* IDs: + * ISBN: 0854045988 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1alhHetY1fi1HDOipMqTTVGDMoUaVcr8V) (7.88 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/7f0c80a3422220f39e4d7a842a45b10cf208fc1bc7bc1c11bdd27e9a3d73f04b.md b/src/content/library/ebooks/7f0c80a3422220f39e4d7a842a45b10cf208fc1bc7bc1c11bdd27e9a3d73f04b.md new file mode 100644 index 0000000..f2031ba --- /dev/null +++ b/src/content/library/ebooks/7f0c80a3422220f39e4d7a842a45b10cf208fc1bc7bc1c11bdd27e9a3d73f04b.md @@ -0,0 +1,18 @@ +--- +title: "Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![7f0c80a3422220f39e4d7a842a45b10cf208fc1bc7bc1c11bdd27e9a3d73f04b.jpg](/images/library/7f0c80a3422220f39e4d7a842a45b10cf208fc1bc7bc1c11bdd27e9a3d73f04b.jpg) +* Author: Alexander P. Hardt +* IDs: + * ISBN: 9780929388069 + * Amazon: 0929388062 + * Google: lM9TAAAAMAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1iDMV3ZLQFkIJfVQPHZPien9TVGVym6P4) (47.57 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/805f06314a47a90366297285f72bd1cc43c77dda8a77bd86724b095e7011c79c.md b/src/content/library/ebooks/805f06314a47a90366297285f72bd1cc43c77dda8a77bd86724b095e7011c79c.md new file mode 100644 index 0000000..7b9de1d --- /dev/null +++ b/src/content/library/ebooks/805f06314a47a90366297285f72bd1cc43c77dda8a77bd86724b095e7011c79c.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 17, Summer 2003" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![805f06314a47a90366297285f72bd1cc43c77dda8a77bd86724b095e7011c79c.jpg](/images/library/805f06314a47a90366297285f72bd1cc43c77dda8a77bd86724b095e7011c79c.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1-_jmCErnSsqe_TpHzQbbcZ51CDUYEVN-) (7.31 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/81d45b7b0557f9eb0d8bccfe269b0b6d2e5b590369b3ce14a0e80dbc1891130a.md b/src/content/library/ebooks/81d45b7b0557f9eb0d8bccfe269b0b6d2e5b590369b3ce14a0e80dbc1891130a.md new file mode 100644 index 0000000..8305a8b --- /dev/null +++ b/src/content/library/ebooks/81d45b7b0557f9eb0d8bccfe269b0b6d2e5b590369b3ce14a0e80dbc1891130a.md @@ -0,0 +1,21 @@ +--- +title: "Fundamentals and Technology of Combustion" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![81d45b7b0557f9eb0d8bccfe269b0b6d2e5b590369b3ce14a0e80dbc1891130a.jpg](/images/library/81d45b7b0557f9eb0d8bccfe269b0b6d2e5b590369b3ce14a0e80dbc1891130a.jpg) +* Authors: F El-Mahallawy, S. E-Din Habik +* IDs: + * ISBN: 9780080532189 + * Google: d-4GZ6frBEUC + * Amazon: 0080441068 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1NXOhqgTDaHqXfdfPxFzaVXNEadSUNWxR) (22.09 MB) + +## Description
+

Fundamentals and Technology of Combustion contains brief descriptions of combustion fundamental processes, followed by an extensive survey of the combustion research technology. It also includes mathematical combustion modeling of the processes covering mainly premixed and diffusion flames, where many chemical and physical processes compete in complex ways, for both laminar and turbulent flows. The combustion chemistry models that validate experimental data for different fuels are sufficiently accurate to allow confident predictions of the flame characteristics. This illustrates a unique bridge between combustion fundamentals and combustion technology, which provides a valuable technical reference for many engineers and scientists. Moreover, the book gives the reader sufficient background of basic engineering sciences such as chemistry, thermodynamics, heat transfer and fluid mechanics. The combustion research and mathematical models fit between small-scale laboratory burner flames, and large-scale industrial boilers, furnaces and combustion chambers. The materials have been collected from previous relevant research and some selected papers of the authors and co-workers, which have been presented mainly in different refereed journals, international conferences and symposia, thus providing a comprehensive collection. Furthermore, the book includes some of the many recent general correlations for the characteristics of laminar, turbulent, premixed and diffusion flames in an easily usable form. The authors believe that further progress in optimizing combustion performance and reducing polluting emissions can only be treated through understanding of combustion chemistry.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/841fe68ad5f7c20ec7786c49f2c9e295f5a51d5c97e3d353d18586fd2472aac8.md b/src/content/library/ebooks/841fe68ad5f7c20ec7786c49f2c9e295f5a51d5c97e3d353d18586fd2472aac8.md new file mode 100644 index 0000000..e437f44 --- /dev/null +++ b/src/content/library/ebooks/841fe68ad5f7c20ec7786c49f2c9e295f5a51d5c97e3d353d18586fd2472aac8.md @@ -0,0 +1,13 @@ +--- +title: "Pyrotechnics Education - Campaign Toolkit v1.0" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![841fe68ad5f7c20ec7786c49f2c9e295f5a51d5c97e3d353d18586fd2472aac8.jpg](/images/library/841fe68ad5f7c20ec7786c49f2c9e295f5a51d5c97e3d353d18586fd2472aac8.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1LU-GZuQsC22mAvKnJaXqIjof3L-Xv6_q) (2.45 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/8703e09e9eb55bfaa4b9f5e9fd404c684e308718df72752c427fc947e1a159fd.md b/src/content/library/ebooks/8703e09e9eb55bfaa4b9f5e9fd404c684e308718df72752c427fc947e1a159fd.md new file mode 100644 index 0000000..4e2df25 --- /dev/null +++ b/src/content/library/ebooks/8703e09e9eb55bfaa4b9f5e9fd404c684e308718df72752c427fc947e1a159fd.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 32, 2013" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![8703e09e9eb55bfaa4b9f5e9fd404c684e308718df72752c427fc947e1a159fd.jpg](/images/library/8703e09e9eb55bfaa4b9f5e9fd404c684e308718df72752c427fc947e1a159fd.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1vN0fzL9WKdVfgwA4KoxwKOEU5ApfwNQg) (4.7 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/879d5063719168ab5732130f6ea4a96cfbeae5f2892c733a91949df78bce20f2.md b/src/content/library/ebooks/879d5063719168ab5732130f6ea4a96cfbeae5f2892c733a91949df78bce20f2.md new file mode 100644 index 0000000..99dac31 --- /dev/null +++ b/src/content/library/ebooks/879d5063719168ab5732130f6ea4a96cfbeae5f2892c733a91949df78bce20f2.md @@ -0,0 +1,16 @@ +--- +title: "The Best of AFN IV" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![879d5063719168ab5732130f6ea4a96cfbeae5f2892c733a91949df78bce20f2.jpg](/images/library/879d5063719168ab5732130f6ea4a96cfbeae5f2892c733a91949df78bce20f2.jpg) +* Author: American Fireworks News +* IDs: + * ISBN: 0929931157 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1XE62EWkZHLe4GtWb8MWWBYemlvx-52QF) (3.56 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/883e582f09f35476eb3f8e930930a1f173c80b8cf922e539054322ffbb4d086b.md b/src/content/library/ebooks/883e582f09f35476eb3f8e930930a1f173c80b8cf922e539054322ffbb4d086b.md new file mode 100644 index 0000000..319992d --- /dev/null +++ b/src/content/library/ebooks/883e582f09f35476eb3f8e930930a1f173c80b8cf922e539054322ffbb4d086b.md @@ -0,0 +1,16 @@ +--- +title: "Round Stars & Shells" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![883e582f09f35476eb3f8e930930a1f173c80b8cf922e539054322ffbb4d086b.jpg](/images/library/883e582f09f35476eb3f8e930930a1f173c80b8cf922e539054322ffbb4d086b.jpg) +* Author: David Bleser +* IDs: + * Amazon: B001JZB8V0 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1eVIZsTbbFCSYNJVqz28uxrXh_BzCYnZt) (940.64 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/8a717661d20c70e2cdb1fe801be5ad22eef270fd643dc663f902af1ec2bf8138.md b/src/content/library/ebooks/8a717661d20c70e2cdb1fe801be5ad22eef270fd643dc663f902af1ec2bf8138.md new file mode 100644 index 0000000..ea9ac39 --- /dev/null +++ b/src/content/library/ebooks/8a717661d20c70e2cdb1fe801be5ad22eef270fd643dc663f902af1ec2bf8138.md @@ -0,0 +1,20 @@ +--- +title: "The Preparatory Manual of Black Powder and Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![8a717661d20c70e2cdb1fe801be5ad22eef270fd643dc663f902af1ec2bf8138.jpg](/images/library/8a717661d20c70e2cdb1fe801be5ad22eef270fd643dc663f902af1ec2bf8138.jpg) +* Author: Jared Ledgard +* IDs: + * ISBN: 9781411685741 + * Google: 7HzzwAEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1JZYfMgn1BiS7LLJEfHXCceWJB9t32IfY) (94.71 MB) + +## Description
+

The Preparatory Manual of Black Powder and Pyrotechnics is a new Handbook discussing the world's most commonly used pyrotechnic compositions. The book contains multiple sections dividing the area of pyrotechnics into various levels. Black Powder is the first level, followed by High Performance rocket propellants and gun propellants, then followed by General pyrotechnic compositions. Specialty and Experimental compositions take up the rear, followed by Fireworks. All compositions are discussed in great detail with complete processes for manufacture. The book discusses a total of 1187 pyrotechnic compositions ranging from black powder compositions, to fireworks, to high performance gun propellants, rocket propellants, incendiary agents, smoke producing mixtures, to specialty compositions including cloud seeding compositions, welding compositions, matches, priming compositions, and experimental compositions, all with a variety of uses, and methods of production

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/8d162a6ac3f60f4477f21ae1753416e224a1e1cfda3b6ba877b1dc78f8ddd890.md b/src/content/library/ebooks/8d162a6ac3f60f4477f21ae1753416e224a1e1cfda3b6ba877b1dc78f8ddd890.md new file mode 100644 index 0000000..b11aef6 --- /dev/null +++ b/src/content/library/ebooks/8d162a6ac3f60f4477f21ae1753416e224a1e1cfda3b6ba877b1dc78f8ddd890.md @@ -0,0 +1,16 @@ +--- +title: "The Best of AFN V" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![8d162a6ac3f60f4477f21ae1753416e224a1e1cfda3b6ba877b1dc78f8ddd890.jpg](/images/library/8d162a6ac3f60f4477f21ae1753416e224a1e1cfda3b6ba877b1dc78f8ddd890.jpg) +* Author: American Fireworks News +* IDs: + * ISBN: 092993122X +* View + +* [Download](https://drive.google.com/uc?export=download&id=1s_SSdGgilnoWLz7r_LJZXJO8S-hL5b9t) (3.98 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/8e75f91fa1712c7b44b5ca7493f5382eaa8156b67a2c72542e36f5aa0a93b22d.md b/src/content/library/ebooks/8e75f91fa1712c7b44b5ca7493f5382eaa8156b67a2c72542e36f5aa0a93b22d.md new file mode 100644 index 0000000..d29129f --- /dev/null +++ b/src/content/library/ebooks/8e75f91fa1712c7b44b5ca7493f5382eaa8156b67a2c72542e36f5aa0a93b22d.md @@ -0,0 +1,20 @@ +--- +title: "Chymical, Natural, and Physical Magic: Intended for the Instruction and Entertainment of Juveniles During the Holiday Vacation" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![8e75f91fa1712c7b44b5ca7493f5382eaa8156b67a2c72542e36f5aa0a93b22d.jpg](/images/library/8e75f91fa1712c7b44b5ca7493f5382eaa8156b67a2c72542e36f5aa0a93b22d.jpg) +* Author: G. W. Septimus Piesse +* IDs: + * Amazon: 1110227523 + * ISBN: 9781110227525 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1brpSr9wSrQuR6gSVJTpuDrO_Ua7zqWsr) (6.96 MB) + +## Description
+

This is a pre-1923 historical reproduction that was curated for quality. Quality assurance was conducted on each of these books in an attempt to remove books with imperfections introduced by the digitization process. Though we have made best efforts - the books may have occasional errors that do not impede the reading experience. We believe this work is culturally important and have elected to bring the book back into print as part of our continuing commitment to the preservation of printed works worldwide.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/8f235e4ad13f2c6dd20afcd780a57664c0927882bbb262fa9d497ef2b7f20256.md b/src/content/library/ebooks/8f235e4ad13f2c6dd20afcd780a57664c0927882bbb262fa9d497ef2b7f20256.md new file mode 100644 index 0000000..c68e323 --- /dev/null +++ b/src/content/library/ebooks/8f235e4ad13f2c6dd20afcd780a57664c0927882bbb262fa9d497ef2b7f20256.md @@ -0,0 +1,20 @@ +--- +title: "Explosives, Propellants, and Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![8f235e4ad13f2c6dd20afcd780a57664c0927882bbb262fa9d497ef2b7f20256.jpg](/images/library/8f235e4ad13f2c6dd20afcd780a57664c0927882bbb262fa9d497ef2b7f20256.jpg) +* Author: A. Bailey +* IDs: + * ISBN: 9780080362502 + * Amazon: 0080362508 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1JoBB6VwBdrYi2VNzJVtK7vbpBcnEYVYz) (46.08 MB) + +## Description
+

Militaria

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9139bee4c801df950a1fe544558055a2f33dee9a31e7214e9ead2b02846475e4.md b/src/content/library/ebooks/9139bee4c801df950a1fe544558055a2f33dee9a31e7214e9ead2b02846475e4.md new file mode 100644 index 0000000..b2f95c9 --- /dev/null +++ b/src/content/library/ebooks/9139bee4c801df950a1fe544558055a2f33dee9a31e7214e9ead2b02846475e4.md @@ -0,0 +1,23 @@ +--- +title: "A Treatise on Gun-Powder: A Treatise on Fire-Arms; And a Treatise on the Service of Artillery in Time of War" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9139bee4c801df950a1fe544558055a2f33dee9a31e7214e9ead2b02846475e4.jpg](/images/library/9139bee4c801df950a1fe544558055a2f33dee9a31e7214e9ead2b02846475e4.jpg) +* Author: Alessandro Vittorio Papacino D'Antoni +* IDs: + * Google: 9Z5_swEACAAJ + * ISBN: 9781296585679 + * Amazon: 1296585670 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1C0e0WfNVkD5caY7sLnexv1KfyVe1bMI0) (28.42 MB) + +## Description
+

This work has been selected by scholars as being culturally important, and is part of the knowledge base of civilization as we know it. This work was reproduced from the original artifact, and remains as true to the original work as possible. Therefore, you will see the original copyright references, library stamps (as most of these works have been housed in our most important libraries around the world), and other notations in the work.

+

This work is in the public domain in the United States of America, and possibly other nations. Within the United States, you may freely copy and distribute this work, as no entity (individual or corporate) has a copyright on the body of the work.

+

As a reproduction of a historical artifact, this work may contain missing or blurred pages, poor pictures, errant marks, etc. Scholars believe, and we concur, that this work is important enough to be preserved, reproduced, and made generally available to the public. We appreciate your support of the preservation process, and thank you for being an important part of keeping this knowledge alive and relevant.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/925d746b33391e5d0005675857c5dac2bc2a41125056bc1b949b6423e2e1b3c4.md b/src/content/library/ebooks/925d746b33391e5d0005675857c5dac2bc2a41125056bc1b949b6423e2e1b3c4.md new file mode 100644 index 0000000..0ab2ec3 --- /dev/null +++ b/src/content/library/ebooks/925d746b33391e5d0005675857c5dac2bc2a41125056bc1b949b6423e2e1b3c4.md @@ -0,0 +1,14 @@ +--- +title: "Journal of Pyrotechnics Issue 34, 2015" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![925d746b33391e5d0005675857c5dac2bc2a41125056bc1b949b6423e2e1b3c4.jpg](/images/library/925d746b33391e5d0005675857c5dac2bc2a41125056bc1b949b6423e2e1b3c4.jpg) +* Author: Tom Smith +* View + +* [Download](https://drive.google.com/uc?export=download&id=1NbWKlmvN7B9m6nle7kMiKUMdD3ISWX_6) (5.51 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9314a6c933545f90a1cbacaf330b775ade9870db53c73aa0197c76d6ca506155.md b/src/content/library/ebooks/9314a6c933545f90a1cbacaf330b775ade9870db53c73aa0197c76d6ca506155.md new file mode 100644 index 0000000..4e01f1c --- /dev/null +++ b/src/content/library/ebooks/9314a6c933545f90a1cbacaf330b775ade9870db53c73aa0197c76d6ca506155.md @@ -0,0 +1,14 @@ +--- +title: "Manual of explosives, military pyrotechnics and chemical warfare agents" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9314a6c933545f90a1cbacaf330b775ade9870db53c73aa0197c76d6ca506155.jpg](/images/library/9314a6c933545f90a1cbacaf330b775ade9870db53c73aa0197c76d6ca506155.jpg) +* Author: Jules Bebie +* View + +* [Download](https://drive.google.com/uc?export=download&id=16r7ddaXKp7SP1S1Vw4W9r6V0KrrsDrWN) (1.39 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/94384c27906a72f5a58faad48cdb740902be3d96d29ac4f522d7ff1908aaf52d.md b/src/content/library/ebooks/94384c27906a72f5a58faad48cdb740902be3d96d29ac4f522d7ff1908aaf52d.md new file mode 100644 index 0000000..81c06f7 --- /dev/null +++ b/src/content/library/ebooks/94384c27906a72f5a58faad48cdb740902be3d96d29ac4f522d7ff1908aaf52d.md @@ -0,0 +1,14 @@ +--- +title: "The influence of physical properties on Black Powder combustion" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![94384c27906a72f5a58faad48cdb740902be3d96d29ac4f522d7ff1908aaf52d.jpg](/images/library/94384c27906a72f5a58faad48cdb740902be3d96d29ac4f522d7ff1908aaf52d.jpg) +* Author: Ronald A. Sasse +* View + +* [Download]() (2.82 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9550a5c7371d45876f6d932068dad57ecb55679c7c9b046508c8c2a012a3164c.md b/src/content/library/ebooks/9550a5c7371d45876f6d932068dad57ecb55679c7c9b046508c8c2a012a3164c.md new file mode 100644 index 0000000..8c08fa0 --- /dev/null +++ b/src/content/library/ebooks/9550a5c7371d45876f6d932068dad57ecb55679c7c9b046508c8c2a012a3164c.md @@ -0,0 +1,14 @@ +--- +title: "A manual for pyrotechnic design, development and qualification" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9550a5c7371d45876f6d932068dad57ecb55679c7c9b046508c8c2a012a3164c.jpg](/images/library/9550a5c7371d45876f6d932068dad57ecb55679c7c9b046508c8c2a012a3164c.jpg) +* Authors: Laurence J. Bement, Morry L. Schimmel +* View + +* [Download](https://drive.google.com/uc?export=download&id=1vmyghJ9lhJ9qQaEiS_mmN5-sAtoMF0Jo) (1.13 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/96b6971663f55cc3e079e6537de71e0e2d2358e9cd83f242667fc23d21d1d11f.md b/src/content/library/ebooks/96b6971663f55cc3e079e6537de71e0e2d2358e9cd83f242667fc23d21d1d11f.md new file mode 100644 index 0000000..5595adf --- /dev/null +++ b/src/content/library/ebooks/96b6971663f55cc3e079e6537de71e0e2d2358e9cd83f242667fc23d21d1d11f.md @@ -0,0 +1,14 @@ +--- +title: "Fuochi Artificiali" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![96b6971663f55cc3e079e6537de71e0e2d2358e9cd83f242667fc23d21d1d11f.jpg](/images/library/96b6971663f55cc3e079e6537de71e0e2d2358e9cd83f242667fc23d21d1d11f.jpg) +* Author: T. De Francesco +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Y-paVFLPlqgvCC1lgE64QU_u2IM0bbTD) (1.12 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/96ed2dc949ea2a71cf8255870d823e4ad7fdebd2aac0f0c7b01915ae51aa42bb.md b/src/content/library/ebooks/96ed2dc949ea2a71cf8255870d823e4ad7fdebd2aac0f0c7b01915ae51aa42bb.md new file mode 100644 index 0000000..c9cd444 --- /dev/null +++ b/src/content/library/ebooks/96ed2dc949ea2a71cf8255870d823e4ad7fdebd2aac0f0c7b01915ae51aa42bb.md @@ -0,0 +1,22 @@ +--- +title: "Gunpowder: Alchemy, Bombards, and Pyrotechnics: The History of the Explosive That Changed the World" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![96ed2dc949ea2a71cf8255870d823e4ad7fdebd2aac0f0c7b01915ae51aa42bb.jpg](/images/library/96ed2dc949ea2a71cf8255870d823e4ad7fdebd2aac0f0c7b01915ae51aa42bb.jpg) +* Author: Jack Kelly +* IDs: + * Amazon: 0465037224 + * Google: G6sstAEACAAJ + * ISBN: 9780465037223 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1jY7bQ5FqQQ-3oh9jXwVxkhEBFA2QXyfE) (2.2 MB) + +## Description
+

When Chinese alchemists fashioned the first manmade explosion sometime during the tenth century, no one could have foreseen its full revolutionary potential. Invented to frighten evil spirits rather than fuel guns or bombs—neither of which had been thought of yet—their simple mixture of saltpeter, sulfur, and charcoal went on to make the modern world possible. As word of its explosive properties spread from Asia to Europe, from pyrotechnics to battleships, it paved the way for Western exploration, hastened the end of feudalism and the rise of the nation state, and greased the wheels of the Industrial Revolution.

+

With dramatic immediacy, novelist and journalist Jack Kelly conveys both the distant time in which the “devil's distillate” rose to conquer the world, and brings to rousing life the eclectic cast of characters who played a role in its epic story, including Michelangelo, Edward III, Vasco da Gama, Cortés, Guy Fawkes, Alfred Nobel, and E. I. DuPont. A must-read for history fans and military buffs alike, Gunpowder brings together a rich terrain of cultures and technological innovations with authoritative research and swashbuckling style.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9a70b2e6c6eef2c1d35c455df61c66b260e2479597e08ae677c766c96faccf4d.md b/src/content/library/ebooks/9a70b2e6c6eef2c1d35c455df61c66b260e2479597e08ae677c766c96faccf4d.md new file mode 100644 index 0000000..00c47b4 --- /dev/null +++ b/src/content/library/ebooks/9a70b2e6c6eef2c1d35c455df61c66b260e2479597e08ae677c766c96faccf4d.md @@ -0,0 +1,19 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 5 (1998 through 2000)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9a70b2e6c6eef2c1d35c455df61c66b260e2479597e08ae677c766c96faccf4d.jpg](/images/library/9a70b2e6c6eef2c1d35c455df61c66b260e2479597e08ae677c766c96faccf4d.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=1syaNvjMy01sVNVWnaHlUYRzjOI5pC4dp) (18.98 MB) + +## Description
+

Pyrotechnic Literature Series No. 8

+

Selected Pyrotechnic Publications of K.L. and B.J. Kosanke,

+

Part 5 (1998 through 2000)

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9b02c465b1e7e9ddf363ec2e0581c22b1dd0d5ee3c85c862940ea07cd2574eb1.md b/src/content/library/ebooks/9b02c465b1e7e9ddf363ec2e0581c22b1dd0d5ee3c85c862940ea07cd2574eb1.md new file mode 100644 index 0000000..9f92d5b --- /dev/null +++ b/src/content/library/ebooks/9b02c465b1e7e9ddf363ec2e0581c22b1dd0d5ee3c85c862940ea07cd2574eb1.md @@ -0,0 +1,14 @@ +--- +title: "Spelen met vuur (interactive website)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9b02c465b1e7e9ddf363ec2e0581c22b1dd0d5ee3c85c862940ea07cd2574eb1.jpg](/images/library/9b02c465b1e7e9ddf363ec2e0581c22b1dd0d5ee3c85c862940ea07cd2574eb1.jpg) +* Author: David Douwes +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Dx4t0rYeNR79mFAPAIcM1ChtehuxXMSR) (6.42 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9c15fa207d166ddbb8e8561928a4d1c44251b9ab71572933486fa02369c6a05d.md b/src/content/library/ebooks/9c15fa207d166ddbb8e8561928a4d1c44251b9ab71572933486fa02369c6a05d.md new file mode 100644 index 0000000..ed962fb --- /dev/null +++ b/src/content/library/ebooks/9c15fa207d166ddbb8e8561928a4d1c44251b9ab71572933486fa02369c6a05d.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 10, Winter 1999" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9c15fa207d166ddbb8e8561928a4d1c44251b9ab71572933486fa02369c6a05d.jpg](/images/library/9c15fa207d166ddbb8e8561928a4d1c44251b9ab71572933486fa02369c6a05d.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1WKZAPsdarobGsOoBP6_G8HiyWlph1HLx) (2.7 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9c4b22ef66ea51b0ce5871d0fa52db9a07ccdadceec8f3764eb6ae77f1c60f7f.md b/src/content/library/ebooks/9c4b22ef66ea51b0ce5871d0fa52db9a07ccdadceec8f3764eb6ae77f1c60f7f.md new file mode 100644 index 0000000..9f38f2f --- /dev/null +++ b/src/content/library/ebooks/9c4b22ef66ea51b0ce5871d0fa52db9a07ccdadceec8f3764eb6ae77f1c60f7f.md @@ -0,0 +1,14 @@ +--- +title: "Pyrotechnics, Scientific America July 1990" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9c4b22ef66ea51b0ce5871d0fa52db9a07ccdadceec8f3764eb6ae77f1c60f7f.jpg](/images/library/9c4b22ef66ea51b0ce5871d0fa52db9a07ccdadceec8f3764eb6ae77f1c60f7f.jpg) +* Author: John A. Conkling +* View + +* [Download](https://drive.google.com/uc?export=download&id=1cMhLSwHoUOT_tDThGESNiArY9IO8FNyL) (1.22 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9d714b2c077831acb796e0a79307e187f72a4ceb30f78f8ec5b495fdbef8ebcf.md b/src/content/library/ebooks/9d714b2c077831acb796e0a79307e187f72a4ceb30f78f8ec5b495fdbef8ebcf.md new file mode 100644 index 0000000..2f639a3 --- /dev/null +++ b/src/content/library/ebooks/9d714b2c077831acb796e0a79307e187f72a4ceb30f78f8ec5b495fdbef8ebcf.md @@ -0,0 +1,14 @@ +--- +title: "The Complete Book of Flash Powder" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9d714b2c077831acb796e0a79307e187f72a4ceb30f78f8ec5b495fdbef8ebcf.jpg](/images/library/9d714b2c077831acb796e0a79307e187f72a4ceb30f78f8ec5b495fdbef8ebcf.jpg) +* Author: Paul Moran +* View + +* [Download](https://drive.google.com/uc?export=download&id=1pFAwYy0TR4aW-cbfAWVCCmjGpVc1sra3) (1.0 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9d995464eb84a447059111ba2fdb3503b649b84e77bd253793b4cee219b7daca.md b/src/content/library/ebooks/9d995464eb84a447059111ba2fdb3503b649b84e77bd253793b4cee219b7daca.md new file mode 100644 index 0000000..678c8c4 --- /dev/null +++ b/src/content/library/ebooks/9d995464eb84a447059111ba2fdb3503b649b84e77bd253793b4cee219b7daca.md @@ -0,0 +1,20 @@ +--- +title: "Easy PVC Rockets" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9d995464eb84a447059111ba2fdb3503b649b84e77bd253793b4cee219b7daca.jpg](/images/library/9d995464eb84a447059111ba2fdb3503b649b84e77bd253793b4cee219b7daca.jpg) +* Author: Jason Smiley +* IDs: + * ISBN: 9781492842873 + * Google: b7X2ngEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1uvnqmi8yJ4bS5Q4nZZbLTLgrDY62GxBI) (3.88 MB) + +## Description
+

Easy PVC Rockets is a book on how to make your own model rocket engines at home with easy techniques and readily available materials. Using only stump remover, powdered sugar, kitty litter, and some PVC pipe you can create a whole array of rocket engine designs ranging from small bottle rockets to large F class engines. Also in the book are homemade methods to creating your own model rockets, launch stands, and electrical ignition systems also from readily available materials.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9dcef699ef190a77e2b8ed0754d2de26e4f922daa962fa9e34be50ec7f603537.md b/src/content/library/ebooks/9dcef699ef190a77e2b8ed0754d2de26e4f922daa962fa9e34be50ec7f603537.md new file mode 100644 index 0000000..3086c72 --- /dev/null +++ b/src/content/library/ebooks/9dcef699ef190a77e2b8ed0754d2de26e4f922daa962fa9e34be50ec7f603537.md @@ -0,0 +1,20 @@ +--- +title: "Health Implications of Perchlorate Ingestion" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9dcef699ef190a77e2b8ed0754d2de26e4f922daa962fa9e34be50ec7f603537.jpg](/images/library/9dcef699ef190a77e2b8ed0754d2de26e4f922daa962fa9e34be50ec7f603537.jpg) +* Authors: National Research Council, Division On Earth, Life Studies, Board On Environmental Studies, Toxicology, Committee To Assess The Health Implications Of Perchlorate Ingestion +* IDs: + * ISBN: 9780309181358 + * Google: 05F0iOqvwgAC +* View + +* [Download](https://drive.google.com/uc?export=download&id=1CJOJCTwe0cqAWKP79S8szS8tfrrb0-29) (2.6 MB) + +## Description
+

Perchlorateâ€"a powerful oxidant used in solid rocket fuels by the military and aerospace industryâ€"has been detected in public drinking water supplies of over 11 million people at concentrations of at least 4 parts per billion (ppb). High doses of perchlorate can decrease thyroid hormone production by inhibiting the uptake of iodide by the thyroid. Thyroid hormones are critical for normal growth and development of the central nervous system of fetuses and infants. This report evaluates the potential health effects of perchlorate and the scientific underpinnings of the 2002 draft risk assessment issued by the U.S. Environmental Protection Agency (EPA). The report finds that the body can compensate for iodide deficiency, and that iodide uptake would likely have to be reduced by at least 75% for months or longer for adverse health effects, such as hypothryroidism, to occur. The report recommends using clinical studies of iodide uptake in humans as the basis for determining a reference dose rather than using studies of adverse health effects in rats that serve as EPA's basis. The report suggests that daily ingestion of 0.0007 milligrams of perchlorate per kilograms of body weightâ€"an amount more than 20 times the reference dose proposed by EPAâ€"should not threaten the health of even the most sensitive populations.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9ec3a7a87d9256888e48604558394b42842ff084b8145b57f5e410ccbfc5ff2b.md b/src/content/library/ebooks/9ec3a7a87d9256888e48604558394b42842ff084b8145b57f5e410ccbfc5ff2b.md new file mode 100644 index 0000000..29ecf31 --- /dev/null +++ b/src/content/library/ebooks/9ec3a7a87d9256888e48604558394b42842ff084b8145b57f5e410ccbfc5ff2b.md @@ -0,0 +1,16 @@ +--- +title: "Making fire work: pyrotechnics and natural philosophy" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9ec3a7a87d9256888e48604558394b42842ff084b8145b57f5e410ccbfc5ff2b.jpg](/images/library/9ec3a7a87d9256888e48604558394b42842ff084b8145b57f5e410ccbfc5ff2b.jpg) +* Author: Simon Werrett +* IDs: + * DOI: 10.1016/j.endeavour.2008.01.007 +* View + +* [Download](https://drive.google.com/uc?export=download&id=14yxKoQ9ofrKcwMMhIDJtaE8h-563fNZ4) (4.27 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/9f220d224e2da7be0e1cdfbbc1f335c65438e7b684c7086ed81695f32cbe5a88.md b/src/content/library/ebooks/9f220d224e2da7be0e1cdfbbc1f335c65438e7b684c7086ed81695f32cbe5a88.md new file mode 100644 index 0000000..166bb65 --- /dev/null +++ b/src/content/library/ebooks/9f220d224e2da7be0e1cdfbbc1f335c65438e7b684c7086ed81695f32cbe5a88.md @@ -0,0 +1,19 @@ +--- +title: "Die moderne Kunstfeuerwerkerei: eine Anleitung für Dilettanten" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![9f220d224e2da7be0e1cdfbbc1f335c65438e7b684c7086ed81695f32cbe5a88.jpg](/images/library/9f220d224e2da7be0e1cdfbbc1f335c65438e7b684c7086ed81695f32cbe5a88.jpg) +* Author: Karl Gelingsheim +* IDs: + * ISBN: 9783831129461 + * Google: FGP9wAEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1mdsW8zDnLVYQCcw2lm358XxAcHzh_azK) (10.53 MB) + +## DescriptionFireworks Manufacture + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/a032c2350ffcebdae08b639ea5804539166bbdda8beebbae5e3e6907f6297a0b.md b/src/content/library/ebooks/a032c2350ffcebdae08b639ea5804539166bbdda8beebbae5e3e6907f6297a0b.md new file mode 100644 index 0000000..81eb216 --- /dev/null +++ b/src/content/library/ebooks/a032c2350ffcebdae08b639ea5804539166bbdda8beebbae5e3e6907f6297a0b.md @@ -0,0 +1,16 @@ +--- +title: "Introduction to Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![a032c2350ffcebdae08b639ea5804539166bbdda8beebbae5e3e6907f6297a0b.jpg](/images/library/a032c2350ffcebdae08b639ea5804539166bbdda8beebbae5e3e6907f6297a0b.jpg) +* Author: Vennie Lloyd +* IDs: + * ISBN: 9781283492195 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1JzQJtn4pdnwMT2ugqEItK9L2koTz8TNV) (4.97 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/a051b1d87455db51a07732dd388abfebb8030cac0ec37934f972660db13243a9.md b/src/content/library/ebooks/a051b1d87455db51a07732dd388abfebb8030cac0ec37934f972660db13243a9.md new file mode 100644 index 0000000..5209816 --- /dev/null +++ b/src/content/library/ebooks/a051b1d87455db51a07732dd388abfebb8030cac0ec37934f972660db13243a9.md @@ -0,0 +1,14 @@ +--- +title: "Black Powder Seminar" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![a051b1d87455db51a07732dd388abfebb8030cac0ec37934f972660db13243a9.jpg](/images/library/a051b1d87455db51a07732dd388abfebb8030cac0ec37934f972660db13243a9.jpg) +* Author: Steve Hubing +* View + +* [Download](https://drive.google.com/uc?export=download&id=1NjgmNVBOGeLzLBpUabkEOphKXUTA3YT2) (900.88 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/a08759c2e66ea687dc9b54af951102dfefee21248ccbdc5fc07d32f1cd1886dc.md b/src/content/library/ebooks/a08759c2e66ea687dc9b54af951102dfefee21248ccbdc5fc07d32f1cd1886dc.md new file mode 100644 index 0000000..3c8423f --- /dev/null +++ b/src/content/library/ebooks/a08759c2e66ea687dc9b54af951102dfefee21248ccbdc5fc07d32f1cd1886dc.md @@ -0,0 +1,15 @@ +--- +title: "A System of Pyrotechny / Comprehending the theory and practice, with the application of chemistry; designed for exhibition and for war." +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![a08759c2e66ea687dc9b54af951102dfefee21248ccbdc5fc07d32f1cd1886dc.jpg](/images/library/a08759c2e66ea687dc9b54af951102dfefee21248ccbdc5fc07d32f1cd1886dc.jpg) +* Author: James Cutbush +* IDs: +* View + +* [Download](https://drive.google.com/uc?export=download&id=16d6kqSyPYwVyaJ_rvxF0Qhc_fHqRC-B0) (1.12 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/a5f84305a4f5b7ca4f00e2c2e3ceb319a5bbe553a4e105188be41b1cff0d3944.md b/src/content/library/ebooks/a5f84305a4f5b7ca4f00e2c2e3ceb319a5bbe553a4e105188be41b1cff0d3944.md new file mode 100644 index 0000000..5c41fd6 --- /dev/null +++ b/src/content/library/ebooks/a5f84305a4f5b7ca4f00e2c2e3ceb319a5bbe553a4e105188be41b1cff0d3944.md @@ -0,0 +1,14 @@ +--- +title: "Endless Amusement / A Collection of Nearly 400 Entertaining Experiments in Various Branches of Science; Including Acoustics, Electricity, Magnetism, Arithmetic, Hydraulics, Mechanics, Chemistry, Hydrostatics, Optics; Wonders of the Air-Pump; All the Popular Tricks and Changes of the Cards, &c., &c. to Which is Added, a Complete System of Pyrotechny; Or, the Art of Making Fire-works." +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![a5f84305a4f5b7ca4f00e2c2e3ceb319a5bbe553a4e105188be41b1cff0d3944.jpg](/images/library/a5f84305a4f5b7ca4f00e2c2e3ceb319a5bbe553a4e105188be41b1cff0d3944.jpg) +* IDs: +* View + +* [Download](https://drive.google.com/uc?export=download&id=1jMev9DtXPbtGMHXtABKiIPn4w4a5wmvZ) (2.39 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/a65aa9f0ab1ef6da8ea51bdaffca0a496597cbb7fe3db339b5210bd2d195bc53.md b/src/content/library/ebooks/a65aa9f0ab1ef6da8ea51bdaffca0a496597cbb7fe3db339b5210bd2d195bc53.md new file mode 100644 index 0000000..9ed0b10 --- /dev/null +++ b/src/content/library/ebooks/a65aa9f0ab1ef6da8ea51bdaffca0a496597cbb7fe3db339b5210bd2d195bc53.md @@ -0,0 +1,14 @@ +--- +title: "Journal of Pyrotechnics Issue 20, Winter 2004" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![a65aa9f0ab1ef6da8ea51bdaffca0a496597cbb7fe3db339b5210bd2d195bc53.jpg](/images/library/a65aa9f0ab1ef6da8ea51bdaffca0a496597cbb7fe3db339b5210bd2d195bc53.jpg) +* Author: Bonnie Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=13G_Exqrq_tCCSP7DOZ2VT9lG761AWpnu) (8.84 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/aa7e4c363a6a3f8b88fca4182e357599c1549a999eda07e208bbb9551f6d9d02.md b/src/content/library/ebooks/aa7e4c363a6a3f8b88fca4182e357599c1549a999eda07e208bbb9551f6d9d02.md new file mode 100644 index 0000000..c100c69 --- /dev/null +++ b/src/content/library/ebooks/aa7e4c363a6a3f8b88fca4182e357599c1549a999eda07e208bbb9551f6d9d02.md @@ -0,0 +1,16 @@ +--- +title: "Manual of Explosives, Military Pyrotechnics, and Chemical Warfare Agents : Composition, Properties, Uses" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![aa7e4c363a6a3f8b88fca4182e357599c1549a999eda07e208bbb9551f6d9d02.jpg](/images/library/aa7e4c363a6a3f8b88fca4182e357599c1549a999eda07e208bbb9551f6d9d02.jpg) +* Author: Jules Bebie +* IDs: + * Amazon: B0007DMNM8 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1oDXS3DeASCNs8JeU38xweoTBkGHYkjUk) (1.39 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/aaa0b609f4fdbeb1374fc7767ad3efb126fd1d8a70c2ebf959f0e53d93a2164a.md b/src/content/library/ebooks/aaa0b609f4fdbeb1374fc7767ad3efb126fd1d8a70c2ebf959f0e53d93a2164a.md new file mode 100644 index 0000000..8fe3d91 --- /dev/null +++ b/src/content/library/ebooks/aaa0b609f4fdbeb1374fc7767ad3efb126fd1d8a70c2ebf959f0e53d93a2164a.md @@ -0,0 +1,14 @@ +--- +title: "Amateur Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![aaa0b609f4fdbeb1374fc7767ad3efb126fd1d8a70c2ebf959f0e53d93a2164a.jpg](/images/library/aaa0b609f4fdbeb1374fc7767ad3efb126fd1d8a70c2ebf959f0e53d93a2164a.jpg) +* Author: Dan Williams +* View + +* [Download](https://drive.google.com/uc?export=download&id=1jtSnp5nZApZwU3nT1J_qn__eu7TaJK6i) (2.4 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/aaf385f7d0d061b599ee40c11c5a46581d118c7f6bb1c573cbefc53e3cd379d8.md b/src/content/library/ebooks/aaf385f7d0d061b599ee40c11c5a46581d118c7f6bb1c573cbefc53e3cd379d8.md new file mode 100644 index 0000000..0b0dbb4 --- /dev/null +++ b/src/content/library/ebooks/aaf385f7d0d061b599ee40c11c5a46581d118c7f6bb1c573cbefc53e3cd379d8.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 5" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![aaf385f7d0d061b599ee40c11c5a46581d118c7f6bb1c573cbefc53e3cd379d8.jpg](/images/library/aaf385f7d0d061b599ee40c11c5a46581d118c7f6bb1c573cbefc53e3cd379d8.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=1mkWwwbsrRczTLpGlxkWySnA9Vx0WWla3) (121.9 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/ac0382fc30971f149993a78fc02325f22b9c59f04549e80fc43c682e712b091d.md b/src/content/library/ebooks/ac0382fc30971f149993a78fc02325f22b9c59f04549e80fc43c682e712b091d.md new file mode 100644 index 0000000..00ab350 --- /dev/null +++ b/src/content/library/ebooks/ac0382fc30971f149993a78fc02325f22b9c59f04549e80fc43c682e712b091d.md @@ -0,0 +1,20 @@ +--- +title: "Selected Pyrotechnic Publications of Dr. Takeo Shimizu Part 4: The Design Criteria for Chrysanthemum Shells" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![ac0382fc30971f149993a78fc02325f22b9c59f04549e80fc43c682e712b091d.jpg](/images/library/ac0382fc30971f149993a78fc02325f22b9c59f04549e80fc43c682e712b091d.jpg) +* Author: Dr. Takeo Shimizu +* IDs: + * Google: n_WnLou8fnYC + * ISBN: 9781889526140 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1DSmfAk-moiF8c_heK8OZnGGMxfqFOzZX) (10.46 MB) + +## Description
+

Dr. Shimizu translated his 1959 PhD thesis from Japanese to English. This is a mathematical and physical approach to the construction of spherical fireworks shells. The test results are tabularized and graphed in many instances.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/adebc6a2976b816758bd1e8c82e8a20c43adf78d92bae05bac7f9767ea8defb9.md b/src/content/library/ebooks/adebc6a2976b816758bd1e8c82e8a20c43adf78d92bae05bac7f9767ea8defb9.md new file mode 100644 index 0000000..f9ab290 --- /dev/null +++ b/src/content/library/ebooks/adebc6a2976b816758bd1e8c82e8a20c43adf78d92bae05bac7f9767ea8defb9.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 16, Winter 2002" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![adebc6a2976b816758bd1e8c82e8a20c43adf78d92bae05bac7f9767ea8defb9.jpg](/images/library/adebc6a2976b816758bd1e8c82e8a20c43adf78d92bae05bac7f9767ea8defb9.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1vV8YkyhCgtsq7u4g3YO-Y6fhJptdgAWm) (14.57 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b10cd28692af95802e9ab93ea2e0db8ce529342b3da1f9ab454d3bc6f91deb32.md b/src/content/library/ebooks/b10cd28692af95802e9ab93ea2e0db8ce529342b3da1f9ab454d3bc6f91deb32.md new file mode 100644 index 0000000..5c61ba7 --- /dev/null +++ b/src/content/library/ebooks/b10cd28692af95802e9ab93ea2e0db8ce529342b3da1f9ab454d3bc6f91deb32.md @@ -0,0 +1,14 @@ +--- +title: "Engineering Design Handbook - Military Pyrotechnics Series, Part One" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b10cd28692af95802e9ab93ea2e0db8ce529342b3da1f9ab454d3bc6f91deb32.jpg](/images/library/b10cd28692af95802e9ab93ea2e0db8ce529342b3da1f9ab454d3bc6f91deb32.jpg) +* Authors: Theory, Application (AD817071) (z-lib.org) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1PGqCcw22OKVJJ40BL98k-ouzw1EWmLyw) (21.12 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b11c8790db3cd3fb54c55efb68fce4b9ed1ce6b104f8660e2d826c57ccc445b0.md b/src/content/library/ebooks/b11c8790db3cd3fb54c55efb68fce4b9ed1ce6b104f8660e2d826c57ccc445b0.md new file mode 100644 index 0000000..c88cf07 --- /dev/null +++ b/src/content/library/ebooks/b11c8790db3cd3fb54c55efb68fce4b9ed1ce6b104f8660e2d826c57ccc445b0.md @@ -0,0 +1,17 @@ +--- +title: "The Illustrated Dictionary of Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b11c8790db3cd3fb54c55efb68fce4b9ed1ce6b104f8660e2d826c57ccc445b0.jpg](/images/library/b11c8790db3cd3fb54c55efb68fce4b9ed1ce6b104f8660e2d826c57ccc445b0.jpg) +* Authors: Kenneth L. Kosanke, B. J. Kosanke +* IDs: + * ISBN: 9781889526010 + * Google: e7XjCvof60QC +* View + +* [Download](https://drive.google.com/uc?export=download&id=1EZreaXLiFsAPWEEhU2Dan5BdZLQPlvAr) (1.6 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b143a6455b2119f1ca25946a4e297137760936e003d94566826f85ebe4b1edb1.md b/src/content/library/ebooks/b143a6455b2119f1ca25946a4e297137760936e003d94566826f85ebe4b1edb1.md new file mode 100644 index 0000000..15d177e --- /dev/null +++ b/src/content/library/ebooks/b143a6455b2119f1ca25946a4e297137760936e003d94566826f85ebe4b1edb1.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue Number 2, Winter 1995" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b143a6455b2119f1ca25946a4e297137760936e003d94566826f85ebe4b1edb1.jpg](/images/library/b143a6455b2119f1ca25946a4e297137760936e003d94566826f85ebe4b1edb1.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1D1TpOhOr2_ruWR_v_7EAmpef-06ZvVMe) (4.57 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b378855004603fbec8db6d5fdd275b6ce2418677a8c2b84757e4e4ebb6047e91.md b/src/content/library/ebooks/b378855004603fbec8db6d5fdd275b6ce2418677a8c2b84757e4e4ebb6047e91.md new file mode 100644 index 0000000..55b0e6e --- /dev/null +++ b/src/content/library/ebooks/b378855004603fbec8db6d5fdd275b6ce2418677a8c2b84757e4e4ebb6047e91.md @@ -0,0 +1,21 @@ +--- +title: "The Do-It-Yourself Gunpowder Cookbook" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b378855004603fbec8db6d5fdd275b6ce2418677a8c2b84757e4e4ebb6047e91.jpg](/images/library/b378855004603fbec8db6d5fdd275b6ce2418677a8c2b84757e4e4ebb6047e91.jpg) +* Author: Don McLean +* IDs: + * Google: bVMNAAAACAAJ + * Amazon: 0873646754 + * ISBN: 9780873646758 +* View + +* [Download](https://drive.google.com/uc?export=download&id=17N5oKSHKeeguZq4rBRjzxbuOqsAz5wtt) (4.43 MB) + +## Description
+

Learn how to make gunpowder from such items as dead cats, whiskey, your living room ceiling, manure and maple syrup with simple hand tools and techniques that have been used for centuries. This is a practical and safe approach to making the oldest propellant/explosive known. For information purposes only.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b3d62262f01a5c4550088409897fa05103a4302e9ccdaf79eda718d6ce7865ba.md b/src/content/library/ebooks/b3d62262f01a5c4550088409897fa05103a4302e9ccdaf79eda718d6ce7865ba.md new file mode 100644 index 0000000..68e3685 --- /dev/null +++ b/src/content/library/ebooks/b3d62262f01a5c4550088409897fa05103a4302e9ccdaf79eda718d6ce7865ba.md @@ -0,0 +1,16 @@ +--- +title: "Fireworks & Explosives Like Granddad Used to Make" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b3d62262f01a5c4550088409897fa05103a4302e9ccdaf79eda718d6ce7865ba.jpg](/images/library/b3d62262f01a5c4550088409897fa05103a4302e9ccdaf79eda718d6ce7865ba.jpg) +* Author: Kurt Saxon +* IDs: + * Google: CCjQGwAACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=12EuU2TEJJIBaqFvQsuFq5JJVCupYjPEe) (4.47 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b4294870a778a2d6f6e440d090992813b805970348e69bdfb49c0292850138e0.md b/src/content/library/ebooks/b4294870a778a2d6f6e440d090992813b805970348e69bdfb49c0292850138e0.md new file mode 100644 index 0000000..80c97fe --- /dev/null +++ b/src/content/library/ebooks/b4294870a778a2d6f6e440d090992813b805970348e69bdfb49c0292850138e0.md @@ -0,0 +1,21 @@ +--- +title: "Pyrotechnia Or, a Discourse of Artificiall Fire-Works:" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b4294870a778a2d6f6e440d090992813b805970348e69bdfb49c0292850138e0.jpg](/images/library/b4294870a778a2d6f6e440d090992813b805970348e69bdfb49c0292850138e0.jpg) +* Author: John Babington Gunner +* IDs: + * Google: Kj-mzQEACAAJ + * ISBN: 9781847348371 + * Amazon: 1847348378 +* View + +* [Download]() (59.99 MB) + +## Description
+

When this book was first published in 1635, fireworks were a relative novelty in the western world - although invented by the Chinese in ancient times. The author, ‘an inferior gunner’ in the military service of Charles I, wrote his treatise on making fireworks for pleasure to please his superior officer, the Earl of Newport, Master of the King’s Ordnance, to whom it is fulsomely dedicated. Babington writes in a clear ‘how to’ style, and includes instructions - and delightful diagrams and illustrations - on making and lighting many types of fireworks familiar to us today, including rockets and Catherine wheels. There are many more elaborate fireworks listed too, including instructions for making a Royal coat of arms in fire; and directions for staging a duel between a St George and a fire-breathing dragon. One of the oldest titles ever published by the Naval & Military Press, this beautifully illustrated and instructive volume well-deserves its accolade by fireworks expert Chris Phillips as ‘The most important work in the bibliography of fireworks’.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b452a46a94c6a5b397e4ac2e55b1e439d2b5a9a714c33ba049cabf1e37419a47.md b/src/content/library/ebooks/b452a46a94c6a5b397e4ac2e55b1e439d2b5a9a714c33ba049cabf1e37419a47.md new file mode 100644 index 0000000..212918b --- /dev/null +++ b/src/content/library/ebooks/b452a46a94c6a5b397e4ac2e55b1e439d2b5a9a714c33ba049cabf1e37419a47.md @@ -0,0 +1,14 @@ +--- +title: "Regulation (EU) No 98/2013 of the European Parliament and of the Council of 15 January 2013 on the marketing and use of explosives precursorsText with EEA relevance" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b452a46a94c6a5b397e4ac2e55b1e439d2b5a9a714c33ba049cabf1e37419a47.jpg](/images/library/b452a46a94c6a5b397e4ac2e55b1e439d2b5a9a714c33ba049cabf1e37419a47.jpg) +* Author: Publications Office +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Hgjg4BpCGANmaEGI4pPGcodGjTbWV6qT) (787.6 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b6ce8162bf4a27c4ef957e2b97b5a706f38c3faeefd313fbb227f8f1e94c2ea3.md b/src/content/library/ebooks/b6ce8162bf4a27c4ef957e2b97b5a706f38c3faeefd313fbb227f8f1e94c2ea3.md new file mode 100644 index 0000000..414f997 --- /dev/null +++ b/src/content/library/ebooks/b6ce8162bf4a27c4ef957e2b97b5a706f38c3faeefd313fbb227f8f1e94c2ea3.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 28, 2009" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b6ce8162bf4a27c4ef957e2b97b5a706f38c3faeefd313fbb227f8f1e94c2ea3.jpg](/images/library/b6ce8162bf4a27c4ef957e2b97b5a706f38c3faeefd313fbb227f8f1e94c2ea3.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1A6E6RomQ4kU6qWz-CTxYDne5_4C3a2ie) (8.17 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b87d9d7e47128128b7c82cb1b97d19c8e166bd49e94abba530307931d3138dba.md b/src/content/library/ebooks/b87d9d7e47128128b7c82cb1b97d19c8e166bd49e94abba530307931d3138dba.md new file mode 100644 index 0000000..89ef388 --- /dev/null +++ b/src/content/library/ebooks/b87d9d7e47128128b7c82cb1b97d19c8e166bd49e94abba530307931d3138dba.md @@ -0,0 +1,14 @@ +--- +title: "Professional Homemade Cherry Bombs & Other Fireworks" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b87d9d7e47128128b7c82cb1b97d19c8e166bd49e94abba530307931d3138dba.jpg](/images/library/b87d9d7e47128128b7c82cb1b97d19c8e166bd49e94abba530307931d3138dba.jpg) +* Author: Desert Publications +* View + +* [Download](https://drive.google.com/uc?export=download&id=1l2YL-NgkHT521_GinaFdXx0NvirR7r03) (2.44 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b9af98aab995291afbcf17c9e13175b1306bd645f03db94347ddc55af7637c1f.md b/src/content/library/ebooks/b9af98aab995291afbcf17c9e13175b1306bd645f03db94347ddc55af7637c1f.md new file mode 100644 index 0000000..a7ea671 --- /dev/null +++ b/src/content/library/ebooks/b9af98aab995291afbcf17c9e13175b1306bd645f03db94347ddc55af7637c1f.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 11, Summer 2000" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b9af98aab995291afbcf17c9e13175b1306bd645f03db94347ddc55af7637c1f.jpg](/images/library/b9af98aab995291afbcf17c9e13175b1306bd645f03db94347ddc55af7637c1f.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1ANTMjeOQDbnEIlikOdQzH9ocNrYZc9fq) (3.08 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/b9ea7026b52f95fd8a11768279c4b0264126e84b57cb16eae17e77cff3835cf8.md b/src/content/library/ebooks/b9ea7026b52f95fd8a11768279c4b0264126e84b57cb16eae17e77cff3835cf8.md new file mode 100644 index 0000000..4c6d8a5 --- /dev/null +++ b/src/content/library/ebooks/b9ea7026b52f95fd8a11768279c4b0264126e84b57cb16eae17e77cff3835cf8.md @@ -0,0 +1,14 @@ +--- +title: "Practial guide to chlorate/perchlorate electrolysis" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![b9ea7026b52f95fd8a11768279c4b0264126e84b57cb16eae17e77cff3835cf8.jpg](/images/library/b9ea7026b52f95fd8a11768279c4b0264126e84b57cb16eae17e77cff3835cf8.jpg) +* Author: Feanor +* View + +* [Download](https://drive.google.com/uc?export=download&id=1JcgdNwBrPRIeX7DblMcNwTBH1Kb2uUmY) (363.39 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/bd85a24c904bbf54c45587d85813424034cb7839ce17f91f09a4f694888d9dc0.md b/src/content/library/ebooks/bd85a24c904bbf54c45587d85813424034cb7839ce17f91f09a4f694888d9dc0.md new file mode 100644 index 0000000..c013458 --- /dev/null +++ b/src/content/library/ebooks/bd85a24c904bbf54c45587d85813424034cb7839ce17f91f09a4f694888d9dc0.md @@ -0,0 +1,14 @@ +--- +title: "The evolution and art significance of pyrotechnics (Thesis)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![bd85a24c904bbf54c45587d85813424034cb7839ce17f91f09a4f694888d9dc0.jpg](/images/library/bd85a24c904bbf54c45587d85813424034cb7839ce17f91f09a4f694888d9dc0.jpg) +* Author: Leila Claire Sturgia +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Ya48gcunPyZxVoNPslS-Mg_De6XZBMaU) (6.43 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/be586c1d080ece74b78af6733a95f7d8498d4c0c345dacd066806ed0ab992aea.md b/src/content/library/ebooks/be586c1d080ece74b78af6733a95f7d8498d4c0c345dacd066806ed0ab992aea.md new file mode 100644 index 0000000..c88bcd9 --- /dev/null +++ b/src/content/library/ebooks/be586c1d080ece74b78af6733a95f7d8498d4c0c345dacd066806ed0ab992aea.md @@ -0,0 +1,21 @@ +--- +title: "High Energy Materials: Propellants, Explosives and Pyrotechnics" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![be586c1d080ece74b78af6733a95f7d8498d4c0c345dacd066806ed0ab992aea.jpg](/images/library/be586c1d080ece74b78af6733a95f7d8498d4c0c345dacd066806ed0ab992aea.jpg) +* Author: Jai Prakash Agrawal +* IDs: + * Google: rqZROysoS7QC + * Amazon: 3527326103 + * ISBN: 9783527326105 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1A63pxBet7DNFOmN6FmXd3yh8-CGN5nlY) (2.72 MB) + +## Description
+

Authored by an insider with over 40 years of high energy materials (HEMs) experience in academia, industry and defense organizations, this handbook and ready reference covers all important HEMs from the 1950s to the present with their respective properties and intended purposes.
Written at an attainable level for professionals, engineers and technicians alike, the book provides a comprehensive view of the current status and suggests further directions for research and development. An introductory chapter on the chemical and thermodynamic basics allows the reader to become acquainted with the fundamental features of explosives, before moving on to the important safety aspects in processing, handling, transportation and storage of high energy materials.
With its collation of results and formulation strategies hitherto scattered in the literature, this should be on the shelf of every HEM researcher and developer.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/c454139b14d4f9b0df765a278ab4919b9f8578c758393ce8812575b911fc1735.md b/src/content/library/ebooks/c454139b14d4f9b0df765a278ab4919b9f8578c758393ce8812575b911fc1735.md new file mode 100644 index 0000000..d8223f5 --- /dev/null +++ b/src/content/library/ebooks/c454139b14d4f9b0df765a278ab4919b9f8578c758393ce8812575b911fc1735.md @@ -0,0 +1,21 @@ +--- +title: "Perchlorate: Environmental Occurrence, Interactions and Treatment" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![c454139b14d4f9b0df765a278ab4919b9f8578c758393ce8812575b911fc1735.jpg](/images/library/c454139b14d4f9b0df765a278ab4919b9f8578c758393ce8812575b911fc1735.jpg) +* Authors: Baohua Gu, John D. Coates +* IDs: + * Google: hThZ3fa9uz0C + * ISBN: 9780387311142 + * Amazon: 0387311149 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1fIqYsSELsB5HwQcY49pSXhiL17ii54Pf) (22.32 MB) + +## Description
+

Perchlorate is a widespread, environmentally persistent contaminant recently discovered in U.S. groundwater and drinking water supplies. This book summarizes the most current knowledge and understandings of the extent and potential sources of perchlorate contamination, its behavior, exposure pathways in the environment, toxicology and risk assessment, and recent advances in treatment technologies for removing perchlorate. Its natural occurrence and its unique isotopic signature (between natural and anthropogenic sources) and novel detection techniques are discussed. A description of the perchlorate chemistry, microbiology, biochemistry, genetics, geochemical occurrences and environmental forensics, toxicology and risk assessment to engineering solutions and policy is provided. Also included are remediation technologies and monitoring tools for cleaning up contaminated sites including bioremediation, selective and regenerable ion-exchange, modified granular activated carbon, and catalyzed destruction.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/c98007b86f9407c8dc13cd3d350e8786cfc980601ccbbf407aa762c7594fbb84.md b/src/content/library/ebooks/c98007b86f9407c8dc13cd3d350e8786cfc980601ccbbf407aa762c7594fbb84.md new file mode 100644 index 0000000..f9d47d7 --- /dev/null +++ b/src/content/library/ebooks/c98007b86f9407c8dc13cd3d350e8786cfc980601ccbbf407aa762c7594fbb84.md @@ -0,0 +1,19 @@ +--- +title: "The Great Art of Artillery of Casimir Simienowicz" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![c98007b86f9407c8dc13cd3d350e8786cfc980601ccbbf407aa762c7594fbb84.jpg](/images/library/c98007b86f9407c8dc13cd3d350e8786cfc980601ccbbf407aa762c7594fbb84.jpg) +* Author: Casimir Simienowicz +* IDs: + * Google: cJHljwEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1nohbYD_tvPOJO5-TDNDjFwuEmFaOdVM8) (37.54 MB) + +## Description
+

Translated From the French, by George Shelvocke, ... Illustrated With Twenty Three Copper Plates

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/cf418335a89e4ab257f1724cea5990e3bdee72a733fe81a5b3bd929b90d01436.md b/src/content/library/ebooks/cf418335a89e4ab257f1724cea5990e3bdee72a733fe81a5b3bd929b90d01436.md new file mode 100644 index 0000000..19168f7 --- /dev/null +++ b/src/content/library/ebooks/cf418335a89e4ab257f1724cea5990e3bdee72a733fe81a5b3bd929b90d01436.md @@ -0,0 +1,16 @@ +--- +title: "Spin Stabilized Rockets" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![cf418335a89e4ab257f1724cea5990e3bdee72a733fe81a5b3bd929b90d01436.jpg](/images/library/cf418335a89e4ab257f1724cea5990e3bdee72a733fe81a5b3bd929b90d01436.jpg) +* Author: Dan Williams, Warren Klofkorn, Richard Harrison +* View + +* [Download](https://drive.google.com/uc?export=download&id=1V1rqYrC3LHwc0OAXOF6iREtNC231XKuR) (2.44 MB) + +## DescriptionFireworks, Skyrockets + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/d052c8d75dbd84a7fb5106318c0b938bb92523154cbf911412893dc004bb5426.md b/src/content/library/ebooks/d052c8d75dbd84a7fb5106318c0b938bb92523154cbf911412893dc004bb5426.md new file mode 100644 index 0000000..eb8462f --- /dev/null +++ b/src/content/library/ebooks/d052c8d75dbd84a7fb5106318c0b938bb92523154cbf911412893dc004bb5426.md @@ -0,0 +1,14 @@ +--- +title: "Engineering Design Handbook - Military Pyrotechnics Series, Part Four - Design of ammunition for pyrotechnic effects" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![d052c8d75dbd84a7fb5106318c0b938bb92523154cbf911412893dc004bb5426.jpg](/images/library/d052c8d75dbd84a7fb5106318c0b938bb92523154cbf911412893dc004bb5426.jpg) +* Author: Alexandria, Virginia +* View + +* [Download](https://drive.google.com/uc?export=download&id=1uSUa3UY0wvskUf1yQ01nJGMPn9beCGZj) (16.85 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/d0e1a7e8fabd11737afaeaf57e97792a4e5e61d0956f9c8bd71e55538bfc6215.md b/src/content/library/ebooks/d0e1a7e8fabd11737afaeaf57e97792a4e5e61d0956f9c8bd71e55538bfc6215.md new file mode 100644 index 0000000..0c0305f --- /dev/null +++ b/src/content/library/ebooks/d0e1a7e8fabd11737afaeaf57e97792a4e5e61d0956f9c8bd71e55538bfc6215.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 24, Winter 2006" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![d0e1a7e8fabd11737afaeaf57e97792a4e5e61d0956f9c8bd71e55538bfc6215.jpg](/images/library/d0e1a7e8fabd11737afaeaf57e97792a4e5e61d0956f9c8bd71e55538bfc6215.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1yE_YXMBaVHKD_ESKcUwxhDF2XBFBm-p9) (9.27 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/d28db32d5bebfd5619a1ab48a85f2de2bc46fbb600f7bfa1219621445e98384d.md b/src/content/library/ebooks/d28db32d5bebfd5619a1ab48a85f2de2bc46fbb600f7bfa1219621445e98384d.md new file mode 100644 index 0000000..0cbb220 --- /dev/null +++ b/src/content/library/ebooks/d28db32d5bebfd5619a1ab48a85f2de2bc46fbb600f7bfa1219621445e98384d.md @@ -0,0 +1,19 @@ +--- +title: "FM 3-23.30. Grenades and Pyrotechnic Signals, October 2009 Edition" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![d28db32d5bebfd5619a1ab48a85f2de2bc46fbb600f7bfa1219621445e98384d.jpg](/images/library/d28db32d5bebfd5619a1ab48a85f2de2bc46fbb600f7bfa1219621445e98384d.jpg) +* Author: Headquarters Department Of The Army +* IDs: + * Amazon: B004JCQ3MY +* View + +* [Download](https://drive.google.com/uc?export=download&id=1EX0SylC_QxsqqUlyLFcj3hNs25y7MLO7) (9.65 MB) + +## Description
+

FM 3-23.30. Grenades and Pyrotechnic Signals, October 2009 Edition.PLEASE READ CAREFULLY BEFORE BUYING: 160 page Book on 24# (HEAVY) paper. UNBOUND BINDER-READY / LOOSE LEAF, BINDER-READY means that the pages are hole-punched and ready to be put in binders. PLEASE NOTE THE BINDER(S) ARE NOT INCLUDED. LOOSE-LEAF UNBOUND EDITION NO BINDER. 8.5x11 PD-nd Okd

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/d2f60e0745032b89fb0bc5550beb5e0641112881a7c259012fab68d9d21530a1.md b/src/content/library/ebooks/d2f60e0745032b89fb0bc5550beb5e0641112881a7c259012fab68d9d21530a1.md new file mode 100644 index 0000000..aadd74d --- /dev/null +++ b/src/content/library/ebooks/d2f60e0745032b89fb0bc5550beb5e0641112881a7c259012fab68d9d21530a1.md @@ -0,0 +1,15 @@ +--- +title: "A Manual of Pyrotechny / or, A Familiar System of Recreative Fire-works" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![d2f60e0745032b89fb0bc5550beb5e0641112881a7c259012fab68d9d21530a1.jpg](/images/library/d2f60e0745032b89fb0bc5550beb5e0641112881a7c259012fab68d9d21530a1.jpg) +* Author: G. W. Mortimer +* IDs: +* View + +* [Download](https://drive.google.com/uc?export=download&id=1vvAOb-w4vHMLyoWqruKJGeIlK6bUYPCl) (633.86 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/d75e1cfd3f50882c7049ad67ce4122e021b3c8ccbee97084762be951293251ac.md b/src/content/library/ebooks/d75e1cfd3f50882c7049ad67ce4122e021b3c8ccbee97084762be951293251ac.md new file mode 100644 index 0000000..44d79aa --- /dev/null +++ b/src/content/library/ebooks/d75e1cfd3f50882c7049ad67ce4122e021b3c8ccbee97084762be951293251ac.md @@ -0,0 +1,14 @@ +--- +title: "Engineering Design Handbook - Military Pyrotechnics Series, Part Two" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![d75e1cfd3f50882c7049ad67ce4122e021b3c8ccbee97084762be951293251ac.jpg](/images/library/d75e1cfd3f50882c7049ad67ce4122e021b3c8ccbee97084762be951293251ac.jpg) +* Authors: Safety, Procedures, Glossary (AD830371) (z-lib.org) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1lGy3i-VRGWEXPFYWyDvpK19qWxrvzbt2) (4.69 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/d77f0fee937733c860824e0129af91702f5fa79877f57f805ff642bf7bb15358.md b/src/content/library/ebooks/d77f0fee937733c860824e0129af91702f5fa79877f57f805ff642bf7bb15358.md new file mode 100644 index 0000000..2f9e160 --- /dev/null +++ b/src/content/library/ebooks/d77f0fee937733c860824e0129af91702f5fa79877f57f805ff642bf7bb15358.md @@ -0,0 +1,18 @@ +--- +title: "Black Powder Manufacturing, Testing and Optimizing" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![d77f0fee937733c860824e0129af91702f5fa79877f57f805ff642bf7bb15358.jpg](/images/library/d77f0fee937733c860824e0129af91702f5fa79877f57f805ff642bf7bb15358.jpg) +* Author: Ian von Maltitz +* IDs: + * ISBN: 9780929931210 + * Google: LeArAAAACAAJ + * Amazon: 0929931211 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1HC5z_zIhGQ_jfbk-jb3STOZ9fHo_hedZ) (2.92 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/d9c08deb6dde3f0ad2a9427f5a7262e695fe375627ff30bdf9e6876ac36437f7.md b/src/content/library/ebooks/d9c08deb6dde3f0ad2a9427f5a7262e695fe375627ff30bdf9e6876ac36437f7.md new file mode 100644 index 0000000..8ad8727 --- /dev/null +++ b/src/content/library/ebooks/d9c08deb6dde3f0ad2a9427f5a7262e695fe375627ff30bdf9e6876ac36437f7.md @@ -0,0 +1,21 @@ +--- +title: "Fireworks Principles and Practice (3rd editon)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![d9c08deb6dde3f0ad2a9427f5a7262e695fe375627ff30bdf9e6876ac36437f7.jpg](/images/library/d9c08deb6dde3f0ad2a9427f5a7262e695fe375627ff30bdf9e6876ac36437f7.jpg) +* Authors: Ronald Lancaster, Roy E. A. Butler, J. Mark Lancaster, Takeo Shimizu +* IDs: + * Google: CzsEAAAACAAJ + * ISBN: 9780820603544 + * Amazon: 0820603546 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1N9lD91YZwcg_2pfGUHeYVwQNsAOOY6lk) (5.32 MB) + +## Description
+

All the chapters from the previous edition have been revised and enlarged to include in most cases new fireworks formats. Four new chapters have been added to this 3rd Edition: In a new chapter Chemistry of Fireworks Compositions; Dr. Takeo Shimizu examines the use of materials and binders in the manufacturing process and how to control reactions. The chapter on Fireworks Displays, examines the evolution of displays and modern uses throughout the world. The new chapter on Gunpowder deals with its uses since ancient times to date. The legislative framework for fireworks control in Great Britain, United States, Canada and the European Union are discussed in the new Legislation chapter. In addition, this 3rd Edition includes a glossary with more than three hundred fireworks terms and numerous photographs, some from the historical archives of the Brocks Fireworks.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/da6548cb96f86af5e20eee09db14dbeb5786d3a42720ede8f64c3b5b69a5baa1.md b/src/content/library/ebooks/da6548cb96f86af5e20eee09db14dbeb5786d3a42720ede8f64c3b5b69a5baa1.md new file mode 100644 index 0000000..cb19507 --- /dev/null +++ b/src/content/library/ebooks/da6548cb96f86af5e20eee09db14dbeb5786d3a42720ede8f64c3b5b69a5baa1.md @@ -0,0 +1,23 @@ +--- +title: "Impact Firecrackers: A History and How-To Guide to Classic Fireworks" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![da6548cb96f86af5e20eee09db14dbeb5786d3a42720ede8f64c3b5b69a5baa1.jpg](/images/library/da6548cb96f86af5e20eee09db14dbeb5786d3a42720ede8f64c3b5b69a5baa1.jpg) +* Author: John Donner +* IDs: + * Google: _IIOAAAACAAJ + * ISBN: 9781581600193 + * Amazon: 1581600194 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1ajgkF1XEVhOhmoIvTOQXEqj6M3BeVAWX) (256.34 KB) + +## Description
+

Here John Donner takes you back to a time when there were fewer restrictions on fireworks, including the classics such as globe torpedoes and cracker balls. He also describes the materials needed to safely construct and handle impact firecrackers. For academic study only.

+

About the Author

+

John Donner, who has been honing his skills as a pyrotechnist for more than 30 years, preserves for all time the now all-but-outlawed techniques that makers of traditional fireworks have used and Americans have enjoyed for generations.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/daa968754b87d428691fbd9166f863c85e40a46d4f077bc033ad24d1a9729eb6.md b/src/content/library/ebooks/daa968754b87d428691fbd9166f863c85e40a46d4f077bc033ad24d1a9729eb6.md new file mode 100644 index 0000000..a41cf8d --- /dev/null +++ b/src/content/library/ebooks/daa968754b87d428691fbd9166f863c85e40a46d4f077bc033ad24d1a9729eb6.md @@ -0,0 +1,21 @@ +--- +title: "Artificial Fireworks: Improved to the Modern Practice, From the Minutest to the Highest Branches" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![daa968754b87d428691fbd9166f863c85e40a46d4f077bc033ad24d1a9729eb6.jpg](/images/library/daa968754b87d428691fbd9166f863c85e40a46d4f077bc033ad24d1a9729eb6.jpg) +* Author: Robert Jones +* IDs: + * Amazon: 1436781884 + * Google: 3odTEAAAQBAJ + * ISBN: 9781436781886 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1fsyYPW2EEOTpuufcLnj-QobPNyXok8o3) (6.99 MB) + +## Description
+

Artificial Fireworks: Improved To The Modern Practice, From The Minutest To The Highest Branches (1901) is a book written by Robert Jones. It is a comprehensive guide to creating and improving artificial fireworks, covering everything from the smallest details to the most advanced techniques. The book provides detailed instructions on how to create a wide range of fireworks, including rockets, shells, and fountains, as well as how to design and build the necessary equipment. It also includes information on the chemistry and physics of fireworks, as well as safety precautions that should be taken when handling them. Published in 1901, Artificial Fireworks is a valuable resource for anyone interested in the history and practice of fireworks making.This scarce antiquarian book is a facsimile reprint of the old original and may contain some imperfections such as library marks and notations. Because we believe this work is culturally important, we have made it available as part of our commitment for protecting, preserving, and promoting the world's literature in affordable, high quality, modern editions, that are true to their original work.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/dab91fdc0f07687e66dfebd70a1a6dcfa2b572216d4f90f553102a3d89819f5d.md b/src/content/library/ebooks/dab91fdc0f07687e66dfebd70a1a6dcfa2b572216d4f90f553102a3d89819f5d.md new file mode 100644 index 0000000..53e0a52 --- /dev/null +++ b/src/content/library/ebooks/dab91fdc0f07687e66dfebd70a1a6dcfa2b572216d4f90f553102a3d89819f5d.md @@ -0,0 +1,14 @@ +--- +title: "Traditional Cylinder Shell Construction (Pyrotechnica IX)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![dab91fdc0f07687e66dfebd70a1a6dcfa2b572216d4f90f553102a3d89819f5d.jpg](/images/library/dab91fdc0f07687e66dfebd70a1a6dcfa2b572216d4f90f553102a3d89819f5d.jpg) +* Author: A. Fulcanelli +* View + +* [Download](https://drive.google.com/uc?export=download&id=1lsyPVtjBhCyBlAgT9S1fyJpRBRtcpYZF) (2.08 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/dce7123fda13fee59227c0ef1f7c316ac9a19cef300b024c3448c052440f4d2c.md b/src/content/library/ebooks/dce7123fda13fee59227c0ef1f7c316ac9a19cef300b024c3448c052440f4d2c.md new file mode 100644 index 0000000..09794db --- /dev/null +++ b/src/content/library/ebooks/dce7123fda13fee59227c0ef1f7c316ac9a19cef300b024c3448c052440f4d2c.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 9" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![dce7123fda13fee59227c0ef1f7c316ac9a19cef300b024c3448c052440f4d2c.jpg](/images/library/dce7123fda13fee59227c0ef1f7c316ac9a19cef300b024c3448c052440f4d2c.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=1kmbXLwMQ_isBXQUGa950VHWIRsrEMkeM) (196.8 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/de30a1f9b417dc5b75e51a586c020a8ec81b150400a11945204dd8a79e61dae0.md b/src/content/library/ebooks/de30a1f9b417dc5b75e51a586c020a8ec81b150400a11945204dd8a79e61dae0.md new file mode 100644 index 0000000..453322d --- /dev/null +++ b/src/content/library/ebooks/de30a1f9b417dc5b75e51a586c020a8ec81b150400a11945204dd8a79e61dae0.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 13, Summer 2001" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![de30a1f9b417dc5b75e51a586c020a8ec81b150400a11945204dd8a79e61dae0.jpg](/images/library/de30a1f9b417dc5b75e51a586c020a8ec81b150400a11945204dd8a79e61dae0.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1PNW1hRNJiQWdx7mPEO3PermVppLupbF3) (5.01 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/de60cb2b370f1f9c4262dabf1cc76bca90b2ca1d9e55e846ac2afd01be4403d1.md b/src/content/library/ebooks/de60cb2b370f1f9c4262dabf1cc76bca90b2ca1d9e55e846ac2afd01be4403d1.md new file mode 100644 index 0000000..7cc44bc --- /dev/null +++ b/src/content/library/ebooks/de60cb2b370f1f9c4262dabf1cc76bca90b2ca1d9e55e846ac2afd01be4403d1.md @@ -0,0 +1,21 @@ +--- +title: "Firework Displays: Explosive Entertainment : A Guide to Getting the Most From Your Firework Display for Designers, Firers and Event Organisers" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![de60cb2b370f1f9c4262dabf1cc76bca90b2ca1d9e55e846ac2afd01be4403d1.jpg](/images/library/de60cb2b370f1f9c4262dabf1cc76bca90b2ca1d9e55e846ac2afd01be4403d1.jpg) +* Author: Tom Smith +* IDs: + * ISBN: 9780820600901 + * Google: AhyDZwEACAAJ + * Amazon: 0820600644 +* View + +* [Download]() (7.34 MB) + +## Description
+

HARDCOVER WITH FULL COLOR PICTURES - Contents - This new book, with over 180 illustrations and over 50 tables of data, is designed for firework display firers, designers and organisers of outdoor events. From the enthusiastic amateur firer who wants to get the most from the legally available fireworks, all the way up to the seasoned professional, this book will benefit those needing more information about the ways professionals plan and use fireworks to the greatest effect. - Dr. Smith's book covers the areas of: - Ancient and modern history of firework displays - Types of fireworks - Firework effects - Types of displays most commonly used today - Newly created diagrams of firework types and effects, from both an aesthetic and safety point of view. - Specific sections on: - Display safety - Risk assessment - Fallout issues - Planning and rigging of the display site - Research on mortar rack safety - Display design - Choosing the appropriate fireworks - Colour theory - Electric firing - Synchronisation of fireworks to music - Design philosophies - Legal issues - International standards - Environmental effects of fireworks - Case studies of displays, large and small - Future developments in fireworks and displays - What happens when things do not go to plan - Dr. Tom Smith, a well-known and influential figure with over 20 years experience in the firework industry, has created an essential guide to the exciting world of fireworks and firework displays. He has been a consultant to the Athens Olympics, the Melbourne Commonwealth Games, the London Millennium and New Year's Eve displays. - Other contributors include: - Darryl Fleming - Kimbolton Fireworks - Chris Pearce and Andy Wiggins - Jubilee Fireworks - Rodney Clarke - FireOne - Martin Smith - Coordinator of the largest November 5th celebrations in the UK - Jim Donald - London New Year's Eve displays - Andrew Walsh London New Year's Eve displays November 5th celebrations in the UK - Murray Torrible - Precision Broking, insuring the world's largest display companies

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/def5cac0cafef92b389689382a15fff45919055ebf4903f2e473d9f71b3a713c.md b/src/content/library/ebooks/def5cac0cafef92b389689382a15fff45919055ebf4903f2e473d9f71b3a713c.md new file mode 100644 index 0000000..37bf1cf --- /dev/null +++ b/src/content/library/ebooks/def5cac0cafef92b389689382a15fff45919055ebf4903f2e473d9f71b3a713c.md @@ -0,0 +1,18 @@ +--- +title: "Toxicology and Carcinogenesis Studies of Sodium Chlorate" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![def5cac0cafef92b389689382a15fff45919055ebf4903f2e473d9f71b3a713c.jpg](/images/library/def5cac0cafef92b389689382a15fff45919055ebf4903f2e473d9f71b3a713c.jpg) +* Author: National Toxicology Program +* View + +* [Download](https://drive.google.com/uc?export=download&id=1xEKP7dErfxPznG87DsxC7cmeYoytqvtf) (10.13 MB) + +## Description
+

Technical Report

+

TR-517 Toxicology and Carcinogenesis Studies of Sodium Chlorate (CAS No. 7775-09-9) in F344/N Rats and B6C3F1Mice (Drinking Water Studies)

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/df482a67bf88027b76ec4f2ad82627c14ceda8997173949731345646e9c8a1c6.md b/src/content/library/ebooks/df482a67bf88027b76ec4f2ad82627c14ceda8997173949731345646e9c8a1c6.md new file mode 100644 index 0000000..183d1c1 --- /dev/null +++ b/src/content/library/ebooks/df482a67bf88027b76ec4f2ad82627c14ceda8997173949731345646e9c8a1c6.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 23, Summer 2006" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![df482a67bf88027b76ec4f2ad82627c14ceda8997173949731345646e9c8a1c6.jpg](/images/library/df482a67bf88027b76ec4f2ad82627c14ceda8997173949731345646e9c8a1c6.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1QSzrrzT2Fn3xX2waGsfiIWwThdOaPz0s) (8.24 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/df947731af6d42be5004c446e58ca95c3a6f2e5854da6668f0719b648780d001.md b/src/content/library/ebooks/df947731af6d42be5004c446e58ca95c3a6f2e5854da6668f0719b648780d001.md new file mode 100644 index 0000000..8d51a33 --- /dev/null +++ b/src/content/library/ebooks/df947731af6d42be5004c446e58ca95c3a6f2e5854da6668f0719b648780d001.md @@ -0,0 +1,16 @@ +--- +title: "The Chemistry of Powder and Explosives, Complete in One Volume (OCR)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![df947731af6d42be5004c446e58ca95c3a6f2e5854da6668f0719b648780d001.jpg](/images/library/df947731af6d42be5004c446e58ca95c3a6f2e5854da6668f0719b648780d001.jpg) +* Author: Tenney L. Davis +* IDs: + * Amazon: B0015MSALS +* View + +* [Download](https://drive.google.com/uc?export=download&id=1MOXVOvflVhBCb-A9nvE-64qEX2ngQI8Q) (5.78 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/dfcdda977f3e4173c282bfb225666881b60de367aa6a39fd76faba80c5de40f8.md b/src/content/library/ebooks/dfcdda977f3e4173c282bfb225666881b60de367aa6a39fd76faba80c5de40f8.md new file mode 100644 index 0000000..91833b4 --- /dev/null +++ b/src/content/library/ebooks/dfcdda977f3e4173c282bfb225666881b60de367aa6a39fd76faba80c5de40f8.md @@ -0,0 +1,21 @@ +--- +title: "Chemistry of Pyrotechnics: Basic Principles and Theory, Third Edition" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![dfcdda977f3e4173c282bfb225666881b60de367aa6a39fd76faba80c5de40f8.jpg](/images/library/dfcdda977f3e4173c282bfb225666881b60de367aa6a39fd76faba80c5de40f8.jpg) +* Authors: John A. Conkling, Christopher J. Mocella +* IDs: + * ISBN: 9781138079922 + * Amazon: 1138079928 + * Google: q_GguQEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Ku8g2bGTS010EPNBRpzf5-nLa3eKbI40) (8.32 MB) + +## Description
+

This book provides chemists with technical insight on pyrotechnics and explosives. It emphasizes basic chemical principles and practical, hands-on knowledge in the preparation of energetic materials. It examines the interactions between and adaptations of pyrotechnics to changing technology in areas such as obscuration science and low-signature flame emission. The updated third edition discusses chemical and pyrotechnic principles, components of high-energy materials, elements of ignition, propagation, and sensitivity. It offers heat compositions, including ignition mixes, delays, thermites, and propellants and investigates the production of smoke and sound as well as light and color.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/e070c9509bd7e8d0f1ddc0f76dd92d578817cf6b328d02010622d224d8b01f45.md b/src/content/library/ebooks/e070c9509bd7e8d0f1ddc0f76dd92d578817cf6b328d02010622d224d8b01f45.md new file mode 100644 index 0000000..14d403f --- /dev/null +++ b/src/content/library/ebooks/e070c9509bd7e8d0f1ddc0f76dd92d578817cf6b328d02010622d224d8b01f45.md @@ -0,0 +1,19 @@ +--- +title: "Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 7 (2003 and 2004)" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![e070c9509bd7e8d0f1ddc0f76dd92d578817cf6b328d02010622d224d8b01f45.jpg](/images/library/e070c9509bd7e8d0f1ddc0f76dd92d578817cf6b328d02010622d224d8b01f45.jpg) +* Author: K.L. Kosanke, Bonnie J. Kosanke +* View + +* [Download](https://drive.google.com/uc?export=download&id=11zRNffze0moadH2BOYf077I18EqwNPeJ) (8.97 MB) + +## Description
+

Selected Pyrotechnic Publications of K. L. and B. J. Kosanke

+

Part 7 (2003 and 2004)

+

Pyrotechnic Literature Series No. 11

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/e2e5708e6f21d93c0995ff813c1566294a222f2ff8133826cb914993415557e9.md b/src/content/library/ebooks/e2e5708e6f21d93c0995ff813c1566294a222f2ff8133826cb914993415557e9.md new file mode 100644 index 0000000..a1c728c --- /dev/null +++ b/src/content/library/ebooks/e2e5708e6f21d93c0995ff813c1566294a222f2ff8133826cb914993415557e9.md @@ -0,0 +1,13 @@ +--- +title: "Winokur's 40 Glitter Comps" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![e2e5708e6f21d93c0995ff813c1566294a222f2ff8133826cb914993415557e9.jpg](/images/library/e2e5708e6f21d93c0995ff813c1566294a222f2ff8133826cb914993415557e9.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1NRtSGwtxP5Ql2D8LubSZCtadBU3j8ndm) (66.94 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/e33e011c7f328a5a3d80751464fe24d16d0ec653f8486838e23b84198f4aeb9c.md b/src/content/library/ebooks/e33e011c7f328a5a3d80751464fe24d16d0ec653f8486838e23b84198f4aeb9c.md new file mode 100644 index 0000000..99983a1 --- /dev/null +++ b/src/content/library/ebooks/e33e011c7f328a5a3d80751464fe24d16d0ec653f8486838e23b84198f4aeb9c.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 8, Winter 1998" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![e33e011c7f328a5a3d80751464fe24d16d0ec653f8486838e23b84198f4aeb9c.jpg](/images/library/e33e011c7f328a5a3d80751464fe24d16d0ec653f8486838e23b84198f4aeb9c.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1aJvDwFuC86EwnLExjnFbbcOlJRgy6JDy) (3.25 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/e46d8121571e916ecfcfdc4f78f4baa48d43de70fa06b29664562dfe5e8769d4.md b/src/content/library/ebooks/e46d8121571e916ecfcfdc4f78f4baa48d43de70fa06b29664562dfe5e8769d4.md new file mode 100644 index 0000000..643c6dc --- /dev/null +++ b/src/content/library/ebooks/e46d8121571e916ecfcfdc4f78f4baa48d43de70fa06b29664562dfe5e8769d4.md @@ -0,0 +1,17 @@ +--- +title: "Selected Pyrotechnic Publications of Dr. Takeo Shimizu Part 1" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![e46d8121571e916ecfcfdc4f78f4baa48d43de70fa06b29664562dfe5e8769d4.jpg](/images/library/e46d8121571e916ecfcfdc4f78f4baa48d43de70fa06b29664562dfe5e8769d4.jpg) +* Author: Dr. Takeo Shimizu +* View + +* [Download](https://drive.google.com/uc?export=download&id=1P_-GbrRhCCdH_nF07xdfxxCIFP4ELBTB) (4.93 MB) + +## Description
+

Pyrotechnic Literature Series No. 4

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/e596ffdcf278a6af82b8a5303edf348aa25a635b5467028fa4ed5a02bb0893cb.md b/src/content/library/ebooks/e596ffdcf278a6af82b8a5303edf348aa25a635b5467028fa4ed5a02bb0893cb.md new file mode 100644 index 0000000..84a0d38 --- /dev/null +++ b/src/content/library/ebooks/e596ffdcf278a6af82b8a5303edf348aa25a635b5467028fa4ed5a02bb0893cb.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue Number 5, Summer 1997" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![e596ffdcf278a6af82b8a5303edf348aa25a635b5467028fa4ed5a02bb0893cb.jpg](/images/library/e596ffdcf278a6af82b8a5303edf348aa25a635b5467028fa4ed5a02bb0893cb.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Los8fY7bHZ16Fs0ZgVWznhe9rTvZ58_W) (1.22 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/ec04e01240950db25e0df4b6155be6c240c93576c3c125521bee5b9374081944.md b/src/content/library/ebooks/ec04e01240950db25e0df4b6155be6c240c93576c3c125521bee5b9374081944.md new file mode 100644 index 0000000..1536b43 --- /dev/null +++ b/src/content/library/ebooks/ec04e01240950db25e0df4b6155be6c240c93576c3c125521bee5b9374081944.md @@ -0,0 +1,28 @@ +--- +title: "Dictionary and Manual of Fireworks: Weingart" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![ec04e01240950db25e0df4b6155be6c240c93576c3c125521bee5b9374081944.jpg](/images/library/ec04e01240950db25e0df4b6155be6c240c93576c3c125521bee5b9374081944.jpg) +* Authors: George A. Weingart, George Washington Weingart +* IDs: + * Google: JlkSHQAACAAJ + * ISBN: 9780929931128 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1GEr1DpgXBn-MspLx7gJS0lGlbzRW8-Rz) (20.48 MB) + +## Description
+

Dictionary and manual of pyrotechny.

+

 

+

Covering the authors work and experiments from 1890 to 1935.

+

 

+

A drop of ink, t'is said made millions think:

+

 

+

A spark of fireworks has oft' made thousands blink.

+

 

+

 

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/ee164d3fb3383ac119c592ab0b47105eed13c10b9f51f8cdebbe1261936c9bb2.md b/src/content/library/ebooks/ee164d3fb3383ac119c592ab0b47105eed13c10b9f51f8cdebbe1261936c9bb2.md new file mode 100644 index 0000000..2a4b897 --- /dev/null +++ b/src/content/library/ebooks/ee164d3fb3383ac119c592ab0b47105eed13c10b9f51f8cdebbe1261936c9bb2.md @@ -0,0 +1,14 @@ +--- +title: "The Best Of The Case Former" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![ee164d3fb3383ac119c592ab0b47105eed13c10b9f51f8cdebbe1261936c9bb2.jpg](/images/library/ee164d3fb3383ac119c592ab0b47105eed13c10b9f51f8cdebbe1261936c9bb2.jpg) +* Author: IOOJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1JeiDC5CKhDkh7_aj7rr2zuig0drGQOd7) (3.61 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/eea72c624a8c346a83a5c87ae17e9f6ecd1be4474b1968dc395ea0d8a52c60ec.md b/src/content/library/ebooks/eea72c624a8c346a83a5c87ae17e9f6ecd1be4474b1968dc395ea0d8a52c60ec.md new file mode 100644 index 0000000..8e39fc4 --- /dev/null +++ b/src/content/library/ebooks/eea72c624a8c346a83a5c87ae17e9f6ecd1be4474b1968dc395ea0d8a52c60ec.md @@ -0,0 +1,14 @@ +--- +title: "Winokur's 40 Glitter Compositions" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![eea72c624a8c346a83a5c87ae17e9f6ecd1be4474b1968dc395ea0d8a52c60ec.jpg](/images/library/eea72c624a8c346a83a5c87ae17e9f6ecd1be4474b1968dc395ea0d8a52c60ec.jpg) +* Author: Winokur +* View + +* [Download](https://drive.google.com/uc?export=download&id=1BGoO5VFeuPwSrwakiidUlShChcEwm-09) (66.94 KB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/efed500937ce076e603894bca1cb140ed379c88e26e3624e7e5bf68710b9fca4.md b/src/content/library/ebooks/efed500937ce076e603894bca1cb140ed379c88e26e3624e7e5bf68710b9fca4.md new file mode 100644 index 0000000..91726e2 --- /dev/null +++ b/src/content/library/ebooks/efed500937ce076e603894bca1cb140ed379c88e26e3624e7e5bf68710b9fca4.md @@ -0,0 +1,13 @@ +--- +title: "The Wizards Great Book of Absoundite and Forbidden Pyrotechnic Knowledge" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![efed500937ce076e603894bca1cb140ed379c88e26e3624e7e5bf68710b9fca4.jpg](/images/library/efed500937ce076e603894bca1cb140ed379c88e26e3624e7e5bf68710b9fca4.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1QBp9DlpoA2L_BYLdJpnmHuDAKFtfdnJi) (1.1 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/f4f4a0174da6e0acefdf93fa6097917d211afed123c73ded1967969ed8c30daa.md b/src/content/library/ebooks/f4f4a0174da6e0acefdf93fa6097917d211afed123c73ded1967969ed8c30daa.md new file mode 100644 index 0000000..6b59d58 --- /dev/null +++ b/src/content/library/ebooks/f4f4a0174da6e0acefdf93fa6097917d211afed123c73ded1967969ed8c30daa.md @@ -0,0 +1,20 @@ +--- +title: "The Anarchist Arsenal: Improvised Incendiary and Explosives Techniques" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![f4f4a0174da6e0acefdf93fa6097917d211afed123c73ded1967969ed8c30daa.jpg](/images/library/f4f4a0174da6e0acefdf93fa6097917d211afed123c73ded1967969ed8c30daa.jpg) +* Author: David Harber +* IDs: + * ISBN: 9780873645805 + * Google: V_mwPQAACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=10MXIo6JL7KRHYvpp36QKfHd81sR5ccNs) (12.65 MB) + +## Description
+

Written by a former EOD specialist, this book fills in the gaps left by other explosives manuals, including many devices and techniques that have never appeared in print. Detailed formulas, diagrams and instructions for Semtex, C-4, land mines, car bombs, mollies, FAEs and more. For information purposes only.

+ +
[Back to library](/library/) diff --git a/src/content/library/ebooks/f550aa8c06edca0df91fa725fe74369bb7f68d3225cb25d6a8751b20d110f59d.md b/src/content/library/ebooks/f550aa8c06edca0df91fa725fe74369bb7f68d3225cb25d6a8751b20d110f59d.md new file mode 100644 index 0000000..feed324 --- /dev/null +++ b/src/content/library/ebooks/f550aa8c06edca0df91fa725fe74369bb7f68d3225cb25d6a8751b20d110f59d.md @@ -0,0 +1,16 @@ +--- +title: "Pirotecnia Moderna" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![f550aa8c06edca0df91fa725fe74369bb7f68d3225cb25d6a8751b20d110f59d.jpg](/images/library/f550aa8c06edca0df91fa725fe74369bb7f68d3225cb25d6a8751b20d110f59d.jpg) +* Author: F. Di Maio +* IDs: + * Google: ZCcDMwEACAAJ +* View + +* [Download](https://drive.google.com/uc?export=download&id=1gPXR_9JcQc6od4MD5PScAccG8dxXh68J) (5.96 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/fae7327aaf8d09f543380a63e1a3e693b2a9c42c8e63e1101206db7d2d2fa614.md b/src/content/library/ebooks/fae7327aaf8d09f543380a63e1a3e693b2a9c42c8e63e1101206db7d2d2fa614.md new file mode 100644 index 0000000..6960e8c --- /dev/null +++ b/src/content/library/ebooks/fae7327aaf8d09f543380a63e1a3e693b2a9c42c8e63e1101206db7d2d2fa614.md @@ -0,0 +1,13 @@ +--- +title: "Journal of Pyrotechnics Issue 15, Summer 2002" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![fae7327aaf8d09f543380a63e1a3e693b2a9c42c8e63e1101206db7d2d2fa614.jpg](/images/library/fae7327aaf8d09f543380a63e1a3e693b2a9c42c8e63e1101206db7d2d2fa614.jpg) +* View + +* [Download](https://drive.google.com/uc?export=download&id=1Xoiz57Cy3a8VW8m52QAYWHlhw2PQ-Zdk) (7.24 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/fc9010f495907369aef50d1b13ddd9bca75f44655251f572a8970adfc3873c96.md b/src/content/library/ebooks/fc9010f495907369aef50d1b13ddd9bca75f44655251f572a8970adfc3873c96.md new file mode 100644 index 0000000..e17b9e0 --- /dev/null +++ b/src/content/library/ebooks/fc9010f495907369aef50d1b13ddd9bca75f44655251f572a8970adfc3873c96.md @@ -0,0 +1,14 @@ +--- +title: "Art Des Feux D'artifice" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![fc9010f495907369aef50d1b13ddd9bca75f44655251f572a8970adfc3873c96.jpg](/images/library/fc9010f495907369aef50d1b13ddd9bca75f44655251f572a8970adfc3873c96.jpg) +* Author: M.L.E Audot +* View + +* [Download](https://drive.google.com/uc?export=download&id=1o9VIXqoJe0qNmP2KwJNvzh3JHHt3u8Iv) (10.53 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/fe54d2a6eea9763f4dfa12449758c83056d6d00c04288d7f01d21d4717d9b858.md b/src/content/library/ebooks/fe54d2a6eea9763f4dfa12449758c83056d6d00c04288d7f01d21d4717d9b858.md new file mode 100644 index 0000000..90c678c --- /dev/null +++ b/src/content/library/ebooks/fe54d2a6eea9763f4dfa12449758c83056d6d00c04288d7f01d21d4717d9b858.md @@ -0,0 +1,14 @@ +--- +title: "pyrotechnic magazine issue 6 December 2015" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![fe54d2a6eea9763f4dfa12449758c83056d6d00c04288d7f01d21d4717d9b858.jpg](/images/library/fe54d2a6eea9763f4dfa12449758c83056d6d00c04288d7f01d21d4717d9b858.jpg) +* Author: Mayes Hub +* View + +* [Download](https://drive.google.com/uc?export=download&id=1xABGltUcTN_hrpTo7Ne7tXXzP6cWs5T_) (178.65 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/fe7c7e1d8dbb4ba850ab005e40721eefb2fa05acda0094bfe4b44e9376d7fb48.md b/src/content/library/ebooks/fe7c7e1d8dbb4ba850ab005e40721eefb2fa05acda0094bfe4b44e9376d7fb48.md new file mode 100644 index 0000000..682b389 --- /dev/null +++ b/src/content/library/ebooks/fe7c7e1d8dbb4ba850ab005e40721eefb2fa05acda0094bfe4b44e9376d7fb48.md @@ -0,0 +1,16 @@ +--- +title: "Lecture Notes for Pyrotechnic Chemistry - Pyrotechnic Reference Series No. 2" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +![fe7c7e1d8dbb4ba850ab005e40721eefb2fa05acda0094bfe4b44e9376d7fb48.jpg](/images/library/fe7c7e1d8dbb4ba850ab005e40721eefb2fa05acda0094bfe4b44e9376d7fb48.jpg) +* Author: Upped by Alexires +* IDs: + * ISBN: 1889526169 +* View + +* [Download](https://drive.google.com/uc?export=download&id=1falAWfzlK0FbVMn3am86kz-IIMUWw3A3) (19.91 MB) + +
[Back to library](/library/) diff --git a/src/content/library/ebooks/sitemap.md b/src/content/library/ebooks/sitemap.md new file mode 100644 index 0000000..404a42b --- /dev/null +++ b/src/content/library/ebooks/sitemap.md @@ -0,0 +1,188 @@ +# E-books library sitemap + +* [Skylighter.com Turbo Pyro 10 fireworks you can make this weekend](/library/ebooks/2183d57094fb91bdb1f4f37448e3a394491e5662c6430f58f2e0ed8bd31bdb2a) +* [Pyrotechnics Cook Book](/library/ebooks/10733f7f723ff8ceaefb86db9cf09781a30a6b3044d3a24a15cb8d5b14331e69) +* [Make Your Own Fireworks](/library/ebooks/2b457d5bb97aedf4a4323cf0e7b94501d831d5e17a47d8c575d0054a4320fa0a) +* [CannonFuse Collection of Pyrotechnic Compositions](/library/ebooks/7b41fa501adc3bd492062003040dbaafef6b5b112228479051b906e7339ad662) +* [The Wizards Great Book of Absoundite and Forbidden Pyrotechnic Knowledge](/library/ebooks/efed500937ce076e603894bca1cb140ed379c88e26e3624e7e5bf68710b9fca4) +* [Pyrotechnics: The History and Art of Firework Making](/library/ebooks/734db357464b78ef87bac9d5252b418323524abe15da1b6e1830cbb7363f37b8) +* [Chemistry of Pyrotechnics: Basic Principles and Theory, Third Edition](/library/ebooks/dfcdda977f3e4173c282bfb225666881b60de367aa6a39fd76faba80c5de40f8) +* [Safety of Reactive Chemicals and Pyrotechnics](/library/ebooks/00a4bc5c221eb55409abcff63c6e970fb558709bd54479bcf176960af58a695c) +* [Introduction to Pyrotechnics](/library/ebooks/a032c2350ffcebdae08b639ea5804539166bbdda8beebbae5e3e6907f6297a0b) +* [High Energy Materials: Propellants, Explosives and Pyrotechnics](/library/ebooks/be586c1d080ece74b78af6733a95f7d8498d4c0c345dacd066806ed0ab992aea) +* [Pyrotechnics, Second Edition](/library/ebooks/69278e2a6f200cef63b509fcd221f97b77d675a0ce89778cbbc488dcdbf20087) +* [Wouter's Practical Pyrotechnics](/library/ebooks/259dfa0a0ce5931041ed1a28dae0578bfdeb8c461ad165c9a1d0a3e37151a2de) +* [Chemistry of Pyrotechnics: Basic Principles and Theory](/library/ebooks/54cb8e492154ddfbb96a132fed915c0e1266dfd8a7312d67a8cee48d92062fb6) +* [Military and Civilian Pyrotechnics](/library/ebooks/5bc123ca47207be94620cffce6fdcb3f96929d1d4d06f0954720a2ed7865bd25) +* [Pyrotechnic Compositions](/library/ebooks/24360bce1db53b7ca653cc2eb6d3dd0060ea76f25d595a7f7b0479730195467d) +* [Chemistry of Pyrotechnics: Basic Principles and Theory, Second Edition](/library/ebooks/5298c322a1e188fa0d680f26642f3557f710dbdd4760d14d9b9e1f828c495c4c) +* [The Complete Book of Flash Powder](/library/ebooks/9d714b2c077831acb796e0a79307e187f72a4ceb30f78f8ec5b495fdbef8ebcf) +* [A Professional's Guide To Pyrotechnics: Understanding and Making Exploding Fireworks](/library/ebooks/25558ef56e6e17c9c16807e5ec100428ad498ff60902fc80268d22d99671727b) +* [Amateur Pyrotechnics](/library/ebooks/aaa0b609f4fdbeb1374fc7767ad3efb126fd1d8a70c2ebf959f0e53d93a2164a) +* [The Do-It-Yourself Gunpowder Cookbook](/library/ebooks/b378855004603fbec8db6d5fdd275b6ce2418677a8c2b84757e4e4ebb6047e91) +* [Dictionary of Pyrotechnics](/library/ebooks/45cce9e1baad45891ccb73c5a0dbe232c0fce52b9dcefa4d87eb5010dbef5298) +* [Lecture Notes for Pyrotechnic Chemistry - Pyrotechnic Reference Series No. 2](/library/ebooks/fe7c7e1d8dbb4ba850ab005e40721eefb2fa05acda0094bfe4b44e9376d7fb48) +* [A manual for pyrotechnic design, development and qualification](/library/ebooks/9550a5c7371d45876f6d932068dad57ecb55679c7c9b046508c8c2a012a3164c) +* [Glitter: Chemistry and Techniques (Revised edition)](/library/ebooks/597e756a6ec32a335c6dfae45dbf35400c98d22db1a468808ad98646d84ab64c) +* [Manual of Explosives, Military Pyrotechnics, and Chemical Warfare Agents : Composition, Properties, Uses](/library/ebooks/aa7e4c363a6a3f8b88fca4182e357599c1549a999eda07e208bbb9551f6d9d02) +* [Military Pyrotechnics: Principles and Practices](/library/ebooks/069dd3eeab5d933d2d550aac40044832e36a0666f1e579aed6743ccd4d18dfea) +* [Pyrotechny, A Practical Manual for Manufactures of Fireworks, Signals, Flares & Pyrotechnic Displays](/library/ebooks/36c5cd110c5431931ab04c4e296c52576a9444e8192d7c24eeefb3c3f4b8b54b) +* [The Chemistry of Fireworks](/library/ebooks/7e0c0bad3259ace8cc1fafa8d1870733f50e25921818d8e78dfef0c652ce479b) +* [Pyrotechnics, Scientific America July 1990](/library/ebooks/9c4b22ef66ea51b0ce5871d0fa52db9a07ccdadceec8f3764eb6ae77f1c60f7f) +* [The Best of AFN II](/library/ebooks/448067c36a81b4f00127aac52e498b03b6cbc3303376d6f8f91ef297b34a083d) +* [The Best of AFN III](/library/ebooks/13bf4ff52c0889f35096cc385ac028a95efdffd20eb9d8b2b2e9bbe286d8cc4a) +* [The Best of AFN V](/library/ebooks/8d162a6ac3f60f4477f21ae1753416e224a1e1cfda3b6ba877b1dc78f8ddd890) +* [The Best of AFN IV](/library/ebooks/879d5063719168ab5732130f6ea4a96cfbeae5f2892c733a91949df78bce20f2) +* [The Illustrated Dictionary of Pyrotechnics](/library/ebooks/b11c8790db3cd3fb54c55efb68fce4b9ed1ce6b104f8660e2d826c57ccc445b0) +* [Winokur's 40 Glitter Compositions](/library/ebooks/eea72c624a8c346a83a5c87ae17e9f6ecd1be4474b1968dc395ea0d8a52c60ec) +* [Professional Homemade Cherry Bombs & Other Fireworks](/library/ebooks/b87d9d7e47128128b7c82cb1b97d19c8e166bd49e94abba530307931d3138dba) +* [Westech fireworks manual](/library/ebooks/02a1d5a44e6732d71f672d881ad8f31ffd4776a9804cf42caa3e83d749b61d3c) +* [The Chemistry of Fireworks (Reprinted 2002)](/library/ebooks/3758938dcdaad60c9a94950746be0e5b9165419d49dd8b18d888890d6ac84e49) +* [Fireworks & Explosives Like Granddad Used to Make](/library/ebooks/b3d62262f01a5c4550088409897fa05103a4302e9ccdaf79eda718d6ce7865ba) +* [Practical guide to chlorate and perchlorate electrolysis](/library/ebooks/2f80c8ff1659f92148018a9ad7b87ecb459e39058f349aab0e5687cb1f468feb) +* [A complete system of pyrotechny or the art of making fire-works (endless amusement pamplet)](/library/ebooks/02dee08a18fb60e3c9cd03603a19c59b2b2fcf0ee65442de05a34e53d06bb58f) +* [Se per la fabbricazione e vendita dei preparati pirotecnici (fuochi artificiali)](/library/ebooks/507ec6b691074d4747efd148895d527404d588d72e22d7131e443e4c67a8746a) +* [The evolution and art significance of pyrotechnics (Thesis)](/library/ebooks/bd85a24c904bbf54c45587d85813424034cb7839ce17f91f09a4f694888d9dc0) +* [Gunpowder: Alchemy, Bombards, and Pyrotechnics: The History of the Explosive That Changed the World](/library/ebooks/96ed2dc949ea2a71cf8255870d823e4ad7fdebd2aac0f0c7b01915ae51aa42bb) +* [fireworks & pyro projects](/library/ebooks/680e1da71ad48debd454d3efc2aba1ade8b290d29b82228b3353ce4e5c2a7ce0) +* [The Chemistry of Powder and Explosives](/library/ebooks/162f96cbe941be44437945b35bb8fa15510b09599c08d5bb484fc66c9d2a1285) +* [Gunpowder (Encyclopaedia Britannica 9th Edition 1891, vol 14)](/library/ebooks/47e7aae15b57ac095fc7ea9ee49bcd5f55e7d5e47e3eb974e89b148a8fa4b57c) +* [Incendiaries Advanced Improvised Explosives](/library/ebooks/1e7e26920eb7ae98c500120fd150c6b6d0d1168c538c7aed5161d66ecde0b8ac) +* [Health Implications of Perchlorate Ingestion](/library/ebooks/9dcef699ef190a77e2b8ed0754d2de26e4f922daa962fa9e34be50ec7f603537) +* [Perchlorate: Environmental Occurrence, Interactions and Treatment](/library/ebooks/c454139b14d4f9b0df765a278ab4919b9f8578c758393ce8812575b911fc1735) +* [The Chlorates and Perchlorates](/library/ebooks/0039279fc5575d18f08ee60553ea5045cdcee45de6fb807d0ea241731049e8ff) +* [Perchlorates: Their Properties, Manufacture and Uses. Edited by J.C. Schumacher](/library/ebooks/2078453599d64b0f5276022fd0665f1af6b6d58b1cd6b146c3a023c3a01a5f24) +* [Toxicology and Carcinogenesis Studies of Sodium Chlorate](/library/ebooks/def5cac0cafef92b389689382a15fff45919055ebf4903f2e473d9f71b3a713c) +* [pyrotechnic magazine issue 5](/library/ebooks/aaf385f7d0d061b599ee40c11c5a46581d118c7f6bb1c573cbefc53e3cd379d8) +* [pyrotechnic magazine issue 4](/library/ebooks/30d31914a6250ac5362935674cd589de541dff4b18058b5a3316864a6262ad3f) +* [pyrotechnic magazine issue 2](/library/ebooks/304c63d5d98a58688ea01e02c3583009a9a86b95cb9c8495b60a13ce44e7014f) +* [pyrotechnic magazine issue 3](/library/ebooks/6d228d0421a8e8026ef0c329bd65d9ee7c85124452dc300c8716e3cacdc30e2e) +* [pyrotechnic magazine issue 8 June 2016](/library/ebooks/5cb9f772775a9169b0725500394b535a47b56e01b97b1d684b02c1498d7889ee) +* [pyrotechnic magazine issue 6 December 2015](/library/ebooks/fe54d2a6eea9763f4dfa12449758c83056d6d00c04288d7f01d21d4717d9b858) +* [pyrotechnic magazine issue 7](/library/ebooks/2e7ed97a2cc1b10e92ff6f80d4a9809e9da9bbd417f78f10e800941e11c819ce) +* [pyrotechnic magazine issue 9](/library/ebooks/dce7123fda13fee59227c0ef1f7c316ac9a19cef300b024c3448c052440f4d2c) +* [Spelen met vuur (interactive website)](/library/ebooks/9b02c465b1e7e9ddf363ec2e0581c22b1dd0d5ee3c85c862940ea07cd2574eb1) +* [Pyrotechnics](/library/ebooks/7f0c80a3422220f39e4d7a842a45b10cf208fc1bc7bc1c11bdd27e9a3d73f04b) +* [Pyromans Revenge](/library/ebooks/3131f9a950ad58a82f753e79e876f2d49884808c4cbc35640dcff4f0c32dce25) +* [A collection of pyrotechnic compositions & Practical Pyrotechnics](/library/ebooks/40861efe831f511aacaa4ac9347b3d2d558a9c0631a1865987dd9b8226a4ec76) +* [The Pyro Cookbook](/library/ebooks/7bff106227aed56e8651ae92b899c0ee07209444ef6c0e495d293b8ed95aa938) +* [Fireworks: The Art, Science, and Technique](/library/ebooks/5ec391de06120ba17073852906f876990573e40b53cefce9e58b11809f1ea2d4) +* [The Chemistry of Powder and Explosives, Complete in One Volume (OCR)](/library/ebooks/df947731af6d42be5004c446e58ca95c3a6f2e5854da6668f0719b648780d001) +* [Fireworks Principles and Practice (3rd editon)](/library/ebooks/d9c08deb6dde3f0ad2a9427f5a7262e695fe375627ff30bdf9e6876ac36437f7) +* [Military Pyrotechnics: The History of Development of Military Pyrotechnics](/library/ebooks/7c3a8eef1afd8c8499fbc34b2a5e42fdba61047d169043f6147ee42ef40371d4) +* [Illuminating pyrotechnic compositions and their specific features (Doctoral Dissertation)](/library/ebooks/1c3174a282cc479a6abcee7b8670e054b0bd53574eefa0df006c232d533c6a1b) +* [Traditional Cylinder Shell Construction (Pyrotechnica IX)](/library/ebooks/dab91fdc0f07687e66dfebd70a1a6dcfa2b572216d4f90f553102a3d89819f5d) +* [The Chemistry of Explosives](/library/ebooks/1ee324e6fc4952db6dc7006b47768bf8ed3ba26cca2639ba92c930b1528acbd2) +* [Encyclopedic Dictonary of Pyrotechnics (and Related Subjects) - Internet Edition](/library/ebooks/7d368dd99842b5b013b833df37bea34278ac7f987fc9bca8099c8657586225e1) +* [Journal of Pyrotechnics Issue Number 1, Summer 1995](/library/ebooks/6fa38c5dd859892e129d4034812ded7c3f1baf629d25abd87c4e2ce2df1efa12) +* [Journal of Pyrotechnics Issue Number 2, Winter 1995](/library/ebooks/b143a6455b2119f1ca25946a4e297137760936e003d94566826f85ebe4b1edb1) +* [Journal of Pyrotechnics Issue Number 3, Summer 1996](/library/ebooks/788e337039f59fd8a7b65f78fa569fc04ca45ac61e67542b4783e35f376d9900) +* [Journal of Pyrotechnics Issue Number 4, Winter 1996](/library/ebooks/7305c5a716eb1f8994cf5b0bb5df11e463c174fcac54b2b639dc2e21525013fc) +* [Journal of Pyrotechnics Issue Number 6, Winter 1997](/library/ebooks/70d9e25d95c10e0c00490234aded69397989cbe0de912a017fa03599bec64e2f) +* [Journal of Pyrotechnics Issue Number 7, Summer 1998](/library/ebooks/374b16ee5fe687159969c1500f5b1a29e5adf707f372be8dba23834d690dcdf3) +* [Journal of Pyrotechnics Issue 9, Summer 1999](/library/ebooks/4922c967dc4b5eb3792fe1a7246bd83c2fa9f8455f83df079b3f6619a223df75) +* [Journal of Pyrotechnics Issue 10, Winter 1999](/library/ebooks/9c15fa207d166ddbb8e8561928a4d1c44251b9ab71572933486fa02369c6a05d) +* [Journal of Pyrotechnics Issue 11, Summer 2000](/library/ebooks/b9af98aab995291afbcf17c9e13175b1306bd645f03db94347ddc55af7637c1f) +* [Journal of Pyrotechnics Issue 13, Summer 2001](/library/ebooks/de30a1f9b417dc5b75e51a586c020a8ec81b150400a11945204dd8a79e61dae0) +* [Journal of Pyrotechnics Issue 14, Winter 2001](/library/ebooks/2fdc3166758a55149d312104056b57821dfc8049b00f7a63ab083da9a99484b1) +* [Journal of Pyrotechnics Issue 15, Summer 2002](/library/ebooks/fae7327aaf8d09f543380a63e1a3e693b2a9c42c8e63e1101206db7d2d2fa614) +* [Journal of Pyrotechnics Issue 16, Winter 2002](/library/ebooks/adebc6a2976b816758bd1e8c82e8a20c43adf78d92bae05bac7f9767ea8defb9) +* [Journal of Pyrotechnics Issue 17, Summer 2003](/library/ebooks/805f06314a47a90366297285f72bd1cc43c77dda8a77bd86724b095e7011c79c) +* [Journal of Pyrotechnics Issue 18, Winter 2003](/library/ebooks/35f390bdc64540a571f200231df34a88368edc0a3db58e4a780be88bfb5bf932) +* [Journal of Pyrotechnics Issue 19, Summer 2004](/library/ebooks/17664eb4911405ad284952b858874426af4b1720bb4dc551b528c81e86cd1d74) +* [Journal of Pyrotechnics Issue 20, Winter 2004](/library/ebooks/a65aa9f0ab1ef6da8ea51bdaffca0a496597cbb7fe3db339b5210bd2d195bc53) +* [Journal of Pyrotechnics Issue 21, Summer 2005](/library/ebooks/3859402d1d8a6fb1b2f16f3b91309e103dc6750ffcd574a7986eb16b14a0f406) +* [Journal of Pyrotechnics Issue 22, Winter 2005](/library/ebooks/3f6578b910e4878fd3e3bf932a6b082520eb242a9e9432471c83ef6a86f91936) +* [Journal of Pyrotechnics Issue 23, Summer 2006](/library/ebooks/df482a67bf88027b76ec4f2ad82627c14ceda8997173949731345646e9c8a1c6) +* [Journal of Pyrotechnics Issue 24, Winter 2006](/library/ebooks/d0e1a7e8fabd11737afaeaf57e97792a4e5e61d0956f9c8bd71e55538bfc6215) +* [Journal of Pyrotechnics Issue 25, Summer 2007](/library/ebooks/45debbb625e3d7196a5745fd87084058c6305a80586e131258e778ef6cd4ff29) +* [Journal of Pyrotechnics Issue 26, Winter 2007](/library/ebooks/75afba6de581455e212b5ae2d9b2a444727778479e3a9cf7c72adc97f76e9353) +* [Journal of Pyrotechnics Issue 27, Winter 2008](/library/ebooks/36c6a67dcd5b148e3a06ce2f610edd56ef3415962c48873583db4f408785b22c) +* [Journal of Pyrotechnics Issue 28, 2009](/library/ebooks/b6ce8162bf4a27c4ef957e2b97b5a706f38c3faeefd313fbb227f8f1e94c2ea3) +* [Journal of Pyrotechnics Issue 30, 2011](/library/ebooks/668a373bfb6fe525e6755efcc939c3436dd4f1c9331b0b954a3d63700fdfb3c3) +* [Journal of Pyrotechnics Issue 31, 2012](/library/ebooks/5538b3b53842c71ab232209ff29764f3027a6e831e706c0e7fdccc42baa4c58f) +* [Journal of Pyrotechnics Issue 32, 2013](/library/ebooks/8703e09e9eb55bfaa4b9f5e9fd404c684e308718df72752c427fc947e1a159fd) +* [Journal of Pyrotechnics Issue 34, 2015](/library/ebooks/925d746b33391e5d0005675857c5dac2bc2a41125056bc1b949b6423e2e1b3c4) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 1 (1981 through 1989)](/library/ebooks/435fe5bab263822980f11ccc47c1781063a31c601bad4e3e3a59a4322ca68071) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 2 (1990 and 1992)](/library/ebooks/3e2cfeea1461a6d96e2878dffb587d83cd99f405dc926f98a4423bfa578772c1) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 3 (1993 and 1994)](/library/ebooks/017bc87d35ce27a29de90bbaf53eda31553f1cc58c05c92da3d9806dd9227909) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 4 (1995 and 1997)](/library/ebooks/790cb61af4e86c0299090f8c4b1a021a498adaa02925cfa4d4289d65efb72bae) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 5 (1998 through 2000)](/library/ebooks/9a70b2e6c6eef2c1d35c455df61c66b260e2479597e08ae677c766c96faccf4d) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 6 (2001 and 2002)](/library/ebooks/484c00fb8e9e7330df3a4db0540124d24bbedec4dfa44de00d47e4ea270b627b) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 7 (2003 and 2004)](/library/ebooks/e070c9509bd7e8d0f1ddc0f76dd92d578817cf6b328d02010622d224d8b01f45) +* [Selected Pyrotechnic Publications of Dr. Takeo Shimizu Part 1](/library/ebooks/e46d8121571e916ecfcfdc4f78f4baa48d43de70fa06b29664562dfe5e8769d4) +* [Selected Pyrotechnic Publications of Dr. Takeo Shimizu Part 2](/library/ebooks/249a9c09b4d852a2bce4c49111c90b20db2cd7671923318d76064387e10d8671) +* [Selected Pyrotechnic Publications of Dr. Takeo Shimizu, Part 3](/library/ebooks/248b6f82e8e31774c3e458d5972824cfaaf57e1536a447a420023336f09bf5a6) +* [Selected Pyrotechnic Publications of Dr. Takeo Shimizu Part 4: The Design Criteria for Chrysanthemum Shells](/library/ebooks/ac0382fc30971f149993a78fc02325f22b9c59f04549e80fc43c682e712b091d) +* [The Preparatory Manual of Black Powder and Pyrotechnics](/library/ebooks/8a717661d20c70e2cdb1fe801be5ad22eef270fd643dc663f902af1ec2bf8138) +* [Professional Homemade Salutes](/library/ebooks/0121d70334c147cda50c6ce90b4504aae2111875c1ed7113310617fd467298ca) +* [Journal of Pyrotechnics Issue 8, Winter 1998](/library/ebooks/e33e011c7f328a5a3d80751464fe24d16d0ec653f8486838e23b84198f4aeb9c) +* [Journal of Pyrotechnics Issue 12, Winter 2000](/library/ebooks/564f5113a2abd57bfa0b2591a4e8cc6948dfc751de21e21280fc18a94736b616) +* [Journal of Pyrotechnics Issue Number 5, Summer 1997](/library/ebooks/e596ffdcf278a6af82b8a5303edf348aa25a635b5467028fa4ed5a02bb0893cb) +* [AMCP 706-187 Military Pyrotechnics Series, Part 3](/library/ebooks/1d216d9d6777b6c2f44cc7cad4578d28b432a2d9182dca89ceb97c490be8ea22) +* [Black Powder Manufacturing, Testing and Optimizing](/library/ebooks/d77f0fee937733c860824e0129af91702f5fa79877f57f805ff642bf7bb15358) +* [Breath of the Dragon: Homebuilt Flamethrowers](/library/ebooks/51415717ec9768561db55e92ab15510570ee34111e11a465693447196ad782e0) +* [Pyrotechnic Chemistry](/library/ebooks/038d994b3c6878812ceb426944b6894f30d786b5d9acb05d7a95c32f86d2568b) +* [Selected Pyrotechnic Publications of K. L. and B. J. Kosanke, Part 8 (2005 through 2007)](/library/ebooks/5730cc4e2187ece0edadd3caf5cde8099a8eee7145f3e9edcb7e10a6537b7f22) +* [Theory of Colored Flame Production](/library/ebooks/360d49d28a9f5f83d5e87da4e7b46f6c9e6072a24c7f35439dd9f2130240e561) +* [Lecture Slides for Fireworks Display Practices](/library/ebooks/17dc9832e32bc6688793af7ee0e5520ec2a0ca1e9a2fd5c533ce08a176c616cd) +* [A Treatise on Gun-Powder: A Treatise on Fire-Arms; And a Treatise on the Service of Artillery in Time of War](/library/ebooks/9139bee4c801df950a1fe544558055a2f33dee9a31e7214e9ead2b02846475e4) +* [The Best Of The Case Former](/library/ebooks/ee164d3fb3383ac119c592ab0b47105eed13c10b9f51f8cdebbe1261936c9bb2) +* [Engineering Design Handbook - Military Pyrotechnics Series, Part One](/library/ebooks/b10cd28692af95802e9ab93ea2e0db8ce529342b3da1f9ab454d3bc6f91deb32) +* [Engineering Design Handbook - Military Pyrotechnics Series, Part Two](/library/ebooks/d75e1cfd3f50882c7049ad67ce4122e021b3c8ccbee97084762be951293251ac) +* [Black Powder Seminar](/library/ebooks/a051b1d87455db51a07732dd388abfebb8030cac0ec37934f972660db13243a9) +* [PGI Glossary](/library/ebooks/6d6cc43ed18aa077a8e03c7808995047d797b27ab8e531dc731b8edc18d07eeb) +* [Photographing Fireworks: The Right Gear, Location, and Techniques for Capturing Beautiful Images (Kevin L Wheeler's Library)](/library/ebooks/394215e339c012fff984f5da5c7eaa8abc8a1a09e6fbc60ae14aadf8a6ce3a5b) +* [Firework Displays: Explosive Entertainment : A Guide to Getting the Most From Your Firework Display for Designers, Firers and Event Organisers](/library/ebooks/de60cb2b370f1f9c4262dabf1cc76bca90b2ca1d9e55e846ac2afd01be4403d1) +* [Pyro Projects cannonfuse](/library/ebooks/358e4c3e4527e1701901d804b26fddc0ac3514cfe8d84b1c60aa05a240e9b309) +* [Engineering Design Handbook - Military Pyrotechnics Series, Part Four - Design of ammunition for pyrotechnic effects](/library/ebooks/d052c8d75dbd84a7fb5106318c0b938bb92523154cbf911412893dc004bb5426) +* [Pyrotechnics : from the viewpoint of solid state chemistry](/library/ebooks/6778a7773b6a82bf6ccb7c5678f7f5f16f31706ad2547a40ebaa35b5981a0a9e) +* [Engineering Design Handbook - Military Pyrotechnics Series, Part Three - Properties of Materials Used in Pyrotechnic Compositions](/library/ebooks/2e832d4f3a3bf98fd203813845e5dd82595d3f8b82946c1c991ab466d58024af) +* [Making fire work: pyrotechnics and natural philosophy](/library/ebooks/9ec3a7a87d9256888e48604558394b42842ff084b8145b57f5e410ccbfc5ff2b) +* [Pyrotechnic Flash Compositions](/library/ebooks/5009b321049d303a545a1894e07655f4a69d55ea2f049379e3efe6c26c68093f) +* [Pyrotechnics Education - Campaign Toolkit v1.0](/library/ebooks/841fe68ad5f7c20ec7786c49f2c9e295f5a51d5c97e3d353d18586fd2472aac8) +* [Pyrotechnics and Propellants](/library/ebooks/3069bd0d4d26b0e252c427d90a6af73c82b0ff683944ac60a153c314b06a61b7) +* [Regulation (EU) No 98/2013 of the European Parliament and of the Council of 15 January 2013 on the marketing and use of explosives precursorsText with EEA relevance](/library/ebooks/b452a46a94c6a5b397e4ac2e55b1e439d2b5a9a714c33ba049cabf1e37419a47) +* [De La Pirotechnia Libri X](/library/ebooks/85843bf60a3b1a6ee0b3de8ed3089c82ba424757ba169bfa021fd6e08519a0a0) +* [High Explosives, Propellants, Pyrotechnics](/library/ebooks/091da78a306db7e4d69d2e96db4a83e61c4e9f2141c3d4b54f34755e645153a8) +* [FM 3-23.30. Grenades and Pyrotechnic Signals, October 2009 Edition](/library/ebooks/d28db32d5bebfd5619a1ab48a85f2de2bc46fbb600f7bfa1219621445e98384d) +* [A Manual of Pyrotechny; Or, a Familiar System of Recreative Fire-Works](/library/ebooks/4dbde367e2584e91a19464165718d663c147931cf8384dc54941298870e757a6) +* [A System of Pyrotechny / Comprehending the theory and practice, with the application of chemistry; designed for exhibition and for war.](/library/ebooks/a08759c2e66ea687dc9b54af951102dfefee21248ccbdc5fc07d32f1cd1886dc) +* [The Pyrotechnist's Treasury; Or, Complete Art of Making Fireworks](/library/ebooks/2bd7b501b2ff5200bc45ecd065639edadb959e96814006303b5e62ad2709b0da) +* [Endless Amusement - A Collection of Nearly 400 Entertaining Experiments](/library/ebooks/4928fb1f12e69a565174824fd7c2a7e44c09b21f317ece82f2eceebaeb8441e9) +* [The Anarchist Arsenal: Improvised Incendiary and Explosives Techniques](/library/ebooks/f4f4a0174da6e0acefdf93fa6097917d211afed123c73ded1967969ed8c30daa) +* [Dictionary and Manual of Fireworks: Weingart](/library/ebooks/ec04e01240950db25e0df4b6155be6c240c93576c3c125521bee5b9374081944) +* [NFPA 1124 Code for the Manufacture, Transportation, and Storage of Fireworks and Pyrotechnic Articles 2022 Edition](/library/ebooks/280cfbd90aba364a6d9acf6ab045827d023542ee9c71e900f613e340ad364949) +* [Die moderne Kunstfeuerwerkerei: eine Anleitung für Dilettanten](/library/ebooks/9f220d224e2da7be0e1cdfbbc1f335c65438e7b684c7086ed81695f32cbe5a88) +* [Fuochi Artificiali](/library/ebooks/96b6971663f55cc3e079e6537de71e0e2d2358e9cd83f242667fc23d21d1d11f) +* [A SYNTHESIS AND SOURCING GUIDE TO OVER THE COUNTER PYROTECHNICS – 2nd EDITION](/library/ebooks/362b02a9b84f4c6d902b370426c834715f16e63f5452e036639aacc786fa978c) +* [The Great Art of Artillery of Casimir Simienowicz](/library/ebooks/c98007b86f9407c8dc13cd3d350e8786cfc980601ccbbf407aa762c7594fbb84) +* [Field Expedient - Preparation of Black Powders](/library/ebooks/280b69c0f4e926331679e2e2053d6d677761d0c03f48e3daeb5b3ab184c91334) +* [The Making of Rockets](/library/ebooks/7522469fde03292cbab76cbc5991359151df461c811a3ba242e99fcd9dc0a2f0) +* [Easy PVC Rockets](/library/ebooks/9d995464eb84a447059111ba2fdb3503b649b84e77bd253793b4cee219b7daca) +* [Round Stars & Shells](/library/ebooks/883e582f09f35476eb3f8e930930a1f173c80b8cf922e539054322ffbb4d086b) +* [Chymical, Natural, and Physical Magic: Intended for the Instruction and Entertainment of Juveniles During the Holiday Vacation](/library/ebooks/8e75f91fa1712c7b44b5ca7493f5382eaa8156b67a2c72542e36f5aa0a93b22d) +* [Impact Firecrackers: A History and How-To Guide to Classic Fireworks](/library/ebooks/da6548cb96f86af5e20eee09db14dbeb5786d3a42720ede8f64c3b5b69a5baa1) +* [A System of Pyrotechny](/library/ebooks/1ea2cbc4bd78fa632afd862db4652f34bb4ed8633bd1400ca00c979116197229) +* [The Cafe - Former - Official Organ of The Society for the Defense of Tradition in Pyrotechny](/library/ebooks/275d53e429a6712207ea7bf1d8a2d41acd1c28b05f06ecbc80aa12c13300a014) +* [Bottle Rocket Handbook](/library/ebooks/53f044dc9ccdc9bb8e654866bf5babedbadc64a24bc1a6d35e088b409b7d6053) +* [Basic Pyrotechnical Manipulations](/library/ebooks/005c8d4773cbd1fd6eded463edd6222895df0c17e62328b7acad1096a21ed2cf) +* [Spin Stabilized Rockets](/library/ebooks/cf418335a89e4ab257f1724cea5990e3bdee72a733fe81a5b3bd929b90d01436) +* [Magician's Arsenal - Professional Tricks Of The Trade](/library/ebooks/6cbb91718b483b8fc2f20f3984e03a0e9b2455709addba97f4436915608b0bbf) +* [Manual of explosives, military pyrotechnics and chemical warfare agents](/library/ebooks/9314a6c933545f90a1cbacaf330b775ade9870db53c73aa0197c76d6ca506155) +* [Pirotecnia E Fuochi Artificiali](/library/ebooks/2f38dbdc3bb9efc5cab75d0e53c9093f4b03ebed041aba7837a94ca42db9e00b) +* [Explosives, Propellants, and Pyrotechnics](/library/ebooks/8f235e4ad13f2c6dd20afcd780a57664c0927882bbb262fa9d497ef2b7f20256) +* [National Fireworks Review](/library/ebooks/04a10939cc815b40ea2d58f63dda75728f4ba49a9afb106ed625eca85a23a3e7) +* [Fundamentals and Technology of Combustion](/library/ebooks/81d45b7b0557f9eb0d8bccfe269b0b6d2e5b590369b3ce14a0e80dbc1891130a) +* [Art Des Feux D'artifice](/library/ebooks/fc9010f495907369aef50d1b13ddd9bca75f44655251f572a8970adfc3873c96) +* [Artificial Fireworks: Improved to the Modern Practice, From the Minutest to the Highest Branches](/library/ebooks/daa968754b87d428691fbd9166f863c85e40a46d4f077bc033ad24d1a9729eb6) +* [Pirotecnia Moderna](/library/ebooks/f550aa8c06edca0df91fa725fe74369bb7f68d3225cb25d6a8751b20d110f59d) +* [Passfire.com Archive](/library/ebooks/4e5c793973230039732caf7341e93b0d69ead8ac1f0b03ef3ff1c152cc5cfce0) +* [The influence of physical properties on Black Powder combustion](/library/ebooks/94384c27906a72f5a58faad48cdb740902be3d96d29ac4f522d7ff1908aaf52d) +* [A Comprehensive Review of Black Powder](/library/ebooks/4b483a4d1a31ef6925f91728cae011c1bf87054955d9ca766107a79ed9ddd2ca) +* [Pyrotechnia, of meer dan hondertderleye konstvermakelijcke vuurwerken](/library/ebooks/2dc762c4cb5fbd860a816fec236e7c31117575f5f304376f44f18cd76c7afe18) +* [Pyrotechnia Or, a Discourse of Artificiall Fire-Works](/library/ebooks/6ba214a8c352efcf05ffe1deb6d72d5871da16931fdec498fd552e31aefa0717) +* [The Manufacture of FIreworks with Home-Made Equipment](/library/ebooks/e2f4b84590beb7c890f5ff6677ff47c985a1d27d67156d82c2b3ca3dc58a9f2f) +* [Pyrotechnics AD-752 700](/library/ebooks/b2a80a9d42e4c4fb0e30139c18fc0e52b70c9afb8c763211f5d9f24e2ec047a1) +* [The Pyro Handbook (plaintext)](/library/ebooks/c63b1b21e76400d190c6828a9f6264b74ad3a126efd2aad89053463ca77bcb15) +* [Advanced Homemade Fireworks](/library/ebooks/801e793a0217638496cbf9c2446113440282b54f035777534185fcb98d7ddf8f) diff --git a/src/content/library/ebooks/torrent.md b/src/content/library/ebooks/torrent.md new file mode 100644 index 0000000..60fb9a6 --- /dev/null +++ b/src/content/library/ebooks/torrent.md @@ -0,0 +1,10 @@ +--- +title: "E-book library Torrent" +description: "" +featured_image: "/images/site/library-header.jpg" +type: page +--- + +If you prefer to download via Torrent a snapshot from 21 Jan 2024 of all 183 e-books (~3.5 GByte) is available and you can use [fireworks_and_pyrotechnics_ebook_library_by_pyrotechny_eu.torrent](/library/ebooks/fireworks_and_pyrotechnics_ebook_library_by_pyrotechny_eu.torrent). + +[Go back](/library) \ No newline at end of file diff --git a/src/content/links.md b/src/content/links.md new file mode 100644 index 0000000..b97dc9a --- /dev/null +++ b/src/content/links.md @@ -0,0 +1,112 @@ +--- +title: Links +description: 'PyroTechny.EU' +featured_image: '/images/site/links-header.jpg' +type: page +menus: main +--- + + + +## Forums + +* Fireworking.com forumNeeds payed subscription for access
Language: English
+* Amateur Pyrotechnics and Chemistry ForumActive forum
Language: English
+* Pyro-Gear ForumUnited Kingdom (UK) amateur pyrotechnic manufacturing and firework related discussion forum
Almost inactive
Language: English
+* Sciencemadness.org ForumGeneral chemistry forum. Contains some pyrotechnic related discussions
Language: English
+* r/Pyrotechnics on RedditLanguage: English +* r/fireworks on RedditLanguage: English +* PyroForum.nlDutch amateur pyrotechnics forum
Almost inactive
Language: Dutch
+* UK Pyrotechnics Society - the pyrotechnics forumLanguage: English +* The Vespiary chemistry forum +* Pirotehnika.ruhelp.comLanguage: Russian +* FREAKPYROMANIACSLanguage: Dutch +* ForumfajerwerkiLanguage: Polish +* Vuurwerkcrew.nlLanguage: Dutch +* Nortwest Pyrotechnics Association - NPA Club ForumLanguage: English +* PyroCommunity.comLanguage: English +* Fireworks Forum - UKFR's (UK Firework Review) online communityPrivate forum
Language: English
+* Canadian Pyro ForumCanadian Fireworks Resource
Language: English
+* Pyro Talk ForumLanguage: English + +## Clubs + +* Northern Lights Pyrotechnic Club The premier fireworks club in the Northeast and Mid-Atlantic Region
Language: English
+* Nortwest Pyrotechnics AssociationLanguage: English +* NH PyrotechnicsNew Hampshire Pyrotechnic Association
Language: English
+* Pyrotechnics Guild International (PGI)The Pyrotechnics Guild International or PGI founded in 1969 is an independent worldwide nonprofit organization of amateur and professional fireworks enthusiasts. Its membership is the largest pyrotechnic community in the world.
The Guild has a yearly convention. People from all over the world come to this event that lasts for about a week.
Language: English
+ +## Databases, wikis + +* PyroGuide.wikiThe website (wiki) is a compilation of articles from many websites about fireworks and stage pyrotechnics, many of these websites no longer exist, although the knowledge they contained is still valid and valuable
Language: English
+* PyroSource WikiThis wiki is devoted to fireworks enthusiasts of making fireworks and other pyro related topics. This wiki will give details on several different compositions, techniques, effects, materials, chemicals, and much more. Enjoy the information, data, tutorials and vast amounts of information available.
Language: English
+* Alan's Lab Pyrotechnic CompositionsSmall database of compositions with descriptions
Language: English
+* Sciencemadness WikiThis wiki is meant to be a repository of information that is useful to home chemists. It is edited only by members of the Sciencemadness Discussion Board, rather than being open to the public, meaning it is guaranteed to be a collaborative work of home chemists from around the world. Here you can find descriptions and pictures of many chemical compounds, write-ups of procedures developed by Sciencemadness members, and much more
Language: English
+* Sciencemadness libraryChemistry literature which at time of writing holds 50426 pages of reading and reference material in 107 volumes.
Language: English
+* Pyrotechnic Formulary Page (PFP)This is a great archive of pyro formulae. Sadly, the author took it down as a result of the actions of a moron (familiar story, unfortunately). On his site he has given permission to others to put it on their sites, which is what I have done as I believe it's a great collection. The original site address is `www.come.to/pfp` If he changes his mind, this is probably where the up to date version will reside in the future. I downloaded this version a couple of years ago, I don't know if a more up to date version exists. +The author is Andrew Krywonizka, who must be given all credit for this work.
Language: English
+* Pyrotechniques.org (archive)Composition database and information
Website is archived by Internet Wayback Machine
Language: English
+* Skylighter Pyro Club and ResourcesLanguage: English +* Free Pyrotechnic InformationWelcome to Free Pyrotechnic Information. The site features one of the most current Fireworks and Pyrotechnic link pages on the web (last up dated 08-07-2007). The list of Pyrotechnic Chemical data has been compiled from multiple sources. FreePyroInfo.com has one of the largest public domain Pyrotechnic book, article, and video collection on the internet. Plus many useful chart and tables pertaining to Pyrotechnics and Fireworks making are on the data page. Finally check the pyrotechnic Search Engine containg over 100 Firework and Pyrotechnic web sites.
Language: English
+ +# Safety, the law and training + +* Professional Firework Training UKTBD
Language: English
+* UK Firework Review (UKFR)Firework guides & advice
Language: English
+* Pyrotechnics Fireworks Training Safety Manuals +IPM Universal Publishing, LLC -PYROTECHNIC TRAINING SERIES-
Language: English
+## Web archive + +Websites not online anymore but archived by the Archive.org Internet Wayback Machine. + + * The Fireworks AllianceTo protect, preserve, and promote fireworks, rocketry, chemistry, and amateur science experimentation in America.
Language: English
+ * Painting the Sky - Notes on Fireworks (whichitabuggywhip.com)I am the pyro dummy, fusing, running, shooting... maneuvers calculated brilliantly
Language: English
+ * Pyro Universe - The Ultimate Fireworks Site!This site is all about the fascinating world of fireworks, both the kind consumers can buy and the types used by professionals.
Language: English
+ +## Blogs & personal sites + +* Home Page for Dan Williams, Amateur PyrotechnicianHowdy and welcome! I assume you're here because you share my passion for display pyrotechnics. If not, you're still welcome to browse around, but be forwarned. They say that "He who hath once smelt the smoke is ne'er again free." These pages will teach you a few things about how to create art with light from the combustion of energetic materials. The information is geared for the limited budget amateur who creates his art for the sole purpose of giving delight to his friends and neighbors without thought for commercial gain. Please make yourself at home and be sure to send me a line if you've had a pleasant stay.
Language: English
+* How to Make Fireworks — Skylighter, Inc.Detailed posts about the creation and workings of fireworks for the (amateur) pyrotechnican
Language: English
+* mx5-kevin blogrecipes for sufnipyrotechnicians. Descriptions of chemical synthesis and creation of pyrotechnic devices for the amateur pyrotechnican
Language: Hungarian
(translate to english) +* The fireworks blogThe Fireworks Blog is a blog to tell about the history, culture, art and science behind Fireworks around the world.
The information comes from various sources like websites, books and the own knowledge and experience of the author.
Fireworks is direct related to explosives and I hope you NEVER use the information contained in this website to injure yourself or someone. Hope you like and expand your knowledge about Fireworks!
Language: English
+* The Spudding and Pyro PageThis page was made by ***** (he prefers not to be named) and it details his experience with potato guns from the beginning and his experience with beginner pyrotechnics and a few explosives.
I made this page in order to help people who are new to potato guns get started and have fun with this rewarding hobby.
More experienced spudders might also find something interesting to enhance their spudding experience, or maybe not. I have three spudguns: a pneumatic gun from How Not To Build An Aircannon, a large combustion gun I made without plans and a smaller gun which is rather strange but works well all the same.
The other reason I made this page is to help people who are just getting started with pyrotechnics.
Language: English
+* Woelen Homescien.net - Experiments with bangs, fire, or smokeMany serious home chemistry persons think that fire, smoke and bangs only are good for kewls, but one cannot deny that especially this kind of experiments has a big appeal for most people. For many people it is this kind of experiments which have sparked their interest in science. For that reason, the list of this type of experiments is fairly long.
Language: English
+* Mushroom PyrotechnicsWelcome to pyr0myst3rix's website! Find out everything about the Art of Pyrotechnics here! Look up all the [chemicals](https://mushroompyro.weebly.com/chemicals.html) used in pyrotechnics, look up [compositions](https://mushroompyro.weebly.com/pyrotechnic-compositions.html), read about how fireworks work and much, much more! Please read the [disclaimer](https://mushroompyro.weebly.com/disclaimer.html) too.
Language: English
+ +## Ebooks + +* AbeBooks Pyrotechnics physical books store- Curated by Prometheus Publications
Language: English
+* ~ c o m f y b o x ~ Pyrotechnics e-books open directory
Language: English
+ +## Retail + +* Firework CrazyUK (United Kingdom) fireworks retailer with information and training
Language: English
+ +