Connect with 1,267,837 developers, IT pros, digital marketers, and tech enthusiasts.

Be a part of our friendly, industry-focused community of professionals meeting, networking, learning, and sharing knowledge via articles, Q&As, discussion forums, and realtime chats.

Web Development
Catherine King

How to pass the linkbutton text to the modal popup. Now Im only getting a empty popup

<script type="text/javascript">
$("#linkbutton1").click(function(){ 
var text =$("#linkbutton1).val();
$("#modal_body").html(text);
});
function openModal() {
    $("#myModal").modal('show');
    } …
amqp_direct_exchange.jpg Web Development
dimitrilc
Introduction

In the previous tutorial, we learned how to set up our own RabbitMQ server. In this tutorial, we will learn how to create our own exchange and queue.

Screen_Shot_2022-09-09_at_11.36.41_AM.png Web Development
dimitrilc
Introduction

In the last tutorial, we learned how to send messages to a RabbitMQ queue. In this tutorial, we will learn how to consume those messages in Kotlin.

Goals
Member Avatar for Dani Programming
Dani

When I run getStats() on my PHP instance, it results in the following:

array (
  '10.143.27.235:11211' => 
  array (
    '����' => '',
    'pid' => 3602,
    'uptime' => 49804,
    'time' => …
Web Development
borobhaisab

Hi,

$page = 10;
echo 'page ' .$page; //echoes: 10

echo 'backward ' .$backward = $page--; //echoes: 10
echo "<br>"; echo "<br>";
echo 'forward ' .$forward = $page++; //echoes: 9 …
php
Screenshot_1666231309.png Mobile Development
dimitrilc
Animation Strategy

Welcome to part three of the tutorial; part two can be found here.

For this animation, I have chosen to redraw the YinYang Drawable at each …

Yin_arcs.png Mobile Development
dimitrilc

This is the second part of a series. The first part can be found here.

Draw The Yin

Now that we have the Yang drawn, we will continue onto …

YinYangExplanation.jpg Mobile Development
dimitrilc
Introduction

Taking what we already learned from the previous tutorials about drawing custom shapes and animating along elements along a Path. In this tutorial, we will combine what we learned …

Microsoft Windows
dlh6213

I’m trying to find a way, either with Excel or another program, to find out what combination of numbers will equal a predetermined sum. I’ve tried Excel Help and the …

Member Avatar for humbug Software Development
humbug

i have made a program in school that chooses a random number and you need to guess it. you put in a number and it says higher or lower.

c++
Member Avatar for vegaseat Software Development
vegaseat

The Tkinter module comes with the normal Python installation. It allows you to create Python GUI programs for Windows, Linux or Unix on the Mac. In this snippet we put …

Member Avatar for Deepanshu_1 Digital Marketing
Deepanshu_1

Hey, Can anyone suggest some best social media management tools that allow me to manage multiple social media profiles as well as pages?

Thanks,

Programming
imhim45

Hello.....
Where I am wrong in this program.
I am getting declaration syntax error.

#include<iostream.h>
#include<conio.h>
int factorial(int)
int main()
{clrscr();
int n,r,nr,fn,fr,fnr;
int ncr;
cout<<"/n Enter n …
c++
Digital Marketing
Neil_12

When it comes to digital marketing trends, there are so many areas to keep up with that it can often be overwhelming for an entrepreneur of any kind. It doesn’t …

Member Avatar for Dani Search Engine Strategies
Dani

The Coverage section of Google Search Console shows 206K valid URLs, of which 174K are submitted and indexed, nearly all of which are Q&A pages. The remaining 32K are indexed, …

seo
Screen_Shot_2022-09-08_at_5.47.55_PM.png Web Development
dimitrilc
Introduction

In the last tutorial, we learned how to set up our own RabbitMQ exchanges and queues. In this tutorial, we will learn how to send messages to our …

Screenshot_2022-11-10_at_1.05.40_PM.png Mobile Development
dimitrilc
Introduction

When working with ViewModels, instead of using the default, it is best practice that we inject coroutine dispatchers instead of hard-coding them. The reasoning behind this is that it …

Digital Marketing
benmoz

Hi

I need some help!

We are a small business with around 15 people in the sales/ marketing/ customer service teams. We are looking to gain more visibility …

Member Avatar for Dani Digital Marketing
Dani

I admit I’m a bit stuck in the past when it comes to this. Does anyone know of any decent FREE Quantcast / Compete.com / Nielsen NetRatings alternatives? Don’t tell …

Digital Marketing
digital agency

i want to start my digital marketing agency .i have knowledge about digital marketing but i am confuse how to do work step by step.
what is the step for …

Web Development
OmarAli84

Hey guys!~

the code below is generating this error message "Type mismatch: cannot convert from int to ResultSet" there is no integer types in the database i have made …

Search Engine Strategies
Allison2009

Whether blog commenting and Signatures in Forums with links are treated as spam by google.

Your answer would help in getting my doubts clarified.

Thanks in Advance

seo
Web Development
sam023

i want to know is there any inbuild function to add spaces in javascript after particular interval..!!?

there is string '00009999' i want to add blank space 0000 9999 …

Software Development
abhishek_s_n

heyy guys..

m implementing PEER TO PEER FILE TRANSFER..

What protocol should I use? TCP or UDP? And why?

Search Engine Strategies
kash286

Hi Guys
I based in London and i am looking for best UK Forum.
Thanks

seo
Game Development
MasterHacker110

I have been using Game Maker for a few months now but want to go a bit more advance. Where can i get some nice looking textures?

Oh and if …

Hardware
A1pheus
So I recently bought a whole bunch of computer parts in hopes of making my first build. 


Specs: Intel LGA1155 DDR3 1600 ATX BOXDH77KC
       Corsair Vengeance Blue 16 GB DDR3 …
Member Avatar for baig772 Web Development
baig772

I am trying to implement multi authentication in laravel5.2. I am following this article

My Auth.php

<?php

return [
 'multi' => array(
   'user' => array(
     'driver' => 'eloquent', …
Member Avatar for kiruthi_1 Digital Marketing
kiruthi_1

Which Social Media Sites are helps to get more traffic?

Digital Marketing
Astrologer Mahendhar

what is the use of seo in digital marketing?

seo
Member Avatar for Gabriel9999 Linux and Unix
Gabriel9999

I want to list services currently installed in an ubuntu box. Also want to list the status of the listed services. Thanks.

Member Avatar for Dani Databases
Dani

Sometimes you need to delete duplicate rows in a database :)

In the future, set UNIQUE keys when you need them :)

In the example below, we have a table …

Screenshot_2021-07-26_144320.png Programming
techlifelk

I get the following exception

Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException: Cannot invoke "java.net.URL.toExternalForm()" because "location" is null

My code is

     java.net.URL auth = getClass().getResource("auth.jpg");
    Icon auth1 = new …
Screen_Shot_2022-09-26_at_3.02.02_PM.png Mobile Development
dimitrilc
Introduction

In Android Studio, we can run multiple tests in parallel across multiple devices using the dropdown menu.

Screen_Shot_2022-09-26_at_3.02.02_PM.png

Running instrumented tests this way is very convenient during …

Software Development
Sky_
  1. Using repetition control structure (do while loop), prepare a program that can receive employee id and working hour(s) for three (3) employees.
    The program able to:
    i. calculate Overtime …
c++
Member Avatar for Dani Search Engine Strategies
Dani

On Tuesday, November 15th, the average response time (ms) in the Crawl stats section of my Google Search Console skyrocketed. It's been slowly coming back down since, but I was …

seo
Member Avatar for rproffitt Software Development
rproffitt

Over the years I've seen so many solutions to development but not one is a panacea. Example: I had a 28 day embedded project that would have blown its 28 …

Member Avatar for nancykhoo58 Hardware
nancykhoo58
Member Avatar for Stefce Web Development
Stefce

I want to count and show live users counter on my page. My url structure looks like this domain.com/miningbot?id=pool-v9w1x2y
The users which are inside the parameter should be counted, updated …

Member Avatar for rproffitt macOS
rproffitt

Am I out of date? For over a decade I never worried about any virus on MacOS/iOS. But https://www.reddit.com/r/techsupport/comments/11di44n/do_i_need_antivirus_for_a_macbook/ is kicking it around like you need such a thing.

Member Avatar for Dani Cloud-based Apps
Dani

All this hoopla around ChatGPT and AI got me thinking about voice search. Has anyone created a version of Siri that actually works? (And, no, Google Assistant and Alexa don't …

Game Development
Joaquim_5

i did these code for create RayCasting:

Option Explicit

Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)

Private Const PI As Double = 3.14159265358979

Dim LevelMap(12) As Variant …
Web Development
Read a Book

Hello everyone, i am in some kind of testing stage where i want to test some security flaws on websites/browsers with the cookies.
I want to generate google cookies with …

Hardware and Software
Member Avatar for VinayakNotes
VinayakNotes

Why I want this, is because this is my passion project that I have been want to do this from a long time and I want to get my hands …

Community Center
Java5

Overwhelming inboxes are a typical complaint in the modern day. It might be challenging to keep up with the constant stream of communications and choose the most crucial ones, which …

Member Avatar for Johannes C. Community Center
Johannes C.

The AI 'arms race' between China and the U.S. is heating up. Forget nuclear weapons, the real power now lies in microchips that can outsmart entire nations at any …

birth-of-aidam.jpg Community Center
Johannes C.

Earlier this week, a Reddit account confirmed to belong to Sam Altman, OpenAI's CEO, asserted in a comment that "AGI has been achieved internally." This announcement came after a …

2023-09-29_122752.jpg Hardware and Software
Reverend Jim

Having just acquired a Raspberry Pi Model 3, I am attempting to set it up as an NAS. So far I have set up the Raspberry Pi OS and configured …