Exploring some ways of visually hiding or obscuring text with CSS filters and pseudo-elements.
This file contains hidden or 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
| https://github.com/flyway/flyway | |
| https://github.com/mattes/migrate | |
| https://bitbucket.org/liamstask/goose | |
| https://github.com/tanel/dbmigrate | |
| https://github.com/BurntSushi/migration | |
| https://github.com/DavidHuie/gomigrate | |
| https://github.com/rubenv/sql-migrate |
This file contains hidden or 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
| :: Copyright (C): 2017 Pat Migliaccio | |
| :: [email protected] | |
| :: | |
| :: LICENSE: MIT | |
| :: | |
| :: File: install-git.bat | |
| :: | |
| :: Batch file for a quick install of Git for Windows | |
| :: Include the git*.exe install executable | |
| :: in the same directory as this script. |
This file contains hidden or 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
| javascript: (function () { | |
| function c() { | |
| var e = document.createElement("link"); | |
| e.setAttribute("type", "text/css"); | |
| e.setAttribute("rel", "stylesheet"); | |
| e.setAttribute("href", f); | |
| e.setAttribute("class", l); | |
| document.body.appendChild(e) | |
| } | |
| function h() { |
This file contains hidden or 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
| # This file includes example usage and tests for the 'run-with-cleanup' call-able function. | |
| .PHONY: test test-success test-failure main cleanup | |
| -include cleanup.mk | |
| test: | |
| test.sh | |
| main: |
There are numerous reasons you may need to use multiple SSH keys for accessing GitHub and BitBucket
You may use the same computer for work and personal development and need to separate your work.
When acting as a consultant, it is common to have multiple GitHub and/or BitBucket accounts depending on which client you may be working for.
You may have different projects you're working on where you would like to segregate your access.
This file contains hidden or 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
| # Installing google chrome via APT (sadly no SNAP available from Google, like there is for Chromium) | |
| # Setup the Google signer and repo | |
| curl -O https://packages.cloud.google.com/apt/doc/apt-key.gpg && sudo apt-key add apt-key.gpg | |
| sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
| # Install | |
| sudo apt-get update | |
| sudo apt-get install google-chrome-stable |
This file contains hidden or 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
| blueprint: | |
| name: Sensor Light | |
| description: > | |
| # 💡 Sensor Light | |
| **Version: 8.4** | |
| Your lighting experience, your way - take control and customize it to perfection! 💡✨ |
(VERY rought draft, still a work-in-progress)
Authentication and signing keys serve different purposes, especially on platforms like GitHub where code integrity and access control are crucial. Here's a comparison based on their functions and best practices:
- Purpose:
OlderNewer