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
@setlocal ENABLEDELAYEDEXPANSION | |
@echo off | |
:loop | |
set /a count = 0 | |
for /f "eol=! tokens=1,2,3,* delims=: " %%i in ('ncu -g') do @( | |
if "%%j"=="%%l" @( | |
@echo %%i %%j | |
) else @( | |
if "%%i"=="All" @( | |
@echo %%i: %%j - %%l |
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
@setlocal ENABLEDELAYEDEXPANSION | |
@echo off | |
:loop | |
@set /a count = 0 | |
@for /f "eol=! tokens=1,2,3,* delims= " %%i in ('ncu -u') do @( | |
@if "%%j"=="%%l" @( | |
echo %%i %%j | |
) else @( | |
@if "%%i"=="All" @( | |
@echo %%i: %%j - %%l |
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 | |
cmd /C "npm -g install yo bower grunt grunt-cli grunt-bowercopy grunt-oraclejet load-grunt-config oraclejet-tooling generator-oraclejet npm-check-updates cordova" | |
cmd /C "yo oraclejet extranet-dev --template=blank" | |
cd extranet-dev | |
echo @echo off > install.cmd | |
echo cd ../extranet-dev >> install.cmd | |
echo cmd /C "yo oraclejet:add-sass" >> install.cmd | |
echo cmd /C "npm-check-updates -u" >> install.cmd | |
echo cmd /C "npm i" >> install.cmd | |
echo cmd /C "yo oraclejet:add-theme extranet" >> install.cmd |
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 | |
cmd /C "npm -g install yo bower grunt grunt-cli grunt-bowercopy grunt-oraclejet load-grunt-config oraclejet-tooling generator-oraclejet npm-check-updates cordova" | |
cmd /C "yo oraclejet flexbox-dev --template=blank" | |
cd flexbox-dev | |
echo @echo off > install.cmd | |
echo cd ../flexbox-dev >> install.cmd | |
echo cmd /C "npm-check-updates -u" >> install.cmd | |
echo cmd /C "npm i" >> install.cmd | |
cmd /C "install.cmd" |
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
1. create and run install.cmd | |
copy content below into install.cmd file: | |
@echo off | |
cmd /C "npm -g install yo bower grunt grunt-cli grunt-bowercopy grunt-oraclejet load-grunt-config oraclejet-tooling generator-oraclejet npm-check-updates cordova" | |
cmd /C "yo oraclejet extranet-dev --template=navdrawer" | |
cd extranet-dev | |
echo > install.cmd | |
echo cd ../extranet-dev >> install.cmd |
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
1. Flexbox demo | |
https://jsfiddle.net/hack2root/t15sguvm/16/ |
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
Russian links: | |
https://geekbrains.ru/topics/3358 |
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
.container { | |
position: absolute; | |
padding: 0; | |
margin: 0; | |
left: 0; | |
top: 0; | |
width: 100vw; /* margin: 0 and width: 100vw: | |
100vw means the same as width:100% including the document margin, | |
100vw is calculated relative to document layout including document margin, | |
100% is calculated relative to parent layout */ |
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://codepen.io/hack2root/pen/QvdLLN |
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
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<TargetFramework>netcoreapp2.0</TargetFramework> | |
<!--https://blogs.msdn.microsoft.com/dotnet/2017/08/14/announcing-entity-framework-core-2-0--> | |
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.3" /> | |
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.0.0" /> | |
<!--https://docs.microsoft.com/en-us/ef/core/get-started/aspnetcore/existing-db#blogging-database--> |
OlderNewer