images int(11) unsigned DEFAULT '0',
TCA
....
'images' => array(
'exclude' => 0,
body { | |
color: #444; | |
font-family: Helvetica, Arial, sans-serif; | |
font-size: 14px; | |
padding: 30px; | |
margin: 0px; | |
} | |
h1 { | |
font-size: 24px; |
/* | |
* Takes provided URL passed as argument and make screenshots of this page with several viewport sizes. | |
* These viewport sizes are arbitrary, taken from iPhone & iPad specs, modify the array as needed | |
* | |
* Usage: | |
* $ casperjs screenshots.js http://example.com | |
*/ | |
var casper = require("casper").create(); |
#!/bin/bash | |
ES='http://localhost:9200' | |
ESIDX='test3' | |
ESTYPE='test' | |
curl -XDELETE $ES/$ESIDX | |
curl -XPUT $ES/$ESIDX/ -d '{ | |
"settings" : { |
server { | |
listen 80; | |
server_name localhost; | |
root /var/www; | |
client_max_body_size 32M; | |
location = /clear.gif { | |
empty_gif; | |
expires max; |
<?xml version="1.0" encoding="UTF-8"?> | |
<code_scheme name="TYPO3_jr"> | |
<option name="OTHER_INDENT_OPTIONS"> | |
<value> | |
<option name="INDENT_SIZE" value="4" /> | |
<option name="CONTINUATION_INDENT_SIZE" value="8" /> | |
<option name="TAB_SIZE" value="4" /> | |
<option name="USE_TAB_CHARACTER" value="true" /> | |
<option name="SMART_TABS" value="false" /> | |
<option name="LABEL_INDENT_SIZE" value="0" /> |
Following a few queries, I wrote this gist who quickly explain how we use GruntJS to build Patternlab and generate HTML for TYPO3 TemplaVoilà templates.
We use
If you have any question, leave a comment.
The entire Gruntfile.js
.
Ionic: Advanced HTML5 Hybrid Mobile App Framework. It is built with HTML5 technologies on Apache Cordova and AngularJS.
Ionic's ultimate goal is to make it easier to develop native mobile apps with HTML5, also known as Hybrid apps.
Learn Ionic. Read the Docs and join the Forum. Keep up to date with the Blog. View the Source.
nmap --script ssl-enum-ciphers -p 443 twitter.com | grep "SSLv3: No supported" || echo "Site vulnerable to poodle" |
cd ~ | |
# Install dependencies | |
sudo apt-get update | |
sudo apt-get install openjdk-7-jre-headless -y | |
# Install ElasticSearch from the official repository | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.7.0.deb | |
sudo dpkg -i elasticsearch-1.7.0.deb |