AddOn:
- Go to about:support in your address bar
- Look for your profiles directory and open it:
- Create a file named
chrome/userChrome.cssin your profile directory:
AddOn:
chrome/userChrome.css in your profile directory:This is the Gist repository for my article Drupal 8, How to translate Config API.
Be aware that this article has been wrote for the Blog of Antistatique — Web Agency in Lausanne, Switzerland. A place where I work as Full Stack Web Developer.
Feel free to read it the full article on Medium or check it out on Antistatique.
Content of this Gist :
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
| { | |
| "AWSEBDockerrunVersion": "1", | |
| "Image": { | |
| "Name": "<AWS_ACCOUNT_ID>.dkr.ecr.us-east-1.amazonaws.com/<NAME>:<TAG>", | |
| "Update": "true" | |
| }, | |
| "Ports": [ | |
| { | |
| "ContainerPort": "443" | |
| } |
| # -*- coding: utf-8 -*- | |
| from __future__ import unicode_literals | |
| import uuid | |
| from django.db import migrations, models | |
| def fill_mymodel_uuid(apps, schema_editor): | |
| db_alias = schema_editor.connection.alias | |
| MyModel = apps.get_model('myapp', 'MyModel') |
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| var game = require('../common/game'); | |
| class Camera extends Phaser.Group { | |
| constructor({x = 0, y = 0}) { | |
| super(game); | |
| var {world, physics, camera} = game; | |
| var {centerX, centerY, bounds} = world; | |
| this.scale.setTo(1, 1); |
| from os import environ, path | |
| from ansible import errors, utils | |
| from keepassdb import Database | |
| DEFAULT_DB = 'prod' | |
| class VarsModule(object): | |
| """Loads variables from secret_vars/<username>.kdb in the same directory |
When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.
Raw Attribute Strings
<div my-directive="some string" another-param="another string"></div>| Vagrant::Config.run do |config| | |
| config.vm.define :default do |tw_config| | |
| tw_config.vm.box = "precise64" | |
| tw_config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
| tw_config.vm.provision :shell, :path => "provision/ansible-setup.sh" | |
| tw_config.vm.provision :shell, :path => "provision/controller-setup.sh" | |
| # Load a local setup file if it exists, so you can use it to | |
| # provide additional provisioning steps. |