Suggester | Title | Author | TL;DR | Good Reads | Link |
---|---|---|---|---|---|
Mike | Still Life with Woodpecker | Tom Robbins | Sort of a love story that takes place inside a pack of Camel cigarettes. It reveals the purpose of the moon, explains the difference between criminals and outlaws, examines the conflict between social activism and romantic individualism, and paints a portrait of contemporary society that includes powerful Arabs, exiled royalty, and pregnant cheerleaders. It also deals with the problem of redheads | 4.04 | aloha |
Nawal | Devil in the White City | Erik Larson | Intertwines the true tale of the 1893 World's Fair and the cunning serial killer who used the fair to lure his victims to their death. Combining meticulous research with nail-biting storytelling, Erik Larson has crafted a narrative with all the wonder of newly discovered history and the thrills of the best fiction | 3.99 | [buggah](https://www.powells.com/book/devi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function l() { | |
try { | |
// this works in Firefox/Opera | |
console.log.apply( this, arguments ); | |
} catch (e) { | |
// this is for Chrome/IE | |
var args = [], i = 0; | |
while( i++ < arguments.length ) | |
args.push('arg' + i); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src='https://www.wedgies.com/js/widgets.js'></script><noscript><a href='https://www.wedgies.com/question/54c80665178afd090000053f'>What should be the next Refresh topic?</a></noscript><div class='wedgie-widget' data-wd-pending data-data-wd-type='embed' data-wd-version='v1' id='54c80665178afd090000053f' style='max-width: 640px; margin: 0px auto' ></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PATH=/usr/bin:/bin:/home/ubuntu/.local/bin:$PATH | |
# create dump file | |
TIMESTAMP=$(date +%Y-%m-%d--%H_%M_%S) | |
FILENAME="ridelist_"$TIMESTAMP".dump" | |
pg_dump -U postgres -h localhost -p 6059 ridelist > $FILENAME | |
# compress | |
tar czvf $FILENAME".tar.gz" $FILENAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Drupal\Core\Config\Config; | |
// ... | |
$config = \Drupal::config('system.site'); | |
$front_uri = $config->get('page.front'); | |
$alias = \Drupal::service('path.alias_manager')->getAliasByPath($front_uri); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
printf "%-50s | %-25s\n" "SITE" "EXPIRES" | |
echo "-------------------------------------------------------------------" | |
for site in `grep -hR "ssl_certificate /etc/nginx/" /etc/nginx/sites-enabled/|awk '/ssl_certificate/ {print $2}'`; do | |
sitename="$(echo $site | awk -F/ '{print $5}')" | |
expire="$(sudo openssl x509 -enddate -noout -in ${site::-1}|awk -F= '/notAfter=/ {print $2}')" | |
printf "%-50s | %-25s\n" "$sitename" "$expire" | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aloha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Hello ChickTech 2019</title> | |
<style> | |
#top { | |
background-color: lightblue; | |
} | |
body p { | |
color: gray; | |
} |
- Is there a reason for
no_std
or is this synonymous with the goal of reduce contract size. - What's the criteria we're aiming for, which types of contracts are being built that the SDK is not optimized for.
- Is it like Eugene's approach? (near/core-contracts#88 also more readable here: https://github.com/near/core-contracts/blob/882ded0634ee50ef134a82c1bbf53262ab8b1550/fast-fun-token/src/lib.rs)
Peek into the link above:
The main things we need from token standards are minting and burning of fungible and non-fungible tokens, as well as events. We need to now determine if we SHOULD have standard function names for minting and burning, and if so, if they should be in a single standard or two. (For minting, for burning.)
Illia is proposing we do not have function names and instead only events:
Wondering how this will work with NFT contracts "out there" that are using nft_mint
that indexer and Wallet have worked around in order to show them as collectibles.
OlderNewer