This is so cool! While looking for fractal art, I discovered it on : https://williamrood.net/new/neural-art/neural-style
Algorithms can now apply the style of one image to the contents of another.
The Marriage of Art and Science
Code:
Artist Engineer
This is so cool! While looking for fractal art, I discovered it on : https://williamrood.net/new/neural-art/neural-style
Algorithms can now apply the style of one image to the contents of another.
The Marriage of Art and Science
Code:
From link.
Stop the Docker daemon and change the container config in:
/var/lib/docker/containers/[container-id]/config.json
You can find the container-id by executing:
docker inspect [container-name]
From link
s="Hello World!"
echo $s # Hello World!
a=${s,,}
echo $a # hello world!
b=${s^^}
echo $b # HELLO WORLD!
Build a query in a string variable and then submit it using MySQL’s prepared statement functionality. (see: http://dev.mysql.com/doc/refman/5.0/en/sql-syntax-prepared-statements.html)
SELECT GROUP_CONCAT(CONCAT("SELECT FROM `", SCHEMA_NAME, "`.`cms_users` WHERE `email` LIKE '%admin.bilsi%'") SEPARATOR ' UNION ALL ')
INTO @stmt_sql
FROM INFORMATION_SCHEMA.SCHEMATA
WHERE SCHEMA_NAME NOT IN('mysql', 'test', 'tmp');
PREPARE stmt FROM @stmt_sql;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;