https://simplesharingbuttons.com/
https://www.typeform.com/
Django is an extremely popular and fully featured server-side web framework, written in Python. The module shows you why Django is one of the most popular web server frameworks, how to set up a development environment, and how to get started with using it to create your own web applications.
Source: Django Web Framework (Python) – Learn web development | MDN
Ali Rowghani, head of YC Continuity, talks to Gitlab CEO Sid Sijbrandij (W15) about how Gitlab has built a completely distributed company with 160 people (and growing). Sid’s biggest tip for success in scaling a distributed company: write everything down.
Source: GitLab’s Secret to Managing 160 Employees in 160 Locations
Discussion on HN
https://youtu.be/e56PbkJdmZ8
Convert PNG to ICO, JPG to ICO, GIF to ICO. Create favicon.ico and iOS / Android App Icons. Edit a favicon to fit your needs, or search our gallery.
You can select Tools > Developer > Profile Plugins
to get a profile report showing how much time plugins are taking to respond to events.
There is no “safe mode”, but you can simulate it by adding all of your user installed plugins to the ignored_packages
setting in your user preferences. If you only (or even mostly only) have packages installed via Package Control, you can use Preferences > Package Settings > Package Control > Settings - User
to open the Package Control settings file and copy the contents of installed_packages
to disable them all.
Additionally if you’re using Windows you can test with the portable version; that version ignores the settings in your user profile, which is a fast way to get at “baseline” reading.
For older versions of Sage see this post
You can opt-out of Blade templates by replacing them with regular PHP ones (you could copy over the templates from Sage 8 if you really wanted to).
Webpack is responsible for:
node_modules
directory is smaller.composer create-project roots/sage your-theme-name dev-master
During theme installation you will have the options to:
– Update theme headers (theme name, description, author, etc.)
– Select a CSS framework (Bootstrap, Foundation, none)
– Add Font Awesome
Update: Newest version of Sage9 (9.0.5 at the time of writing) gives the following error:
TTY mode is not supported on Windows platform
Solution: run this from the theme directory
./vendor/bin/sage meta # or edit style.css directly
./vendor/bin/sage config # or edit resources/assets/config.json
./vendor/bin/sage preset # Install css framework
yarn && yarn build
You now have all the necessary dependencies to run the build process.
About dependencies:
If you open package.json
you’ll see both devDependencies
and dependencies
that Sage uses. devDependencies
are used by the build process, whereas dependencies
are packages that are used in the front-end theme assets.
dependencies
includes the front-end options you selected during install, such as Bootstrap and Font Awesome
"dependencies": {
"bootstrap": "^4.0.0-beta",
"font-awesome": "~4.7",
"jquery": "1.12.4 - 3",
"popper.js": "~1.11"
}
————————–
Optionally import test data with WP Test. See here
When activiating this plugin, it will write to your wp-config.php.
This causes an error with the Bedrock config setup and make you website/admin unaccesible.
Solution:
– activate i-themes
– edit wp-config.php -> remove file permissions added by i-themes (we use config/application.php for that)
– WP admin should be accesible again
– Go to i-themes settings-> WordPress Tweaks -> File Editor -> uncheck the box
Based on the discussion over here: roots/roots/pull/1257.
These days your web project probably has a build step. Your build step takes your styles, scripts, and other assets and packages them for the browser. Maybe you are using gulp, grunt, or even make to orchestrate all your compilation steps. This post covers a couple methods for deploying projects with compiled assets and each method’s respective gotchas.
Source: Build Steps and Deployment