- If user fill a form for create/edit something and he tries to leave, pop up a confirm box
- When user click on button that change data, it stays disabled until a error/success returns
- Buttons for actions that create/change data and Links for navigation
- If text has info as tootip, add dashed underline style to indicate to user hover
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
gem sources -r https://rubygems.org | |
gem sources -r https://rubygems.org/ | |
gem sources -a http://rubygems.org | |
gem update --system | |
gem sources -r http://rubygems.org | |
gem sources -a https://rubygems.org/ |
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
@echo off | |
REM | |
REM p Project dotnet run | |
REM will execute 'dotnet run' in 'Project' directory | |
REM after execution, will return to root | |
REM | |
pushd %1 | |
for /f "tokens=1,* delims= " %%a in ("%*") do set ALL_BUT_FIRST=%%b |
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
*.swp | |
*.*~ | |
project.lock.json | |
.DS_Store | |
*.pyc | |
# Visual Studio Code | |
.vscode | |
# User-specific files |
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
#!/usr/bin/env bash | |
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
# http://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
# http://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
# http://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
# http://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
# Versions | |
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE` |
curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --version 5.0.100
.NET Versions: https://dotnet.microsoft.com/download/dotnet/
dotnet new sln --name SolutionName
dotnet new console --output src/ProjectName
dotnet new nunit --output tests/ProjectName.Tests
dotnet sln add tests/ProjectName.Tests
dotnet sln add src/ProjectName
OlderNewer