lunes, 19 de noviembre de 2018
jueves, 1 de noviembre de 2018
Ejemplos de sitios web
https://johnackerman.blogspot.com
https://jonathanheath.net
http://eyeborgproject.tv
http://www.mobsteel.com
https://qz.com/1161191/elon-musk-accidentally-tweeted-his-private-cell-phone-number-to-16-7-million-followers/
http://www.thisisinsider.com/supermoon-jan-2018-new-years-day?utm_content=buffer4032f&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer-insider-science
https://www.space.com/38966-supermoon-webcast-slooh-watch-live.html
domingo, 15 de julio de 2018
if/else and switch statments
let userName = 'Fernando';
let knowsJavaScript = true;
if (knowsJavaScript && userName) {
console.log('Great, ' + userName + '! Get ready to practice your JavaScript!');
} else if (knowsJavaScript) {
console.log('Great! Get ready to practice your JavaScript!');
} else if (userName) {
console.log('Great, ' + userName + '! Get ready to learn something new!');
} else {
console.log('Great! Get ready to learn something new!');
}
let isSoccerFan = true;
if (isSoccerFan === true) {
console.log('Goal!');
} else {
console.log('No goal!');
}
let wordCount = 1;
if (wordCount) {
console.log("Great! You've started your work!");
} else {
console.log('Better get to work!');
}
let favoritePhrase = 'Love that!';
if (favoritePhrase) {
console.log("This string doesn't seem to be empty.");
} else {
console.log('This string is definitely empty.');
}
let wordCount = 1;
if (wordCount) {
console.log("Great! You've started your work!");
} else {
console.log('Better get to work!');
}
let favoritePhrase = 'Love that!';
if (favoritePhrase) {
console.log("This string doesn't seem to be empty.");
} else {
console.log('This string is definitely empty.');
}
let hungerLevel = 10;
if (hungerLevel > 7) {
console.log('Time to eat!');
} else {
console.log("Let's eat later!");
}
let moonPhase = 'full';
if (moonPhase === 'full') {
console.log('Howl!');
} else {
console.log('I swear I am not a werewolf.');
}
let moonPhase = 'solar eclipse';
if (moonPhase === 'full') {
console.log('Howl!');
} else if (moonPhase === 'mostly full') {
console.log('Arms and legs are getting hairier');
} else if (moonPhase === 'mostly new') {
console.log('Back on two feet');
} else {
console.log('Invalid moon phase');
}
let moonPhase = 'full';
let isFoggyNight = false;
if (moonPhase === 'full' || isFoggyNight === true) {
console.log('Howl!');
} else if (moonPhase === 'mostly full') {
console.log('Arms and legs are getting hairier');
} else if (moonPhase === 'mostly new') {
console.log('Back on two feet');
} else {
console.log('Invalid moon phase');
}
let moonPhase = 'full';
switch (moonPhase) {
case 'full':
console.log('Howl!');
break;
case 'mostly full':
console.log('Arms and legs are getting hairier');
break;
case 'mostly new':
console.log('Back on two feet');
break;
default:
console.log('Invalid moon phase');
break;
}
let isLocked = false;
isLocked ? console.log('You will need a key to open the door.') : console.log('You will not need a key to open the door.');
let isCorrect = true;
isCorrect ? console.log('Correct!') : console.log('Incorrect!');
let favoritePhrase = 'Love That!';
favoritePhrase === 'Love That!' ? console.log('I love that!') : console.log("I don't love that!");
let isLocked = false;
isLocked ? console.log('You will need a key to open the door.') : console.log('You will not need a key to open the door.');
let isCorrect = true;
isCorrect ? console.log('Correct!') : console.log('Incorrect!');
let favoritePhrase = 'Love That!';
favoritePhrase === 'Love That!' ? console.log('I love that!') : console.log("I don't love that!");
sábado, 31 de marzo de 2018
sábado, 13 de enero de 2018
Thumbnails on tweeter and facebook and youtube
https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started
https://www.youtube.com/watch?v=D2jBw3aZkQ8
https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started
https://www.youtube.com/watch?v=XjczD5aTaHs
https://www.youtube.com/watch?v=BUBomg6_G0w
https://www.youtube.com/watch?v=lYqDPyZPTnk
https://www.youtube.com/watch?v=TseaaolcV1Q
https://honeypotmarketing.com/facebook-thumbnail-fix/
https://www.techprevue.com/facebook-open-graph-meta-tags-for-blogger-advanced-practices/
jueves, 11 de enero de 2018
Form, User enter data logic-coding, database, reports.
evrething I built is the same
Patrones:
HTML es the form
c, c++
ms sql, sql server
reports
simplificado.
https://www.youtube.com/watch?v=aCENfdu6P8w#t=7m10s
viernes, 5 de enero de 2018
Thumbnail de un video
maxresdefault.jpg
Contol U
contol f
maxresdefault.jpg
copiar el limk completo
pegar sin ir
bora %3A
enter
Suscribirse a:
Comentarios (Atom)