Skip to content

Instantly share code, notes, and snippets.

View devCcori's full-sized avatar
🧐
Innovating

Simón Ccorimanya devCcori

🧐
Innovating
View GitHub Profile
select t.table_schema,
t.table_name
from information_schema.tables t
inner join information_schema.columns c on c.table_name = t.table_name
and c.table_schema = t.table_schema
where c.column_name = 'COLUMN_TO_FIND'
and t.table_schema not in ('information_schema', 'pg_catalog')
and t.table_type = 'BASE TABLE'
order by t.table_schema;
@devCcori
devCcori / Ploting_hypotesis_testing.jl
Last active December 8, 2021 01:44
Ploting hipotesis testing in Julia
using Plots
using Distributions
using StatsPlots
using StatsFuns
################################################################
#[round.(x,digits=7) for x in [q0*[-2:2;];7.155417528]]
#normcdf(distribution, α)
%Script para realizar Prueba de Hipotesis
\begin{answer}
Realizamos la prueba de Hipótesis mediante los siguientes pasos.
\begin{enumerate}
\item Anotamos los Datos:
\item Determinamos $H_{0}$ y $H_{1}$.
\begin{flushright}
$H_{0} :$
\end{flushright}
@devCcori
devCcori / conection.vb
Last active November 22, 2021 11:42
Connection SQL and Access
'Conexión como Access para Arquitectura x86
'Instalación de Nugget Packages
Install-Package System.Data.SqlClient -Version 4.8.3
Install-Package System.IO -Version 4.8.3
Imports System.Data.OleDb
Dim strcon As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\Documents\Ventas.accdb"
Dim cn As New OleDbConnection()
@devCcori
devCcori / resetAllControls.vb
Created November 19, 2021 04:52
Function to reset all Controls in a form VB.NET 5.0
Private Sub resetAllControls(ByVal container As Control)
For Each ctrl As Control In container.Controls
If TypeOf ctrl Is RadioButton Then
DirectCast(ctrl, RadioButton).Checked = False
ElseIf TypeOf ctrl Is TextBox Then
DirectCast(ctrl, TextBox).Clear()
End If
If ctrl.Controls.Count > 0 Then
resetAllControls(ctrl)
End If