Tag: python

  • EL Tool Pack – Free Python tools for Autodesk Maya

    https://i.ytimg.com/vi/qy-b0YIyjKI/hqdefault.jpg Elegant tools to improve and simplify your workflow within Autodesk Maya. The package includes: EL Compact Renamer v1.0, EL Checker Pattern v1.0, EL Distribute v1.0, EL Nth Edge v1.0 Get the tools at https://gumroad.com/eriklehmann Online documentation at https://eriklehmann.com/documentation/ Music: “Breeze Bay” by Hello Meteor Purchase on Bandcamp: https://hellometeor.bandcamp.com/track/breeze-bay Follow on SoundCloud: https://www.soundcloud.com/hellometeor TIMESTAMPS (00:00)…

  • #28 Regular Expressions in JavaScript Part 1

    What Is a Regular Expression? A regular expression is a sequence of characters that forms a search pattern. When you search for data in a text, you can use this search pattern to describe what you are searching for. A regular expression can be a single character or a more complicated pattern. Regular expressions can…

  • Shader Toolkit v1.2 for Autodesk Maya

    https://i.ytimg.com/vi/hxQ60rGmzwg/hqdefault.jpg The Shader Toolkit is a compact management replacement for the Hypershade interface and offers useful shortcuts and utilities to fix common shading issues. Get the tool at https://gumroad.com/eriklehmann Note: A small update for the Material Manager has been released. Please take a look at the online documentation to check out the latest interface /…

  • #1 JavaScript Tutorial | Why you should Learn JavaScript Today

    In this video, I will be answer a basic yet important question of why you should be learn JavaScript today! Initially when JS was invented by Brendan Eich in 1995, it was supposed to function only as a scripting language on the client side for web development. However, JS has evolved and diversified a lot…

  • Lộ trình học web JavaScript? Làm sao học English hiệu quả?

    Nếu muốn mua áo ủng hộ tụi mình, các bạn vào https://bit.ly/aocodergang và comment nha. Các bạn xem danh sách câu hỏi trong mục description nha! Những câu hỏi trong kì này: – VPS có thể làm được những trò gì thú vị – Hai anh dùng laptop nào? Macbook có gì hay – Học…

  • #26 Form Validations in JavaScript

    Original source Link to this post!

  • #12 JavaScript Tutorial | While loop

    A while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement. Once the expression becomes false, the loop terminates. The while loop is primarily used when the number of iterations in not known…

  • #18 JavaScript Tutorial | Objects p.2

    JavaScript is an Object Oriented Programming (OOP) language. A programming language can be called object-oriented if it provides four basic capabilities to developers − Encapsulation − the capability to store related information, whether data or methods, together in an object. Aggregation − the capability to store one object inside another object. Inheritance − the capability…

  • #8 JavaScript Tutorial | Control Statements | Theory

    JavaScript Control Statements also known as Control Structures or Flow Control statements are statements which decide the execution flow of the program. Typically the program execution begins from the first line in the to the last line of that JS code. However, in between this the flow of the execution can be branched(based on some…

  • #2 JavaScript Tutorial | What is Dom? | Document Object Model

    In this video tutorial of JavaScript fundamentals, we will study and understand the concept of Document Object Model also known as DOM. Document Object Model(DOM) – The Document Object Model (DOM) defines the logical structure of documents and the way a document is accessed and manipulated. The name “Document Object Model” was chosen because it…