Skip Navigation
Are there any platforms or services similar to Laracasts?

I don't mean services like MOOCs, but rather platforms that go in-depth into tech stacks and related technologies like how Laracasts focuses on PHP and its ecosystem. It could be about any language or technology.

1
[DISC] Survival Story of a Sword King in a Fantasy World chapter 186 - 187
survivaloftheswordking.com survival story of a sword king in a Fantasy world chapter 186

Read survival story of a sword king in a Fantasy world chapter 186 - High English chapter scans - Release At. survivaloftheswordking.com

0
I was contacted by a recruiter, but I can't find anything on the company.
  • Exactly the same company. The fact that all of their glassdoor reviews are from India made me rethink if I should follow through. We'll see how it goes, but making a blacklist sounds pretty dope, so that's a nice new goal.

  • I was contacted by a recruiter, but I can't find anything on the company.

    Preamble: I'm sure there's a better community to ask this question, comment below if you're aware of it.

    Okay, for background I'm a bootcamp student, I'm still learning, but I'm almost done. I've been tweaking my LinkedIn as I go, trying to be more attractive for recruiters in the future. Well, last week I was contacted by a recruiter, and asked if I was interested in job opportunities. I did some brief research, and it looks like an actual company on Glassdoor. Anyway, I sent over my resume, and was on a call for maybe 5 minutes. We talk for a bit, and she asked me how I am in interviews and my experience. I tell her that I've been "technically" freelance, but I haven't done anything because of starting cost, but she seemed to ignore that concern. Towards the end of the call I asked her if this would be with her company, and she said yes, and then I said bye.

    Now, the problem is that this company is specifically for interview prep, and helping students get hired at other companies. While she said I'd be with her company, I'm concerned that I'm trying to be sold something here. The company is called GigaMe, and there is barely anything online about them.

    So, my overall question would be, "what would you do?" Or, what should I expect? I don't think i should get my hopes up, but any advice would help.

    13
    What got you into coding ? (aside from money)
  • For some reason in middle school I tried it and, for obvious reasons, couldn't figure it out. Then in 2012-2014 Reddit kept telling everyone to learn Python. I failed that and kept trying randomly for 10 years. I've only recently begun making progress in web dev, which is deliberately avoided because of Reddit language opinions.

    Ignoring all of that, I really like text editors for some reason, and I'm on a journey to make some. I still haven't made any, but it's a goal.

  • Deleted
    *Permanently Deleted*
  • Because of the difference is that there's a hard cut in continuity with the teleporter. The body is destroyed. In normal life, our body does get replaced, but the continuity remains equal through that time. With the teleporter, everything gets replaced at once, which is a hard continuity cut.

    For this reason, sleep doesn't affect continuity, just its potency and what can be accessed during sleep. If we turn a microwave off by unplugging it, whatever continuity it has ceases, this is in no way equal to sleeping. The functions, information, and mind are still present and functional.

  • [Review] Mother of Learning: well paced time-loop with plenty of twists
  • If you loved Cradle, then you might like Bastion. If Crafle is eastern, then Bastion is Greco-Roman.

    Scorio will rise from the ashes to conquer the ten layers of hell.

    Reborn without memories, Scorio learns that he is a Great Soul, a legendary defender of the ancient city of Bastion. That within the hallowed halls of the Academy and under the stern eyes of the underworld’s greatest instructors he will enjoy enormous privilege, rediscover unique and wondrous powers, and one day return to the millennium-old battle against their infernal foes.

    Until he is betrayed. Singled out and sentenced to die for crimes he can't remember, Scorio is hurled to his doom—and forgotten.

    But from even the dimmest spark an inferno may one day rage.

    Clawing his way back from oblivion, Scorio vows to return to the Academy at any cost. To emerge from the ruins and within those golden walls defeat his elite classmates in a quest to ascend the ranks and change the course of history. For only then will he learn about his forgotten past, and why his enemies have rightly feared him since the day he was reborn

  • Can anyone walk me through a React phone component?
  • I'll stay away from the LLMs for now -- they're largely unhelpful anyway.

    The value of those elements needs to be concatenated and displayed to the user. Is that right?

    Right. The other components with a single text box seem to work fine, it's the multiple boxes in the phone component, and it's local state, that are confusing me to no end.

    I think what you're talking about are Signals from Preact?

    Oh, no, when I was talking to Bing it said that the local state interferes with the parent state, so I instead need to bring the parent state into the child. It sort of makes sense? At least the part that local and parent state can interfere with each other makes sense.

    If you're still interested we could try writing a couple of basic components that get us part of the way there.

    Please, I'm all ears. I have a feeling that your approach will help me a lot.

  • Can anyone walk me through a React phone component?
  • If there's any links, resources, mental models, or anything that you or anyone else think would be helpful in getting this to work, I'm all ears. Also, since it's pretty obvious that this is an assignment, my limitation is that I cannot use useEffect, and the PhoneComponent has to use 4 inputs.

    I've been stuck on this for about a week now, so any help, feedback, insight, or articles I should read would be incredibly appreciated.

  • Can anyone walk me through a React phone component?
  • Hey, I'm just now seeing this. So, my component hierarchy is something like this:

    App

    • Form
      • TextInput
      • PhoneInput

    The TextInput components are very simple:

    import { ErrorMessage } from "../ErrorMessage"; //this function can be used to determine if the error message renders based on criteria
    
    export const FunctionalTextInput = ({
      dataProperty,
      errorMessage,
      placeholder,
      value,
      propertyHandler,
    }: {
      dataProperty: string;
      errorMessage: string;
      placeholder: string;
      value: string;
      propertyHandler: (property: string, e: string) => void;
    }) => {
      //Object.keys(initialUserData)[0]
      return (
        <>
          <div>
            {dataProperty}:
             propertyHandler(dataProperty, e.target.value)}
            />
          </div>
          
        
      );
    };
    
    export const FunctionalTextInput = ({
      dataProperty,
      errorMessage,
      placeholder,
      value,
      propertyHandler,
    }: {
      dataProperty: string;
      errorMessage: string;
      placeholder: string;
      value: string;
      propertyHandler: (property: string, e: string) => void;
    }) => {
      //Object.keys(initialUserData)[0]
      return (
        &lt;>
          <div>
            {dataProperty}:
             propertyHandler(dataProperty, e.target.value)}
            />
          </div>
          
        
      );
    };
    

    The shape of my data is like so:

    export type UserInformation = {
      firstName: string;
      lastName: string;
      email: string;
      city: string;
      phone: string[];
    };
    

    In my Form Component, I have two functions that work in the TextInput component, but not the PhoneInput component.

    const dataHandler = (e: FormEvent) => {
        e.preventDefault();
        userDataHandler(formData);
        setFormData(initialUserData);
      };
    const propertyHandler = (property: string, value: string) => {
        setFormData((prevProp) => ({ ...prevProp, [property]: value }));
      };
    

    So, over the past few hours I've been trying to talk to bing about this, and get some answers. After a few hours, I finally think the problem is a conflict of state. It seems like the state I'm using in my PhoneInput component interferes with the state of the parent component. This seems to be the case since when I click submit, my dataHandler function doesn't trigger for the PhoneInput component.

    So, I guess now I'm wondering how that works? I've heard of raising state to the parent, but passing state down, not as data, but as actual state, sounds difficult and somewhat complex. I'm wondering how to use this technique, the uses, and how I can determine when to use it. Or, better yet, maybe I'm missing something and the answer is right outside my reach.

    The phone input in question:

    // This is a component that is used for the phone input
    // it wall accept 4 inputs, and "lift" the values to the parent component as a single, unformatted string.
    
    import { ChangeEventHandler, useRef, useState } from "react";
    import { ErrorMessage } from "../ErrorMessage";
    
    type TPhoneInputProps = {
      errorMessage: string;
      dataProperty: string;
      higherPhoneState: string[];
      propertyHandler: (property: string, e: string) => void;
    };
    export const FunctionalPhoneInput = ({
      errorMessage,
      dataProperty,
      higherPhoneState,
      propertyHandler,
    }: TPhoneInputProps) => {
      const [phoneState, setPhoneState] = useState(["", "", "", ""]);
      const phoneNumber = [
        useRef(null),
        useRef(null),
        useRef(null),
        useRef(null),
      ];
      const phoneNum0 = phoneNumber[0];
      const phoneNum1 = phoneNumber[1];
      const phoneNum2 = phoneNumber[2];
      const phoneNum3 = phoneNumber[3];
      const phoneChangeController =
        (
          index: 0 | 1 | 2 | 3 //  1 | 2 | 3 | 4,
        ): ChangeEventHandler =>
        (e: React.ChangeEvent) => {
          const length = [2, 2, 2, 1];
          const nextInput = phoneNumber[index + 1];
          const prevInput = phoneNumber[index - 1];
          const maxLength = length[index];
          const value = e.target.value;
          const shouldGoToNextInput =
            maxLength === value.length &amp;&amp; nextInput?.current;
          const shouldGoToPrevInput = value.length === 0;
          const newState = phoneState.map((phone, phoneIndex) =>
            index === phoneIndex ? e.target.value : phone
          );
          if (shouldGoToNextInput) {
            nextInput.current?.focus();
          }
          if (shouldGoToPrevInput) {
            prevInput.current?.focus();
          }
          setPhoneState(newState);
          console.log(newState.join(""));
          console.log(dataProperty);
    
          // Concatenate the new state with e.target.value to get the full phone number
          // const fullPhoneNumber =
          //   newState.slice(0, index).join("") +
          //   e.target.value +
          //   newState.slice(index + 1).join("");
          propertyHandler(dataProperty, newState.join(""));
        };
      return (
    &lt;> 
    <div>
            Phone:
            <div>
              
              -
              
              -
              
              -
              
            </div>
          </div>
    
      );
    };
    

    Please note that this component is 1000% broken. I was in the process of changing it with Bings suggestions, but it's frustrating getting anything useful out of the thing.

  • Can anyone walk me through a React phone component?

    I'm currently having trouble with the phone component I'm writing. To be extra vague about it, on my onChange, I'm using a function to move to the next text box. However, when I use my data handler function to raise the value to the parent, it doesn't work. In addition, by adding my data handler to the individual text boxes, it breaks my next Box function.

    ```tsx //dataHandler => raises state data to parent //nextBox => moves focus to next text box

    //onChange should be here { dataHandler(dataProp, e); nextBox(1); } /> ``` In the code above, either nextBox works alone, or if I add my handler, then neither work.

    I'm also wondering about practices. On other forms, I put this type of handler on single boxes, and it works fine. Since my phone input component has multiple boxes, I'm thinking that onChange won't work exactly the same regardless.

    Any advice, tips, or need to know info?

    Ps: I'm on mobile, so I greatly simplified the code I'm using, and the formatting is wonky. Assume that there's an onChange before the brackets with an (e) =>. My app or lemmy is deleting it on submission.

    7
    Clyde, the most advanced and intelligent AI known to man
  • I've used it to help me understand some code concepts and debugging, but over the last two weeks, it went from competent to completely stupid half of the time. It also fails to connect so often, it's unreal.

  • [DISC] Survival Story of a Sword King in a Fantasy World - Chapter 185 - LSComic
    lscomic.com Survival Story of a Sword King in a Fantasy World - Chapter 185 - LSComic

    Survival Story of a Sword King in a Fantasy World. Chapter 185. Ryu Han-Bin was a normal person who just had been discharged from his mandatory military service, when he was transported to another world. Left to fend for himself,

    Survival Story of a Sword King in a Fantasy World - Chapter 185 - LSComic

    End of a season. This is a very touching chapter that proves how great the writers are.

    0
    [DISC] Survival Story of a Sword King in a Fantasy World - Chapter 184 - LSComic
    lscomic.com Survival Story of a Sword King in a Fantasy World - Chapter 184 - LSComic

    Survival Story of a Sword King in a Fantasy World. Chapter 184. Ryu Han-Bin was a normal person who just had been discharged from his mandatory military service, when he was transported to another world. Left to fend for himself,

    Survival Story of a Sword King in a Fantasy World - Chapter 184 - LSComic
    0
    What is it like freelancing? Is it a viable option to earn income?

    I know some basic HTML, CSS. JS, and very little React -- I'm learning it currently. One of the things I see mentioned online is freelancing as a way to earn income. Now, I've tried this before in the past on UpWork, and it was nearly impossible to get anything out of it, I rarely received a response and that required submitting a lot of proposals which in turn cost a lot of money.

    When I go on UpWork, many of the jobs need WordPress developers or an array of skills I simply do not have and appear to require a lot of time to learn.

    Furthermore, I'm in an odd place financially and career wise, where I can't seem to get a job anywhere, not even at places that would've hired me before, and certainly not as a junior developer.

    I suppose I'm asking for advice. If freelancing is an option to pursue, how do I go about it in the cheapest and most cost effect way possible? If freelancing is not the right option, then what can I do with what I do know? Lastly, is the job market in a weird state for every sector?

    6
    What do I need to know to get a job, and how do I get that job?

    For the past year and so many months, I've been in a front-end web developer boot camp. It's self-paced, and for the concepts I know, I feel as though I have a decent grasp on how to use them. Still, based on my failed freelancing attempt and the job requirements I see listed often, it seems like it'll be a long time until I can get a job.

    What I currently know is HTML, CSS, JS. I know some basic git and node. I'm currently learning React and Typescript. I am very certain that this is not enough to land a job, and I would like to know any skills I should know by this point.

    When I do have the skills, what is the best way to apply to jobs, and what should I know when applying?

    0
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)DE
    Decide @programming.dev

    I'll figure it out later

    Posts 19
    Comments 32