ReactJS - How to pass method to component and how to pass arguments to method
Introduction In the ReactJS project, you are having aa parent component and a…
March 03, 2021
We will introduce a Package Manager for Windows: Chocolatey
. In automations, it is necessary to install various tools, softwares from command line.
In this post, we will install git and osquery.
Open powershell console.
RUN Set-ExecutionPolicy Bypass -Scope Process -Force; \
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12'; \
iex ((New-Object System.Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"));
Lets install git.
choco install git -y
choco install osquery --version 3.4.0 -y;
FROM microsoft/windowsservercore:ltsc2016
ENV CHOCO_URL=https://chocolatey.org/install.ps1
RUN Set-ExecutionPolicy Bypass -Scope Process -Force; \
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12'; \
iex ((New-Object System.Net.WebClient).DownloadString("$env:CHOCO_URL"));
RUN choco install git -y;
RUN choco install osquery --version 3.4.0 -y;
Introduction In the ReactJS project, you are having aa parent component and a…
Its good to write unit tests cases, and this part is mostly forgotten by…
Introduction I have created a view, with some filters and content fields. I will…
Introduction to problem So, on my mac, I’ev set timezone to my local city i.e…
Introduction I got my seo backlink work done from a freelancer. It was like 300…
For programmers, who want to write about their codes. Its often the first…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…