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
module.exports = function(fileInfo, api) { | |
const j = api.jscodeshift; | |
const root = j(fileInfo.source); | |
root | |
.find(j.AssignmentExpression, { | |
left: { | |
type: 'MemberExpression', | |
property: { | |
name: 'propTypes' | |
} |
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
const path = require('path'); | |
module.exports = { | |
entry: [ | |
'./src/index.js'], | |
output: { | |
path:path.resolve( __dirname), | |
filename: 'bundle.js', | |
}, | |
module: { |
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
.cl { clear: left; } | |
.cr { clear: right; } | |
.cb { .clear: both; } |
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
/* @flow */ | |
import stepper from './stepper.js'; | |
const result = stepper(34, 1, 3, 4, 5,6); | |
const invalid = result[2]; | |
invalid.toExponential(); |
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
Marx è un modello a più titoli. Personalità poliedrica (non che non lo siamo tutti, poliedrici), ma lui ha contato come autore, economista, agitatore, editorialista, organizzatore. Una lettura parziale La lettura del Capitale per esempio, difficile, anche se, mi ricorda che devo leggerlo. | |
Il partito. un partito diviso in cui esistono diverse correnti. Se il PD si rimprovera di essere una fusione a freddo, anche il PRC lo è, forse in modo meno apparente per il pubblico in quanto è stato dominato dalla figura di Bertinotti. Come lo prova l’andamento ondeggiante del partito come partner di coalizione (c’è una divertente imitazione di Guzzanti dove Bertinotti parla del primo partito irresponsabile e degli scherzetti, sarebbe più facile, in realtà penso che il partto si comporti in questo modo proprio per via di un dissidio interno, un dissidio che affonda le proprie radici anche nella base militante), si legge nei documenti congressuali votati, che sono sembre molto raffazzonati. | |
Questo scontro potrebbe essere u |
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
from fabric.api import put, hosts, run, sudo | |
@hosts('user@host') | |
def deploy_apache_conf(): | |
put('apache/virtual-host-test.conf', '/tmp/apache.conf') | |
run('cp /tmp/apache.conf /etc/httpd/conf.d/httpd-vhosts.conf') | |
@hosts('user@host') | |
def check(): | |
run('/usr/sbin/apachectl -t') |
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
# find all rows | |
# for each table row | |
# get first td a | |
# get second td tt | |
# get third td tt | |
# get fourth td tt | |
require 'nokogiri' | |
countries = [] | |
File.open('ISO_3166-1.htm') do |f| |