Ttc Tin Choi Tai·20 hours agoTo compute the Lucas sequenceLast time we compute the Fibonacci sequence. Today we compute the Lucas sequence: L(n), n = 1, 2, 3, … 1, 3, 4, 7, 11, 18, 29, 47, … L(n+2) = L(n+1) + L(n) (1) Example: L(5) = L(4) + L(3) = 7 + 4 = 11 Ever wonder if…Find Lucas Seq2 min read
SwaveSports·1 day agoWarriors’ core ‘setting the example’ for NBAGiannis: Dubs’ dynasty ‘setting the example’ for rest of NBA originally appeared on NBC Sports Bayarea NBA stars around the league have tipped their hat to the 2021–22 NBA champions after the Warriors defeated the Celtics in the Finals for their fourth title in eight years. Giannis Antetokounmpo didn’t watch…Sports2 min read
Mako Sharashenidze·2 days agoThe Significance of Context in UI/UXHave you ever seen a post on Linkedin where the two UI designs are compared? You probably have, especially if you work in the design industry. Unfortunately, lately, it has become very common to receive feedback from the Linkedin community by just uploading two UI designs and asking which one…UI6 min read
Annelise LordsinILLUMINATION·2 days agoWhat Do You Teach Your Children?I raise my children to believe that they are not defined by what they possess but by the kindness and consideration they share with others. “How?” Rosa asked, staring at the hate and anger in the eyes of most of the people inside the courtroom. …Illumination3 min read
Abigailtsani·3 days agoRanking by a Category in ExcelFind the top 3 of some Category Question? How to sort the name? How to make list of category of top 3? How come the top 3 name and score depend on category you choose? #1 Answer Sort the name by using SORTBY function SyntaxExcel2 min read
Ttc Tin Choi Tai·4 days agoComputing the sum of 10th powersLast time we find the sum of 9th powers S9(n) = 1⁹ + 2⁹ + … + n⁹ = n² (n+1)² (n² + n — 1) (2 n⁴ + 4 n³ — n² — 3 n + 3) / 20 We are now computing the sum of 10th powers S10(n)…Find Sum Of 10th Powers3 min read
Ttc Tin Choi Tai·Jun 18Meet the Perfect numbersToday we are going to meet the Perfect numbers. A number is perfect if it is the sum of its divisor other than itself. 1 + 2 + 3 = 6 1 + 2 + 4 + 7 + 14 = 28 So 6 and 28 are perfect numbers. If…Perfect Numbers1 min read
Little DinoinCodeX·Jun 14Basic SQL statements you need to know (SELECT/DISTINCT/ORDER BY/LIMIT/WHERE)Introduction In this article, we’ll go through basic SQL statements that are frequently used (and the tips), including SELECT, ORDER BY, LIMIT, DISTINCT, and WHERE. In the next article, we’ll go through GROUP BY, HAVING, and INNER JOIN. …Sql10 min read
Rochelle DeansinBuilding a Novel·Jun 14Realistic Dialogue Isn’t a Matter of TranscriptionHow to make dialogue that feels real — When I was in college, one part of my work-study job was transcribing, in real time, class lectures for a deaf student who did not know sign language. We mirrored our computers and I typed into a Word document for him to see. Back then, I used to pride myself…Writing7 min read
Ttc Tin Choi Tai·Jun 14Computing the sum of 9th powersLast time we find the sum of 8th powers S8(n) = 1⁸ + 2⁸ + … + n⁸ = n(n+1)(2 n +1)(5 n⁶ + 15 n⁵ + 5 n⁴ — 15 n³ — n² + 9 n — 3) / 90 We are now computing the sum of 9th powers …Find Sum Of 9th Powers2 min read