Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. N

    system logs question

    HI! does the log say that I only have 3 cores running ? or am I reading wrong ?
  2. N

    Entry-level software engineer take-home test. (C language)

    I came there for an entry-level position interview and had a simple task to write an algorythm in any language to manipulate some data in an array and I used python. But since they require C language as well, they gave me this task to complete at home and send them a link. But I decided I am not...
  3. N

    Entry-level software engineer take-home test. (C language)

    Hi everyone. I was given this take-home C challenge. This is for entry-level software engineer position with "basic understanding of data structures, loops and functions". What do you think ? -------- USE C LANGUAGE: 1. Running the console, the program receives a sentence from the user: i...
  4. N

    PHP Can't move files with PHP on macbook

    I solved the problem by changing the temp directory. ---------------------- $filename = $_FILES["image"]["name"]; $destination = __DIR__ . "/uploads/" . $filename; ... if (move_uploaded_file($_FILES["image"]["tmp_name"], $destination))
  5. N

    PHP Can't move files with PHP on macbook

    Hi, I am using VS Code on mac and trying to upload files using PHP code. It throws these errors : Array ( [image] => Array ( [name] => 29264.png [full_path] => 29264.png [type] => image/png [tmp_name] => /private/var/folders/xy/4zn42ksx24z85lcrntm9tg2m0000gn/T/phpu5UVAK [error] => 0 [size] =>...
  6. N

    JavaScript iterating through pages with Javascript

    Okay, I resolved it myself now everything is working. < btn_next.addEventListener('click', moveOn) function moveOn() { div_cards.innerHTML = ""; async function prepare() { let response = await fetch(data.info.next); data = await response.json(); data.results.forEach(elem =>...
  7. N

    Can someone help me make the following piece of code centred?

    OR ADD THIS (red color): <a href="David Oliveira is creating content to support businesses and help people."> <img style="display:block; margin-left: auto; margin-right: auto;" src="https://img.buymeacoffee.com/button-api/?text=Buy Me a...
  8. N

    Can someone help me make the following piece of code centred?

    <a href="David Oliveira is creating content to support businesses and help people."> <img class="image" src="https://img.buymeacoffee.com/button-api/?text=Buy Me a...
  9. N

    JavaScript iterating through pages with Javascript

    Hello! I am just starting with JavaScript and cannot come up with the idea of how to add an Event Listener to a button that would shuffle through pages of this document with APIs in the attached. I need to get the link inside "data.info.next" every time I press the button. If I use...
Back
Top Bottom