Sure! Here's a basic tutorial on TypeScript to help you get started. 🚀
TypeScript is a superset of JavaScript that adds static typing and other powerful features, making it easier to develop scalable and robust applications.
A Pen by Tom Miller on CodePen.
GitHub is often used as a basic Git host, but its platform has so much more to offer. From simple and powerful issues and pull requests, to advanced features for power users and integrators, it’s a tool worth knowing well in its own right. This session will review everything you need to know to master collaboration with GitHub, from best practices for GitHub Issues and how it represents basic Git concepts, to hidden features and the tools enabling its developer ecosystem.
# -*- coding: utf-8 -*- | |
import numpy as np | |
def predict(x,theta,theta_0=None): | |
''' | |
Funcion de prediccion | |
x un vector del training example | |
theta es el vector normal al plano |
# -*- coding: utf-8 -*- | |
import numpy as np | |
def predict(x,theta,theta_0=0): | |
''' | |
Funcion de prediccion | |
x un vector del training example | |
theta es el vector normal al plano |
const path = require('path'); | |
const { exec } = require('child_process'); | |
const fs = require('fs'); | |
const rimraf = require('rimraf'); | |
function renameOutputFolder(buildFolderPath, outputFolderPath) { | |
return new Promise((resolve, reject) => { | |
fs.rename(buildFolderPath, outputFolderPath, (err) => { | |
if (err) { | |
reject(err); |