Skip to content

Instantly share code, notes, and snippets.

View gracenikole's full-sized avatar
🐨
.

Grace Nikole gracenikole

🐨
.
View GitHub Profile
pacman-key --populate archlinux
https://bbs.archlinux.org/viewtopic.php?id=231555 #12
@gracenikole
gracenikole / index.html
Created March 7, 2021 16:49 — forked from hubgit/index.html
Display a single tweet
<!doctype html>
<meta charset="utf-8">
<title>Tweet</title>
<meta name="twitter:widgets:conversation" content="none">
<meta name="twitter:widgets:cards" content="hidden">
<meta name="twitter:widgets:link-color" content="#cc0000">
<meta name="twitter:widgets:theme" content="light">
<style>
https://juliaforeducation.github.io/Intro-Julia-2021/Intro.html
////////////// GO
https://github.com/JJ/aprende-go
https://www.youtube.com/c/tomaslingotti/videos
////////////// V
https://vlang.io/
* Onion Arch:
https://dev.to/barrymcauley/onion-architecture-3fgl
https://www.codeguru.com/csharp/csharp/cs_misc/designtechniques/understanding-onion-architecture.html#:~:text=Onion%20Architecture%20is%20based%20on,on%20the%20actual%20domain%20models
* Arcquitectura Hexagonal:
https://medium.com/@edusalguero/arquitectura-hexagonal-59834bb44b7f
* GOF(the gang of of four) Patrón de Diseño:
https://scielo.conicyt.cl/pdf/infotec/v24n3/art12.pdf
* Observer Design Pattern:
https://webxander.com/blog/shop-with-observer-pattern
https://heroicons.com/
https://css.gg/app
@gracenikole
gracenikole / Lista Enlazada en C++
Last active January 13, 2021 00:18
Lista Enlazada en C++ (explicación)
#include <bits/stdc++.h>
using namespace std;
// Creamos una estrucuta node que tendrá 2 atributos
struct node {
int value_;
node* next_ = nullptr;
/*****************************************************************
Tendremos 2 constructores, uno que inicializará los atributos con
* La mejor página para aprender visualización de datos, front-end, back.end y muchas cosillas más uwu
https://frontendmasters.com/welcome/github-student-developers/
* Herramientas para manejar y aprender AI, ML, IoT, etc: (100 dolares)
https://azure.microsoft.com/es-mx/free/students/
* Deploya tus apps:
https://www.heroku.com/github-students
* Cliente SSH para linus, windiows, Android y iOS
https://termius.com/education?utm_source=github+termius
* Mide tu productividady maneja tu tiempo:
https://pomodoneapp.com/pomodoro-timer-for-students.html
@gracenikole
gracenikole / listas_enlazadas.c
Created January 6, 2021 00:59 — forked from ArgiesDario/listas_enlazadas.c
Programación en C – Listas Enlazadas – Que son y cómo se usan
#include <stdio.h>
#include <stdlib.h>
typedef struct snodo{ //snodo es el nombre de la estructura
int valor;
struct snodo *sig; //El puntero siguiente para recorrer la lista enlazada
}tnodo; //tnodo es el tipo de dato para declarar la estructura
typedef tnodo *tpuntero; //Puntero al tipo de dato tnodo para no utilizar punteros de punteros
@gracenikole
gracenikole / change_primary_key.md
Created December 11, 2020 00:29 — forked from scaryguy/change_primary_key.md
How to change PRIMARY KEY of an existing PostgreSQL table?
-- Firstly, remove PRIMARY KEY attribute of former PRIMARY KEY
ALTER TABLE <table_name> DROP CONSTRAINT <table_name>_pkey;
-- Then change column name of  your PRIMARY KEY and PRIMARY KEY candidates properly.
ALTER TABLE <table_name> RENAME COLUMN <primary_key_candidate> TO id;
This file has been truncated, but you can view the full file.
mestamp render event 1370
##########################################################
Imprimiendo cola para esta iteracion
1627.83 1635.68 1635.68 1697.63 1697.63 1768.48
##########################################################
Timestamp render event 1372
##########################################################
Imprimiendo cola para esta iteracion
1627.83 1635.68 1635.68 1697.63 1697.63 1768.48
##########################################################