Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
| /** | |
| * Semantic Versioning Comparing | |
| * #see https://semver.org/ | |
| * #see https://stackoverflow.com/a/65687141/456536 | |
| * #see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator#options | |
| */ | |
| function semverCompare(a, b) { | |
| if (a.startsWith(b + "-")) return -1 | |
| if (b.startsWith(a + "-")) return 1 | |
| return a.localeCompare(b, undefined, { numeric: true, sensitivity: "case", caseFirst: "upper" }) |
| // Show how to handle Ctrl+C in Node.js | |
| var zmq = require('zmq') | |
| , socket = zmq.createSocket('rep'); | |
| socket.on('message', function(buf) { | |
| // echo request back | |
| socket.send(buf); | |
| }); |
| // ref: <https://stackoverflow.com/questions/7191429/get-kindle-library-book-list> | |
| // ref: <https://gist.github.com/jkubecki/d61d3e953ed5c8379075b5ddd8a95f22> | |
| // spell-checker:ignore () booklist | |
| // from <https://gist.github.com/rivy/54d86297cc65bd21a25476d4d2da7d31> | |
| // ToDO: [2022-03-10; rivy] change to use `fetch()` and `async/await` | |
| // ... available since early 2017 ... <https://caniuse.com/?search=fetch> , <https://caniuse.com/async-functions> | |
| // 1 - login to "https://read.amazon.com" | |
| // 2 - use "F12" to open developer window with "Console" |
| #!/bin/sh -e | |
| #git-cache-meta -- simple file meta data caching and applying. | |
| #Simpler than etckeeper, metastore, setgitperms, etc. | |
| #from http://www.kerneltrap.org/mailarchive/git/2009/1/9/4654694 | |
| #modified by n1k | |
| # - save all files metadata not only from other users | |
| # - save numeric uid and gid | |
| # 2012-03-05 - added filetime, andris9 |
A Leaflet.js map created with Folium and the default D3 threshold scale, with data bound between the Pandas DataFrame and the TopoJSON. See the Gist for the python code to generate the dataframe. The map was generated with the following Python code:
map_1 = folium.Map(location=[48, -102], zoom_start=3)
map_1.geo_json(geo_path=county_geo, data_out='data1.json', data=df,
columns=['GEO_ID', 'Employed_2011'],
key_on='feature.id',
fill_color='YlOrRd', fill_opacity=0.7, line_opacity=0.3,
topojson='objects.us_counties_20m')
map_1.create_map(path='map_1.html')| /* Lorem Ipsum Generator | |
| * (CC-BY) Fredrik Bridell <fredrik@bridell.com> 2009 | |
| * Version 0.21 - multilingual | |
| * Released under a Creative Commons Attribution License | |
| * | |
| * You are welcome to use, share, modify, print, frame, or do whatever you like with this | |
| * software, including commercial use. My only request is that you tell the world where you found it. | |
| * | |
| * One way is to include the phrase: | |
| * "Using the The Lorem Ipsum Generator by Fredrik Bridell (http://bridell.com/loremipsum/)" |
Yes, I've done this, and yes, it works. It is, however, entirely unsupported and assembled through reasonable guesswork, so if you try this and it explodes your computer, brain, career, relationships, or anything else, you agree that you take sole responsibility for doing it, that I never claimed it was a good idea, and that you didn't get these instructions from me .
Also note: I have done this with Debian Stretch. While one kernel ought to fit all, some of the packages you need to build it may be different. Adapting to other distros is up to you.
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
The proposal you’re about to read is not just a proposal. We have a working implementation of almost everything we discussed here. We encourage you to checkout and build our branch: our fork, with the relevant branch selected. Building and using the implementation will give you a better understanding of what using it as a developer is like.
Our implementation ended up differing from the proposal on some minor points. As our last action item before making a PR, we’re writing documentation on what we did. While I loathe pointing to tests in lieu of documentation, they will be helpful until we complete writing docs: the unit tests.
This repo also contains a bundled version of npm that has a new command, asset. You can read the documentation for and goals of that comma