Skip to content

Instantly share code, notes, and snippets.

View libotti's full-sized avatar

Robert Libotti libotti

View GitHub Profile
@libotti
libotti / index.html
Last active June 14, 2020 22:05
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
@libotti
libotti / index.html
Created October 8, 2018 20:33
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
@libotti
libotti / index.html
Created October 8, 2018 20:34
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
@libotti
libotti / index.html
Created January 8, 2019 12:33
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
public obterQuantidadeDeCreditosSelecionados(lista: Disciplina[]): number {
return lista
.filter(x => x.selecionada)
.map(x => x.credito)
.reduce((sum, current) => sum + current, 0)
}
render() {
const {posts} = this.state;
return(
<div>
<ol className="item">
{
posts.map(post => (
<li key={post.id} align="start">
<div>
<p className="title">{post.title}</p>
[user]
name = Robert Libotti
email = robert.libotti@gmail.com
[core]
editor = code
excludesfile = ~/.gitignore_global
[push]
default = current
{
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
@libotti
libotti / gist:6f9e5616653d8c51873b7b79834a95c2
Created December 20, 2020 00:26
ORACLE TABLE STATISTICS
SELECT owner usuario
,table_name tabela
,tablespace_name tablespace
,num_rows num_linhas
FROM all_tables
WHERE owner = &usuario
ORDER BY owner, table_name;
@libotti
libotti / overfiting.ipynb
Created March 17, 2021 21:19
overfiting.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.