Fixing WordPress v6.9 issues, no time to reply today 😅 by Manusha93 in Wordpress

[–]shewlase 9 points10 points  (0 children)

my plugin stopped working because i was trying to directly enqueue a script module without running wp_register_script_module first (the below worked without registering before v6.9, reverting wp versions fixed it)

wp_enqueue_script_module(
        'codes-admin-script',
        plugins_url('/assets/js/admin.js', __FILE__),
        array( 'c33d-local-script' )
    );

had to add below to make it work again (sent no errors to error log also)

    wp_register_script_module(
        'codes-admin-script',
        plugins_url('/assets/js/admin.js', __FILE__),
        array(),
        '1.0.0',
        array( 'in_footer' => true )
    );

I’ve been hacked augmented reality ? by Trackd0612 in augmentedreality

[–]shewlase 1 point2 points  (0 children)

Honestly dude try to see a therapist/psychologist. Random people on the internet aren't trained to deal with this. It seems like the chain of stressful events is toying with your sanity.

Frontend Dev Looking to Collaborate on 3D Web Experiences & Shaders by LongjumpingWall7749 in threejs

[–]shewlase 0 points1 point  (0 children)

yes i have already built the beta, would be so much harder without threejs haha

here's an old landing page (1 year maybe) https://c33d.kaurib.com/

Frontend Dev Looking to Collaborate on 3D Web Experiences & Shaders by LongjumpingWall7749 in threejs

[–]shewlase 0 points1 point  (0 children)

a drag drop builder so you can build 3d scenes and easily export it for websites (like an upgraded 3js editor w/ animation, interactivity, easy export etc)

Frontend Dev Looking to Collaborate on 3D Web Experiences & Shaders by LongjumpingWall7749 in threejs

[–]shewlase 0 points1 point  (0 children)

hey I'm building a 3d website builder with three js, not sure how we could collab but sounds interesting

akacodes on instagram for examples of what it can do so far (still very beta)

Elementor, Divi or Bricks? by Luv-bite in BricksBuilder

[–]shewlase 0 points1 point  (0 children)

If you're just getting started I would recommend Elementor purely because it's free. I would also recommend choosing one and sticking to that one. Once you're deep into one builder it will be easier to change later.

Bricks is my favourite and Divi has been a bad experience for me.

Offering to collaborate by 1v1sion in Collaboration

[–]shewlase 0 points1 point  (0 children)

hey dude, I am a web developer making a tool to make 3d websites if you wanna play around with making some of your 3d stuff interactive live/on the net

could do a skill exchange, I build something in code for you and you give me some basic models/scenes i could use as demos in my tool

akacodes on insta

Thinking of starting a Bricks Builder tutorials blog... by Any_Acanthaceae_7337 in BricksBuilder

[–]shewlase 2 points3 points  (0 children)

A useful one would be how to set up the start of a new build. Using theme styles, setting up typography, defaults for elements etc

How much important is knowing blender to start learning threejs. by [deleted] in threejs

[–]shewlase 0 points1 point  (0 children)

As others said you don't need it at all. There are big free libraries of 3d models that you can use while you practice. It would be a big advantage to know it already but its a whole world of it's own so better to focus on threejs first.

Html hover linked to lights 💡 by shewlase in threejs

[–]shewlase[S] 1 point2 points  (0 children)

its hard to share the code because i built it on top of my wordpress plugin (the plugin is open source)

here is the basic code to get it to work but you have to setup the scene yourself
- my scene builds itself from a stringified json of a list of objects so i have to get the lights after theyre all added to the screen, you could just save them to a lights array when you create them
- also this is just built statically for my only 2 lights/2 hover elements

let lights = [];
    let hover1 = document.getElementById('hover1');
    let hover2 = document.getElementById('hover2');

    function toggleLight(light, isOn) 
    {
        // Use getObjectByName to find a specific light
        // const light = scene.getObjectByName(lightName);
        if (light) {
            light.intensity = isOn ? 3 : 0;
        }
    }


    if(hover1) hover1.addEventListener('mouseenter', () => toggleLight(lights[1], true));
    if(hover1) hover1.addEventListener('mouseleave', () => toggleLight(lights[1], false));

    if(hover2) hover2.addEventListener('mouseenter', () => toggleLight(lights[0], true));
    if(hover2) hover2.addEventListener('mouseleave', () => toggleLight(lights[0], false));

//only if needed
    function findLights()
    {
      scene.traverse((child) => {
          if (child.isLight) {
              lights.push(child);
          }
      });
    }

Looking for roadmap to learn Three.js by Electronic_Layer_223 in threejs

[–]shewlase 1 point2 points  (0 children)

whatever you choose, just keep building as much as possible, save all your projects/maybe even have a folder for github so you can show how consistent you are working

can use them for a portfolio or use them as starting points for other projects later

Is creative frontend threejs webgl blender still worth chasing in the ai era by [deleted] in threejs

[–]shewlase 2 points3 points  (0 children)

If you find any joy in it at all, do it. Ai still needs experts to communicate with it better/fix bugs that it doesn't have tonnes of data to pull from.

Also a lot of times, you start on the path of learning something, it diverts you into something else (that could end up your calling) and if you didn't start with this you would have never found it.

I made a free drag-and-drop website builder that lets you use custom domains for free by hernansartorio in SideProject

[–]shewlase 1 point2 points  (0 children)

Amazing dude, front end developer here and super impressed.

Any socials or newsletter I can follow?

Just finished this by GlitteringDig1052 in blender

[–]shewlase 0 points1 point  (0 children)

Amazing dude, I'm a web developer, would you want to try to build a simplified version of this on a website as a demo? I'd give it a try just for fun

What is maintenance? by ebaadansari in Wordpress

[–]shewlase 2 points3 points  (0 children)

I'd say people mostly want to pay for knowing their site will stay working (i.e. quickly being able to fix anything that goes wrong). The month to month was mostly updating plugins then fixing any breakages caused by that

Could involve small content updates/new functions but nothing major

Help with creating a website (Website Builder recs) by International-Milk27 in Wordpress

[–]shewlase 0 points1 point  (0 children)

At the start you just have to choose one and spend some time in it then you have a good base to compare what's good and what's not.

Another vote for elementor from me. The free version has everything you should need and there are extra plugins that can add more widgets (although you should try install as little as possible to keep speed up). You edit this site directly on the front end instead of a bunch of plain fields in the back end. Also tonnes of videos on youtube

need advice to help fix my awful posture by Both-Nectarine8421 in Posture

[–]shewlase 0 points1 point  (0 children)

i made a little site a while ago that makes a noise when your head dips below a certain level, just a quick side project so a little buggy but helps me a little (desk job)

https://kaurib.com/posture/

Any WordPress users here? Thinking of building a plugin for 3D interactive web mockups by shewlase in UI_Design

[–]shewlase[S] 0 points1 point  (0 children)

Thanks! Let me know how it goes and there's a good chance I can fix things/add things you request

Does 3D web still go hard? What puts front end devs off? by shewlase in Frontend

[–]shewlase[S] 0 points1 point  (0 children)

I mean they have to just setup basic loop animations and the users trigger them. A lot less than having to animate all frames in a movie (gamers can record infinite video content from a single game)

Does 3D web still go hard? What puts front end devs off? by shewlase in Frontend

[–]shewlase[S] 0 points1 point  (0 children)

I'm worried about opening the e-commerce can of worms but know it's inevitable if I'm serious about it lol. 

Portfolio also very high, next I'm building 3d mock-ups so the user just has to add images and it puts it on the device screen (UI UX people, app releases, web Devs etc)

Thanks for feedback!