<!DOCTYPE html>
<title>Hello, World!</title>
- doctype is mandatory
- title is mandatory
- head is not
- body is not
<!DOCTYPE html>
<title>Hello, World!</title>
I would go with vanilla Bootstrap (just the Sass part, not the JS part).
Bootstrap CSS utilities are very nice: same principles as Tailwind CSS.
npm run test
npm run test:e2e
Tests should not be separated from the source code (think autonomous modules).
Findings: React is by far the most popular front-end framework/library (and continues to grow faster), except for the GitHub stars. In addition, React is more loved and "wanted" than other front-end frameworks (although it is more used: satisfaction tends to decrease with popularity).
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
https://insights.stackoverflow.com/trends?tags=reactjs%2Cvue.js%2Cangular%2Cangularjs
# See Remove default Apps from Windows 10 https://thomas.vanhoutte.be/miniblog/delete-windows-10-apps/ | |
# See Debloat Windows 10 https://github.com/W4RH4WK/Debloat-Windows-10 | |
# Command line to list all packages: Get-AppxPackage -AllUsers | Select Name, PackageFullName | |
Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage | |
Get-AppxPackage Windows.ContactSupport | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Xbox* | Remove-AppxPackage | |
Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage # Mail and Calendar | |
#Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage | |
Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage |
using System; | |
using System.Diagnostics; | |
/// <summary> | |
/// Simplifies the use of System.Diagnostics.Stopwatch. | |
/// </summary> | |
/// <example> | |
/// <code> | |
/// var timer1 = ExecutionTimer(); | |
/// computeSomething(); |
namespace Log | |
{ | |
/// <summary> | |
/// Helps you trace the execution of your code. | |
/// </summary> | |
/// <remarks> | |
/// Same as System.Diagnostics.Trace but adds the class and method names to the trace message.<br/> | |
/// <br/> | |
/// More documentation about Trace and Debug:<br/> | |
/// <list type="bullet"> |
class Event < ActiveRecord::Base | |
include EventJSON | |
attr_accessible *EventJSON.attributes | |
validates :starts_at, presence: true | |
validates :ends_at, presence: true | |
validates :all_day, inclusion: { in: [true, false] } | |
end |
#!/usr/bin/env ruby | |
# A simple regexp to manipulate svn dump files. | |
# | |
# Example of a svn dump file: | |
# | |
# Node-path: MySourceCode.cpp | |
# Node-kind: file | |
# Node-action: add | |
# Prop-content-length: 10 |