Counting sheep outloud in Javascript

Recently, I’ve decided that I need some ******** skillz so now I’ve gone through a process of doing some Kata right before bed time.

This one is for counting sheep. This is for my own development and journal so if you’re going at it own your own, BIG SPOILER ALERT below

eace2bb3908e359c0f591b65ce32b374.jpg

When given a function(3), return a string of “1 sheep…2 sheep…3 sheep…”


var countSheep = function (num){

  //start with a counter i = 1
  // increment i
  // stop until i == num
  // "interpolation" to insert variables
  // return joint array
    let smallArr = "";
    for (let x = 1; x <= num; x++)
    {
       smallArr += `${x} sheep...`
    } 
    return smallArr;
};

Iron Mask Prototype - Face tracking filer in SparkAR

Imagine the man in the iron mask is stuck in a dungeon under water. This is what it would look like. Dark thoughts, I know but was the ‘mood’ at the time.

Created using SparkAR.

Assets

  • Blarney Castle

  • Black glowing lotus

Learnings

  • SparkAR is actually very intuitive to use. The Patch Editor needs a lot of UX work to make useful but the currently state is logical enough that after a new trials and errors, it’s possible to create (o stumble) upon some cool effects

  • Next steps: Create scaled animation and add materials to bubbles

Building a multi layers game using Unity and C#

Building a 2D game where the cube goes around the farm field to collect pieces of gold. It’s COVID time, every one needs to earn a bit of extra income, including once-upon-a-time in-animated objects.

The project goal was to get familiarized with the Unity and Visual Studio Code environments and begin to build a game scene with multiple layers and inter-activities.

The game object [box] should be able to:

  • Obey the rules of gravity and physics

  • Move with left, right, top, down by ADWS and by keyboard arrows

  • Jump with space bar

  • Stalked by the main camera object

Assets:

  • PBR Brack Material (free)

  • ADG_Textures (free)

  • Prototyping_Pack_Free

Settings: Getting the cube to obey the rules of gravity and physics

Code and assign a rigidbody to the cube (see code below) and makes sure Mesh Collider is enabled for planes and terrain

In progress #1

In progress #1

Grass material

Grass material

In progress #2

In progress #2

In progress #3

In progress #3

Gif Demo

Gif Demo

Code: Getting the cube to move with left, right, top, down by ADWS and by keyboard arrows + Jump with space bar

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class cubeBehavior : MonoBehaviour
{   
    private Light myLight;
    private new Rigidbody rigidbody;

    // jump variables
    public float jumpHeight;

    // rotate variable
    public Vector3 rotateAmount;

    // Start is called before the first frame update
    void Start()
    {
        print( message: "Hi from start method");
        myLight = GetComponent<Light>();
        rigidbody = GetComponent<Rigidbody>();
    }
    // declare the light variable
    // grab the light variable
    // Update is called once per frame
    void Update()
    {
        // print( message: "Hi from update method");
        // script to turn light on / off the light variable

        if (Input.GetMouseButtonDown (0)) {
            print ("The Left mouse button was pressed");
            myLight.enabled = !myLight.enabled;
            // rigidbody.MovePosition(transform.position + transform.forward);
            rigidbody.transform.Rotate(new Vector3(0, -10, 0));
            // rotate the cube wieh clicks rigidbody.transform.Rotate(new Vector3(3, 4, 1));
        }

        if (Input.GetMouseButtonDown (1)) {
            print ("The Right mouse button was pressed");
            myLight.enabled = !myLight.enabled;
            // rigidbody.MovePosition(transform.position + transform.forward);
            rigidbody.transform.Rotate(new Vector3(0, 10, 0));
            // rotate the cube wieh clicks rigidbody.transform.Rotate(new Vector3(3, 4, 1));
        }
        // adding keyboard navigation
        if (Input.GetKey (KeyCode.W)) {     
            transform.Translate (0.0f, 0f, 0.01f);
            }
        if (Input.GetKey (KeyCode.S)) {
            transform.Translate (0.0f, 0f, -0.01f);
            }
        if (Input.GetKey (KeyCode.D)) {
            transform.Translate (0.01f, 0f, 0f);
            }
        if (Input.GetKey (KeyCode.A)) {
            transform.Translate (-0.01f, 0f, 0f);
            }
        // adding arrows navigation
        if (Input.GetKey("up")) {     
            transform.Translate (0.0f, 0f, 0.01f);
            }
        if (Input.GetKey("down")) {
            transform.Translate (0.0f, 0f, -0.01f);
            }
        if (Input.GetKey("right")) {
            transform.Translate (0.01f, 0f, 0f);
            }
        if (Input.GetKey("left")) {
            transform.Translate (-0.01f, 0f, 0f);
            }
        if (Input.GetKey("space")) {
            print ("the space button was pressed");
            rigidbody.AddForce(Vector3.up * jumpHeight);
        }
        
    }
}

Code: Getting the Main camera to stalk the cube

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class cameraController : MonoBehaviour
{   public float turnSpeed = 4.0f;

   //create a myCube variable
    public Transform myCube;
    // create offset camera
    public Vector3 cameraOffset;

    // Start is called before the first frame update
    void Start()
    {
        cameraOffset = new Vector3(myCube.position.x, myCube.position.y + 4.0f, myCube.position.z + 3.0f);
    }

    // Update is called once per frame
    void Update()
    {
        
    }
    void LateUpdate()
    {
        cameraOffset = Quaternion.AngleAxis (Input.GetAxis("Mouse X") * turnSpeed, Vector3.up) * cameraOffset;
        transform.position = myCube.position + cameraOffset;
        transform.LookAt(myCube.position);
    }
}

Learnings

I think that Unity and its integration with Visual Studio Code is a good smart relationship. What’s not as smooth is the constant drag and drop and assignment that needs to happen in Unity after the code is in VSC. How come Unity doesn’t allow for code editing in-app? Seems like a mis-opportunity to me.

What’s next:

  • Switching that cube into a farmer, because yes - I’m biased to the pre-conception that a farmer should be on a farm vs. a cube

  • Create a reward interactive whereas upon coming into contact, the gold would turn into dust with some magical animation that celebrates the user’s winning moment

  • Change the keyboard movement to reset based on current cube direction and not original orientation

How I rewire and mod up a Mid Century Modern spring loaded lamp with no prior experience. Insane? I think not!

Ingredients:

Tools:

Time: 4 hrs 
(No cost attached, especially not at a consultant’s hourly rates :P)


 How did you end up rewiring a lamp, Thu? Isn’t there something else you should be doing instead?

Practice what you preach.

That old wisdom that makes doers do and makers make. I don’t claim to be an exceptional doer nor a gifted maker but my obsession with fine handcrafts is real. Craft is at the center of what I do: our startup, our consulting work, our clients, and how I spend my weekend. I also have a soft spot for anything well designed. Call it a professional hazard.

That’s why when I saw a virtual auction for all things Mid Century Modern (MCM), my head followed my heart and my heart followed my hands as I clicked away and watched item after item slipping away under my tight purse string. As a startup dreamer who recently went through a job transition, I can’t compete with what seemingly are the ‘bottomless’ wallets of Long Islanders. Tough competition where I am when it comes to collecting and preserving a piece of history.

When hope just started to dwindle, an item caught my eyes at the end of the auction— a spring loaded lamp, MCM, with original fiberglass and teak wood. I told you I’m slightly obsessed. No shame needed.

“Have got to be in the 50–60s" 

> “must be expensive” 

>> “but it’s so beautiful”

>>> “ok, fine. let me see the price. prepare for impact…”

>>>> “8 bucks?!?! That’s unreal. What’s wrong with it?”

That’s exactly my thought process and sure enough, the description read “Trio spring lamp for repairs. Condition as is.”

The wires were badly damage. The fiber glass — which is a staple design feature of the MCM area and a signifier of authentic pieces — was also cracked and dented.

What could be wrong? Maybe I can fix it. Imagine IF!

This is almost always how I start any project. By being attracted to the problem and not always knowing the solution😅.


Not all those who wander are lost?

I have never wired anything. I have no electrical tools and I’m pretty sure the investment up front to buy wire cutter, stripper, plus electrical wires, plugs, bulbs++ is fueled by the excitement to do. Imagine a world where I can wire a lamp!

If you’ve read this far and thought 'What is the point of this?’ Well, the point is I’m prepared to share How I wired a lamp. And the second point is that there is no point, no agenda. I just felt like I did something good today, and positivity is best shared in a time like this.

Sometimes we fall apart just so we can put ourselves back together

#1: Taking all of the pieces apart and trying to memorize where everything was.

#2: Clip away old damaged wires with the Wire Cutter. Hint: leave enough extra wires on everything you cut. I had to threw out a socket because I got excited using the cutter and cut too close (hence there was not enough wire to reattach.) 

#3: Using the Wire Stripper, remove the wire from your new wires about 0.5 inches or .75 cm and replace the old damaged wires with the new ones. Hint: Be sure to find out for yourself which one is the Hot wire and which one is the Neutral wire. Don’t throw away the packaging like I did and had to Google for it.

What you’re seeing down here is the switch wires setup— the ability to turn on the switch and only certain lamp would lit up. I had to follow the wiring that was here so be sure to take note when you take things apart.

Usually, the Hot wire is black or have special marking and the Neutral wire is white. This is important for safety and to reduce over heating.

#4: Attaching the wires to the light sockets using a screw driver: the Hot wire to the Brass / Bronze color screw and the Neutral wire to the Silver / White color screw. Screw tight!

#5: Once you feel that the wires are secured onto the socket, attach the socket only the lamp itself. Depending on which lamp you have, the components may be different. For me, they come in brass screw and teak wood. MCM all the way!

#6: This lamp has some badly damaged fiber glass parts due to age and usage. (Also tbh I think the positioning of these original screws are not optimal for weight distribution since two out of the three lamps have damage in this way. Even the MCM design masters have something to improve.) Using super glue, I pieced them back together and Pi the Husky inspected along the way.

#7: To avoid further weight damage to the lamps, I invented a new way to keep the screws from damaging the wood and fiberglass. Cutting a simple clear padding and middle hole to allow for extra protection. Super excited for this trick.

#8: Holding my breath and turning on the lamp. 

It is alive!


Now — a spring loaded lamp is cool because it can stand just by using the pressure made by the inner spring. Mr. Frankenstein will have something to have his tea by, and Pi agrees this is a good addition to our home.

Authenticator - Working with Username and Password in Ruby

users = [
  {username: "mashrur", password: "password1"},
  {username: "jack", password: "password2"},
  {username: "arya", password: "password3"},
  {username: "jonshow", password: "password4"},
  {username: "heisenberg", password: "password5"}
]

def auth_user(username, password, users)
  users.each do |user_record|
    if user_record[:username] == username && user_record[:password] == password
      return user_record
    end
  end
  "Credentials were not correct"
end

puts "Welcome to the authenticator"
25.times {print "-"}
puts "This program will take the input from the user and compare password"

attempts = 1
while attempts < 4
  print "Username:"
  username = gets.chomp
  print "Password:"
  password = gets.chomp
  authentication = auth_user(username, password, users)
  puts authentication
  puts "Press n to quit or any other key to continue"
  input = gets.chomp.downcase
  break if input == "n"
  attempts +=1  
end

puts "You have exceeded the number of attempts" if attempts == 4

Creating a simple calculator using branching concept in Ruby

Photo by Editors Keys on Unsplash
Preview

Preview

def multiply (num_1, num_2)
num_1.to_f * num_2.to_f
end

def divider (num_1, num_2)
num_1.to_f / num_2.to_f
end

def addition (num_1, num_2)  
num_1.to_f + num_2.to_f
end

def subtraction (num_1, num_2)  
num_1.to_f - num_2.to_f
end

def mod (num_1, num_2)  
num_1.to_f % num_2.to_f
end

puts "Simple calculator"
25.times {print "-"}
puts "Enter the first number"
num_1 = gets.chomp
puts "Enter the second number"
num_2 = gets.chomp
puts "What do you want to do?"
puts "Enter 1 for multiply, 2 for division, 3 for addition, 4 for subtraction, 5 for mod"

user_entry = gets.chomp

if user_entry == "1"  
puts "You've chosen to multiply"  
puts "The multiplication is #{multiply(num_1, num_2)}"

elsif user_entry == "2"  
puts "You've chosen to divide"  
puts "The division is #{divider(num_1, num_2)}"

elsif user_entry == "3"  
puts "You've chosen to addition"  
puts "The addition is #{addition(num_1, num_2)}"

elsif user_entry == "4"  
puts "You've chosen to subtract"  
puts "The substraction is #{subtraction(num_1, num_2)}"

elsif user_entry == "5"  
puts "You've chosen to mod"  
puts "The mod is #{mod(num_1, num_2)}"

else   
puts "Invalid"

end

Manipulate Strings in Ruby

puts "What's your first name?"
first_name = gets.chomp
puts "What's your last name?"
last_name = gets.chomp
full_name = "#{first_name} #{last_name}"
reverse_name = full_name.reverse
puts "Your full name is #{full_name}."
puts "Your full name is reverse is #{reverse_name}."
puts "Your name has #{full_name.length - 1} characters in it."

What’s your first name?

Thu

What’s your last name?

Do

Your full name is Thu Do.

Your full name is reverse is oD uhT.

Your name has 5 characters in it.