Input/Moves made
First Move: Cop
C
19 19 0 0 0 0 0 0
Output
0 1 0 1 1 0
Input/Moves made
First Move: Cop
C
19 19 0 0 0 0 0 0
Output
0 1 0 1 1 0
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
yum groupinstall "Development Tools" | |
yum install gettext-devel openssl-devel perl-CPAN perl-devel zlib-devel expat-devel curl-devel | |
yum install gcc perl-ExtUtils-MakeMaker | |
yum remove git | |
wget https://github.com/git/git/archive/v2.5.3.tar.gz -O git.tar.gz | |
tar -zxf git.tar.gz | |
cd git-2.5.3 | |
make configure | |
./configure --prefix=/usr/local | |
make install |
function getPaginatedItems(items, page, pageSize) { | |
var pg = page || 1, | |
pgSize = pageSize || 100, | |
offset = (pg - 1) * pgSize, | |
pagedItems = _.drop(items, offset).slice(0, pgSize); | |
return { | |
page: pg, | |
pageSize: pgSize, | |
total: items.length, | |
total_pages: Math.ceil(items.length / pgSize), |
#!/usr/bin/env node | |
// Channel ID is on the the browser URL.: https://mycompany.slack.com/messages/MYCHANNELID/ | |
// Pass it as a parameter: node ./delete-slack-messages.js CHANNEL_ID | |
// CONFIGURATION ####################################################################################################### | |
const token = 'SLACK TOKEN'; | |
// Legacy tokens are no more supported. | |
// Please create an app or use an existing Slack App |