This list served quite some people but someone else did a better job since.
Go to https://github.com/umpirsky/country-list for a list in your language and format.
I've also compiled a list of nationalities
This list served quite some people but someone else did a better job since.
Go to https://github.com/umpirsky/country-list for a list in your language and format.
I've also compiled a list of nationalities
From Meteor's documentation:
In Meteor, your server code runs in a single thread per request, not in the asynchronous callback style typical of Node. We find the linear execution model a better fit for the typical server code in a Meteor application.
This guide serves as a mini-tour of tools, trix and patterns that can be used to run async code in Meteor.
Sometimes we need to run async code in Meteor.methods. For this we create a Future to block until the async code has finished. This pattern can be seen all over Meteor's own codebase:
| #!/usr/bin/env python | |
| """ | |
| This script helps migrating issues from Bitbucket to GitHub. | |
| It currently ignores milestones completly and doesn't care whether an issue is | |
| open, new or on hold. As long as it's not closed it's considered open. | |
| To use it, install python-bitbucket, PyGithub and ipdb. |
| test.isFalse(v, msg) | |
| test.isTrue(v, msg) | |
| test.equal(actual, expected, message, not) | |
| test.length(obj, len) | |
| test.include(s, v) | |
| test.isNaN(v, msg) | |
| test.isUndefined(v, msg) | |
| test.isNotNull | |
| test.isNull | |
| test.throws(func) |
| var md5 = crypto.createHash('md5').update(string).digest('binary'); | |
| md5 = new Buffer(md5, "binary").toString('base64'); |
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
| ### | |
| ### | |
| ### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
| ### https://christitus.com/windows-tool/ | |
| ### https://github.com/ChrisTitusTech/winutil | |
| ### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
| ### iwr -useb https://christitus.com/win | iex | |
| ### | |
| ### OR take a look at | |
| ### https://github.com/HotCakeX/Harden-Windows-Security |
| var UInt4 = function (value) { | |
| return (value & 0xF); | |
| }; | |
| var Int4 = function (value) { | |
| var ref = UInt4(value); | |
| return (ref > 0x7) ? ref - 0x10 : ref; | |
| }; | |
| var UInt8 = function (value) { |
| #!/bin/bash | |
| : <<'COMMENT' | |
| This script takes the dataset from the Open Thesaurus project and | |
| transforms it to a wordlist comparable to the original diceware list. | |
| I thought the original list contains too much lines which just don't | |
| make any sense and/or are hard to memorize. So my goal was to | |
| automatically generate a list containing only memorable words, which | |
| can then be used to add your own special characters or variations. |