Skip to content

Instantly share code, notes, and snippets.

View glatrofa's full-sized avatar
📚

Giuseppe Latrofa glatrofa

📚
View GitHub Profile
# Online citation
@online{,
title="",
url=""
}
# Unordered list
\begin{itemize}
@glatrofa
glatrofa / instrunction.md
Last active May 20, 2022 11:50
Add online nuget repository to Visual Studio

Add online nuget repository to Visual Studio

  • Go to options
  • Search for "nuget"
  • Click on "package sources"
  • Click on the top right "+" button
  • Fill the fields with Name: nuget, Source: https://api.nuget.org/v3/index.json
  • Click update
  • Click ok
@glatrofa
glatrofa / python-venv.md
Created October 13, 2021 07:28
Manage python enviroment

Manage python virtual enviroment

create

python3 -m venv <venv_path>

activate

These commands have to be axecuted within the "hadoop-x.x.x" folder

  • Start/stop hadoop
sbin/start-dfs.sh
sbin/stop-dfs.sh
  • Create/remove folder
@glatrofa
glatrofa / app.module.ts
Last active July 2, 2020 10:58 — forked from adrianolsk/page.component.ts
Angular Routing with Hashtag to page anchor
// add imports
import { RouterModule, Routes } from '@angular/router';
// declare here all your routes
const routes: Routes = [
{ path: 'page', component: PageComponent },
// other route paths
];
// add this to @NgModule imports: