Skip to content
View izmaelmag's full-sized avatar

Sponsoring

@juliangarnier
@processing

Block or report izmaelmag

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
izmaelmag/README.md

👾 Hi! I'm Izmael

I'm a web developer with passion to procedural graphics and animated stuff
Currently working at Variant Group as a full-stack developer

Follow me on my twitter and Instagram

Experience

🌎 Variant.net – Full-stack SaaS development 📄 Resume.io – PDF and DOCX documents development, Node.js microservices, UI/UX
🍆 Pure.app – Frontend, UI Kits, Adaptivity, Performance, Analytics
🎨 CodeCode – UI/UX, Websites and services based on Node.js and websockets
💅 GreatSimple – Design systems and UI Kits, sketch to html/css
🐦 Dev Seagulls – Created IT community in Makhachkala

👨‍💻 A lot of random web design and frontend freelance since 2013

Pinned Loading

  1. Rotated Array O(log(n)) search Rotated Array O(log(n)) search
    1
    function rotatedArraySearch (rotated, target) {
    2
      var minInd = 0, maxInd = rotated.length-1;
    3
     
    4
      while (minInd <= maxInd) {
    5
        var midInd = Math.floor((minInd+maxInd)/2);
  2. Base64 Image Data as Texture in ThreeJS Base64 Image Data as Texture in ThreeJS
    1
    // Create an image
    2
    const image = new Image(); // or document.createElement('img' );
    3
    // Create texture
    4
    var texture = new THREE.Texture(image);
    5
    // On image load, update texture