- W1D1 - https://github.com/cristianbgp/portfolio/tree/frontend
- W1D2 - https://github.com/valevassallo/mini-assignment-css-layout
- W1D3 - https://github.com/valevassallo/intro-to-animations-css
- W2D1 - https://github.com/cristianbgp/simple-calculator
- W2D2 - https://github.com/cristianbgp/js-array-methods
- W2D3 - https://github.com/cristianbgp/object-exercises
- W3D1 - https://github.com/cristianbgp/promise-shop
- W3D2 - https://github.com/valevassallo/web-apis-js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class="[a-zA-Z0-9:;\.\s\(\)\-]*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const puppeteer = require("puppeteer"); | |
const links = [ | |
"https://www.sercoplus.com/video-nvidia-geforce-rtx/11817-vga-msi-geforce-nvidia-rtx-3060-ti-ventu.html", | |
"https://www.sercoplus.com/video-nvidia-geforce-gtx/11816-vga-msi-geforce-nvidia-rtx-3060-ti-gamin.html", | |
]; | |
(async () => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:document.designMode = document.designMode === "on" ? "off" : "on"; void 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEngine.Events; | |
public class CharacterController2D : MonoBehaviour | |
{ | |
[SerializeField] public float m_JumpForce = 400f; // Amount of force added when the player jumps. | |
[Range(0, 1)] [SerializeField] private float m_CrouchSpeed = .36f; // Amount of maxSpeed applied to crouching movement. 1 = 100% | |
[Range(0, .3f)] [SerializeField] private float m_MovementSmoothing = .05f; // How much to smooth out the movement | |
[SerializeField] private bool m_AirControl = false; // Whether or not a player can steer while jumping; | |
[SerializeField] private LayerMask m_WhatIsGround; // A mask determining what is ground to the character |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Get the sum of all the numbers between a and b | |
function GetSum( a,b ) | |
{ | |
sum = 0; | |
if(a<b){ | |
for (let i = a; i <= b; i++) { | |
sum += i; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function validParentheses(parens) { | |
pairLenght = parens.length; | |
for (let i = 0; i < pairLenght; i++) { | |
parens = parens.replace('()',''); | |
} | |
return parens.length < 1; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
class Test{ | |
string word; | |
void Main(){ | |
word = "i don´t know how to code :)"; | |
print(word); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://nhanaswigs.github.io/htmljs/api/index.html | |
http://www.slideshare.net/TomislavMesi/decoupling-you-rhtml-css-and-java-script | |
http://superstatic.org/ | |
https://github.com/marmelab/ng-admin | |
http://blog.brackets.io/2013/08/28/theseus-javascript-debugger-for-chrome-and-nodejs/ | |
http://smacss.com/book/ | |
https://github.com/eirslett/frontend-maven-plugin | |
https://psdtowordpress.com/frontend-development-tools.html | |
http://addyosmani.com/blog/understanding-mvvm-a-guide-for-javascript-developers/ | |
https://github.com/kmalakoff/knockback |