Stefce 146 Posting Pro

Here is a screenshot of jquery folder and the files i there actually. https://prnt.sc/4_9P5whqEiDf
I have updated the jQuery as you told me above.
Still doesnt work.

Stefce 146 Posting Pro

Its weird isn't it?

Stefce 146 Posting Pro

Yes i actually checked the console and it gives me this 3 errors https://prnt.sc/lyK4Ibu_HAny
I am running the site on localhost i still dint uploaded live.
The index.html and the menu.html are inside the same folder

And is wierd that i dont have that files .map inside my js folder
https://prnt.sc/Z_7r8EJ43e0D

P.S
The night i went to sleep it was working great, when i woke up it wast working... bro there must be some aliens here :S
I tried on 5 different browsers to run the website, and its not working O_O

Stefce 146 Posting Pro

I am sorry i didn't included that line in the index.html. But yes already is there the jQuery calling

<!-- ##### jQuery (Necessary for All JavaScript Plugins) ##### -->
    <script src="core/js/jquery/jquery-2.2.4.min.js"></script>
    <!-- Popper js -->
    <script src="core/js/popper.min.js"></script>
    <!-- Bootstrap js -->
    <script src="core/js/bootstrap.min.js"></script>
    <!-- Plugins js -->
    <script src="core/js/plugins.js"></script>
    <!-- Active js -->
    <script src="core/js/active.js"></script>
Stefce 146 Posting Pro

Hello everyone. I need a little help with my html code.
I want to load html file (menu.html) inside my index.html file

I am trying to achieve this using JavaScript.
Here is an example how i am trying to achieve this.

this is menu.html file

<!-- Mobile Nav (max width 767px)-->
<div class="mobile-nav">
    <!-- Navbar Brand -->
    <div class="amado-navbar-brand">
        <a href="index.html"><img src="core/img/core-img/drveniproizvodi-logo.png" alt=""></a>
    </div>
    <!-- Navbar Toggler -->
    <div class="amado-navbar-toggler">
        <span></span><span></span><span></span>
    </div>

</div>
<!-- Header Area Start -->
<header class="header-area clearfix">

    <!-- Logo -->
    <div class="logo">
        <a href="index.html"><img src="core/img/core-img/drveniproizvodi-logo.png" alt=""></a>
    </div>
    <!-- Social Button -->
    <div class="social-info d-flex justify-content-between">
        <a href="#"><i class="fa fa-pinterest" aria-hidden="true"></i></a>
        <a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a>
        <a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
        <a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
    </div>

    <div class="categories-menu">
        <a href="index.html">Почетна</a><br>
        <a href="subfolder/index.html">Столчиња</a><br>
        <a href="subfolder/index.html">Маси</a><br>
        <a href="subfolder/index.html">Даски за сецкање</a><br>
        <a href="subfolder/index.html">Привезоци</a><br>
    </div>
</header>
<!-- Header Area End -->

and this is index.html file

<html>
<head>
    <link rel="stylesheet" href="core/css/core-style.css">
    <link rel="stylesheet" href="core/style.css">
</head>
<body>

    <div id="menu"></div>

    <script>
        $(function(){
          $("#menu").load("menu.html");
        });
    </script>
</body>
</html>

The thing is, the design loads properly. But the functionality doesn't work. When i press the button to open the menu on a mobile device.
BUT when i simply paste the code from menu.html inside index.html works just fine?
Here is a picture how it looks
https://prnt.sc/h-_GWy50wOHN

Jawass commented: Nav bar- drop-down menu html (xhref) coded inline script $? Before consule to be upgrade to mobile application(APK) +2
Stefce 146 Posting Pro

The browsers needs to be random. Mobile traffic mostly. iOS and Android devices.

Stefce 146 Posting Pro

I probably didn't express my self correctly. I dont want to build this, instead i want to download it or buy it :)

Stefce 146 Posting Pro

Yes probably is considered as fake traffic. But in the eyes of google will be real if i will be using high quality proxies. I would be very happy to update the results i have too :)

Stefce 146 Posting Pro

Hi there @dani nice seeing you again :) this forum become so fancy BIG thumbs up on this work!

@rproffitt i want to test SEO effects with this method. How this will impact the rankings on the websites inside search engines. My idea is to send clicks to my website and see what happens. The ATB did well in this project, but the problem is you must be willing to spend much to get little results. That software have very nice features like generating real human behavior on your website. It can send traffic through search engines and more.

Now i want to send direct clicks to my website and see what happens.

I really want to get my hands on this kind of tool :)

Stefce 146 Posting Pro

hello @rproffitt glad you replied. By high trust score i mean the score on that github project to be A+ same as when you are visiting from your browser mobile or desktop.

Stefce 146 Posting Pro

I am looking for an software/script that can generate high trust score browsers, i am using this GitHub project to see the info about the browser and the score. I have tried to create few different projects using ZennoPoster, BAS, Undetectable, ATB. They all create with trust score: F-

Someone out there have some tool that can do this?

Stefce 146 Posting Pro

Also i got another way through this. Is there a program or app to store password BUT in order to access it, two devices need to confirm the session to show the password.

Stefce 146 Posting Pro

The hosting provider is namecheap and the database is SQL and cPanel

Stefce 146 Posting Pro

I want to split database access and permissions with another person. The problem is we don't know how we can make sure we both have the same rights and permissions to operate the database. So if anything goes wrong for example, one wants to change the password of the database or the email the other should confirm that too and should be informed.

Or any possible option for us to have the same rights 50-50...

The website will be for making money we invest in that website 50-50 so thats why we want to make this also...

Stefce 146 Posting Pro

@Dani thank you for your reply. I did tried with echoing the num_rows but didnt return anythng also.

Stefce 146 Posting Pro

I want to echo the results of this mysql query

SELECT username, task_completed FROM accounts WHERE referrer_by = :referrer_by AND task_completed < 1

I have this code so far but this doesnt return anything and it should return the values which are less than 1

$ref_query=$db->prepare("SELECT username, task_completed FROM accounts WHERE referrer_by = :referrer_by AND task_completed < 1");
$ref_query->bindValue(":referrer_by", $user);

$result = $ref_query->execute();

if($result->num_rows > 0) {
    while($row = $result->fetch_assoc()) {
        echo "<br> Username: " . $row["username"] . " - Tasks: " . $row["task_completed"] . " <br>";
    }
}
Stefce 146 Posting Pro

@rproffitt I want to test my skills in UI and thats why i want to be this way :)

Stefce 146 Posting Pro

Okay! After a lot of research and talking with an lawyer, i came with a conclusion that I should not ask for the user Credit Card details.. Instead to ask for the IBAN number, to detect the Bank name of the user and country, with this even if i want to i cannot abuse that number after all, since is only to receive money. So do you have any knowledge in this field on how can i detect the bank name? Or is there any ready to use PHP function/code about this. Like i said i would like to detect the Bank Name and the Country of the user for UI experience purposes. Is that possible?

Thank you for the reply

Stefce 146 Posting Pro

I made an website which i require of the user to enter their credit card details for virtual money transfer inside the website only. I only take the first two numbers of the card in order to detect the Card Type and i take last four because of the UI design.

Is there any chance i can get in trouble with this? If so, is there any recommendations to escape those?

P.S: I know is off-topic but i would be glad to find this out.

Stefce 146 Posting Pro

I need to deoubfuscate a javascript file which i need to change a link inside it can anybody help me how to do that?
I can upload the file also if you need it.

Stefce 146 Posting Pro

Someone can help or not? :/

Stefce 146 Posting Pro

So far i have managed to show the image and position a little bit but i dont get it why it does not appear the same as the image?

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Android List</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="css/searchbox.css">
  <script src="https://kit.fontawesome.com/6cc53d1765.js" crossorigin="anonymous"></script>
  <style type="text/css">
    body {
      background-color: #1d1d27;
    }
    .ignitionText {
      margin-top: 10px;
      animation: move 2s linear infinite;
      background-image: linear-gradient(to right, #fe8a71, #f6cd61, #3da4ab, #0e9aa7, #fe8a71);
      background-size: 200% auto;
      font-size: 40px;
      font-weight: 700;
      letter-spacing: 1px;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: Arial;
    }
    .box-border {
      display: inline-block;
      border: 1px solid;
      padding: 10px;
      height: 80px;
      width: 100%;
    }
    .image-position {
      display: inline-block;
      width: 52px;
      height: 52px;
    }
    .info-text {
      display: inline-block;
      color: white;
      list-style: none;
    }
  </style>
</head>
<body>
    <center>
      <img src="ignitionLogo.svg" width="90" style="padding-top: 30px;">
      <br>
      <h1 class="ignitionText">List</h1>
      <br>
    </center>
    <div class="wrap">
       <div class="search">
          <input type="text" class="searchTerm" placeholder="What are you looking for?">
          <button type="submit" class="searchButton">
            <i class="fa fa-search"></i>
         </button>
       </div>
    </div>
    <hr>
    <div class="box-border">
      <div class="image-position">
        <img src="ignitionLogoImage.png" alt="asdasd" width="100%" height="100%">
      </div>
      <ul class="info-text">
        <li>Item 1</li>
        <li>Item 2</li>
        <li>Item 3</li>
      </ul>
    </div>
</body>
</html>

Here is how its looking on mine website
https://prnt.sc/rn8nlb

Stefce 146 Posting Pro

I want to make this table with HTML and CSS but somehow the image cant appear in the browser... Can you help me?
https://prnt.sc/rmo2xl

.box-border {
    display: inline-block;
    border: 1px solid;
    height: 80px;
    width: 100%;
}
.image-position {
    display: inline-block;
}

<div class="box-border">
  <div class="image-position">
    <img src="igniteLogoImage.png" alt="asdasd" width="42" height="42">
  </div>
  <span>Gurcino Team</span>
  <span>Pool Builders</span>
  <span>Pricing Options</span>
</div>
Stefce 146 Posting Pro

Hey all long time no see!! As i started Internet Marketing i quited to code but somehow everything is about coding... :D
So i am trying to come up with new method but i will talk about that in the next thread :)
so I am trying to create push notification and when i click on it to open an URL in a browser, i am using PendingIntent but i have truble doing that.
Here is the code i have

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        lateinit var notificationManager : NotificationManager
        lateinit var notificationChannel : NotificationChannel
        lateinit var builder : Notification.Builder
        val channelId = "com.example.myapplication"
        val desc = "Test Notification"

        notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager

        val intent = Intent(this, MainActivity::class.java)
        val pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT)

        place_order.setOnClickListener {
            //startActivity(Intent(this, AboutMe::class.java))
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                notificationChannel = NotificationChannel(channelId,desc,NotificationManager.IMPORTANCE_HIGH)
                notificationChannel.enableLights(true)
                notificationChannel.lightColor = Color.GREEN
                notificationChannel.enableVibration(true)
                notificationManager.createNotificationChannel(notificationChannel)

                builder = Notification.Builder(this, channelId)
                    .setContentTitle("Test Notification")
                    .setContentText("Testing Notification Text!")
                    .setSmallIcon(R.drawable.ic_launcher_round)
                    .setLargeIcon(BitmapFactory.decodeResource(this.resources, R.drawable.ic_launcher))
                    .setContentIntent(pendingIntent)

            } else {
                builder = Notification.Builder(this)
                    .setContentTitle("Notification")
                    .setContentText("Test description")
                    .setSmallIcon(R.drawable.ic_launcher_round)
                    .setLargeIcon(BitmapFactory.decodeResource(this.resources, R.drawable.ic_launcher))
                    .setContentIntent(pendingIntent)
            }
            notificationManager.notify(1234, builder.build())
        }
    }
}

How do i make when i receive the notification in the notification bar and click it to open browser with custom link?

  • I dont want to use firebase for this, i hope there is a method with intents

Thanks, really appreciate it

Stefce 146 Posting Pro

Does the circles need to be printed one to another and not overwrite on top of the first?
I did this and the circle showed up but i dont know if 3 circles are drawed or just one.

        <canvas id="myCircle" width="60" height="60"> Your browser does not support JavaScript,
        please update it before you continue</canvas>

        <script type="text/javascript">
          function myCircle(myCircle) {
            var c = document.getElementById("myCircle");
            var ctx = c.getContext("2d");
            ctx.beginPath();
            ctx.arc(30, 30, 26, 0, 2 * Math.PI);
            ctx.stroke();
          }
          document.getElementById("myCircle").innerHTML = myCircle(3);
        </script>
Stefce 146 Posting Pro

Thank you for your reply but i really have no knowledge in JS i just find those lines inside the function on the web and i just like to just create 3 cirlces out of curiousity without copying and pasing lines... Just curious nothing else. :)
If you can show me how to do it i would really appreciate it :)

Stefce 146 Posting Pro

Am trying to draw three circles on the page but nothing shows up, anyone can tell me what is wrong here?

<body>
    <canvas id="myCircle(3)" width="60" height="60"> Your browser does not support JavaScript,
    please update it before you continue</canvas>

    <script type="text/javascript">
        function myCircle(myCircle) {
            var c = document.getElementById("myCircle");
            var ctx = c.getContext("2d");
            ctx.beginPath();
            ctx.arc(30, 30, 26, 0, 2 * Math.PI);
            ctx.stroke();
            return myCircle;
        }
    </script>
</body>

Thank you :)

Stefce 146 Posting Pro

Thanks pal i will try it out

Stefce 146 Posting Pro

Hello everyone its been a while, btw this fresh look its freaking awesome i love it! :)
So i got in mind an idea which i want to try it, selling remote controls for tv online. I need an list or something which i can find the TV model number by remote control number.
For example, this is remote control for samsung tv's
AA59-00582A
But not for all. How can i know for what exact tv models is for?
Sorry for my english i tried to explain best. xD

Thanks and keep it up Dani :))

Stefce 146 Posting Pro

I can't guess what you need to do.

I need just a couple of text and images replaced, thats all.

I found an awesome tool, APK Easy Tool you can decompile and recompile easily.
And it did my job perfectly :)

rproffitt commented: Will take a look at that. Thanks for sharing. +15
Stefce 146 Posting Pro

Can you give me a hint on how can i succeed on this... i really have no idea in decompiling an apk file but i would be glad if there is someone to help me, also i would be happy to pay for it. The apk code is very simple but i have no idea on how they are protecting them. If there is a way i can see the ways of protecting the apk files i can try to figure out something for it.

Stefce 146 Posting Pro

Does all .apk files can be decompiled no matter on how they are protected and secured, and recompile back in apk file?
I have an apk file which i need the source code to change something a little bit.
I tried using javadecompilers but i did not get the main files with code i need.
Is there any alternative to this site or is there any possible way of achiving this?

Thank you.

Stefce 146 Posting Pro

Is there possible chance of changing the WooCommerce "Add to Cart" button functionality or removing it and creating new button, inside the item page?

I found this code but it only replaces the button on the item itself and not in the item page

add_filter( 'woocommerce_loop_add_to_cart_link', 'replace_default_button' );
function replace_default_button(){
    return '<button>Text a Dealer</button>';
}

https://screenshotscdn.firefoxusercontent.com/images/5b7bf7ed-f1d5-4cc1-86e7-157970f10ea4.png

Stefce 146 Posting Pro

Do you have any estimated amount of the price for SMS? Or recommend me a network that do this i will see for myself. :)

Stefce 146 Posting Pro

I want to test things out, so i got this idea but am not too sure if it can be done for free, btw how much money companies charge to send SMS to the phone?

EDIT: I dont want via email because its too old method so am searching for something new, better and lets say easier.

Stefce 146 Posting Pro

Hello everyone how are you doing? I wonder if there is a way i can send a notification or URL from my website to user mobile from PC browser for free, just to confirm the user is real?

Stefce 146 Posting Pro

Why not download the table and upload it to other ?

Stefce 146 Posting Pro

Is this something which is updated to different method or am i doing something wrong?
I want to get my current location on Google Maps what am doing right now is as follows.

Creating GoogleMaps Activity,
Download GooglePlay Services from Android SDK Manager,
Giving Permissions in AndroidManifest for Internet and Location

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET"/>

Giving permission to use my location in OnMapReady

@Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;

    mMap.setMapType(googleMap.MAP_TYPE_TERRAIN);

    if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
        return;
    }
    mMap.setMyLocationEnabled(true);
}

When i try to run this code at my device LG Spirit H440 I doesn't get what i expect to get, it should give me the option to get my current location with blue dot on the maps.

I have created also API KEY in the Google API's console.

What am i doing wrong?

Stefce 146 Posting Pro

Main purpose learning.

Stefce 146 Posting Pro

Hello everyone and happy new year, i wonder is there something that allows you to detect that android device is near you? I want to create an app that will show me android devices that are near me, for scientific purposes. But without my app installed on their devices, so for example to take anything to identify the device model or name or something which will help me to detect is android device. Thank you :)

Stefce 146 Posting Pro

Am recomending you to watch the movie "Ex Machina" you'll get more familiar with it :D

rproffitt commented: Also, you are really going to want a secure smart home afterwards. "Would you like some toast?" +12
Stefce 146 Posting Pro

Really Interesting task actually

import java.util.Scanner;

public class Ex02_33 {
    public static void main (String [] args) {

        Scanner input = new Scanner (System.in);

        int weight;
        int height;
        int bMI;

        System.out.print ("Enter Your Weight in Pounds: ");
        weight = input.nextInt();
        System.out.print ("Enter Your Height in Inches: ");
        height = input.nextInt();
        bMI = (weight * 703) / (height * height);
        System.out.printf ("Your Body Mass Index (BMI) is %d\n\n", bMI);

        System.out.println ("BMI VALUES");
        System.out.println ("Underweight: less than 18.5");
        System.out.println ("Normal:      between 18.5 and 24.9");
        System.out.println ("Overweight:  between 25 and 29.9");
        System.out.println ("Obese:       30 or greater");

    }
}

I have found it on internet!

When i was starting programming i was strugling with these problems... i didnt understanded the given task... i hope you will learn something from this code and try to write in your way. Am waiting reply with your own method for this task. Since if you show this code they will know its copied from internet.

ddanbe commented: Ha,ha I would have used 666 instead of 703! +15
Stefce 146 Posting Pro

BTW i forgot to mention i need an unlimited number of First Names and i do not need the Last Name because every player will have its own AutoGenerated name.
So am searching the logic in creating unique name

Stefce 146 Posting Pro

Hello everyone hope you are doing well, i was busy these days i was having problem with the police in my country, they catch me smoking weed and now i got criminal record... but never mind that i hope will be better in the future. So i got in mind interesting game to make but i need a little help. How I could make an automatic random name generator, what would be the rules to build such an object? Also the names to sound & look natural. Not like (Egrttttr, Asdfgh, Kjutyytsas) :D. Give me some starting ideas how can i achive this?

Stefce 146 Posting Pro

Since i didnt know the scripting language i downloaded program and added suffix at the end -asd and with that i made all images titles a-b-c.jpg and runned the script. The script finished its job great! Thank you, you two @rproffitt @Reverend Jim :)

Stefce 146 Posting Pro

Okay i got it, but it sems like i have titles with just a-b.jpeg is it possible to process like that also ?

Stefce 146 Posting Pro

Yes the file sortfiles.vbs is placed in the folder where all the images are. BTW when i dubleclick the sortfiles.vbs exactly nothing happens, i doesn't get command windows open and no folder is created. Maybe am doing something wrong or i have to install something to run this script?

EDIT: I have mistaken in the file format, the files are all .jpeg so i got it running! Now my question is i get a popup window telling me that folder is created with the related name and every picture that needs to go inside the folder i get a popup asking me to do it, so i need to press "OK" every time new popup comes out. How do i make this automated? Othervise that Enter button will suffer... AND my finger too :P

Stefce 146 Posting Pro

I created .txt file named sortfiles saved the code inside it and renamed to sortfiles.vbs the file sortfiles.vbs has created, I have runed it but nothing happens. Will the code proceed working if there are some images not containing the same order of images title?

Stefce 146 Posting Pro

Nope its way too much work if am doing it manual 70k+ files.

Stefce 146 Posting Pro

Okay, nope am not building an app, i need to get task done, i dont want to do it manually because its more than 20.000 pictures it would take alot. The images are all stored in one folder.

Am searching for code or program that can get the task donee.

Example:

Images Title
Stefan-Rafa-400x500-123uirjht5-1.jpg
Stefan-Rafa-300x300-12a32s-1.jpg
Stefan-Rafa-100-123uirjht5-1.jpg
John-Doe-400x500-123uirjht5-1.jpg
John-Doe-3-1423555-400x200.jpg
John-Doe-300x300-123uirjht5-1.jpg

Create foder and transfer
Folder name > Stefan-Rafa
Folder name > John-Doe

Files Inside folder Stefan-Rafa:
Stefan-Rafa-400x500-123uirjht5-1.jpg
Stefan-Rafa-300x300-12a32s-1.jpg
Stefan-Rafa-100-123uirjht5-1.jpg

Files Inside folder John-Doe:
John-Doe-400x500-123uirjht5-1.jpg
John-Doe-3-1423555-400x200.jpg
John-Doe-300x300-123uirjht5-1.jpg

OS: Windows 10