Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
dig
- Page 1
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
… to respond , but I wanted to do some tests and
dig
a little deeper into that. I made a comparison test…
Re: How secure is Github?
Programming
Software Development
2 Months Ago
by Reverend Jim
…. How can I lose?" (Rob - you may have to
dig
a little for this one).
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
2 Months Ago
by asadkhan12
Your post perfectly highlights the power of behavioral psychology in funnel optimization! The results speak for themselves—small yet strategic psychological tweaks can make a massive impact on conversions. Trust signals, emotional storytelling, and cognitive ease are often overlooked but make all the difference. The way you broke down each …
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Month Ago
by graceweb
It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not …
'dig' minus the 'bind'?
Hardware and Software
Linux and Unix
15 Years Ago
by Hummdis
… the extremely stripped Linux OS by providing the '
dig
' command. However, it appears that '
dig
' is only available via the 'bind' package…. My questions is: has anyone ever successfully buildt a
dig
binary without all of the 'bind' cruft? Is this even… server, I just want the ability to perform some simple '
dig
' lookups. Any thoughts?
dig and host in cygwin
Hardware and Software
Linux and Unix
16 Years Ago
by sloan31
I'm having trouble with the did and host command in cygwin not working. I've tried removing and reinstalling the packages but same result. Has anyone seen this before and knows how to fix this? Example: $
dig
google.com ;; communications error: connection reset
Re: 'dig' minus the 'bind'?
Hardware and Software
Linux and Unix
15 Years Ago
by abhisek.sanyal
Hi Hummdis, Yes it can be done. Assuming that you have an environment where you can compile specific to your extremely stripped LINUX OS, you can follow the instructions provided in the link - [URL="http://www.linuxfromscratch.org/blfs/view/6.3/basicnet/bind-utils.html"]compiling bind utilities[/URL]. I have done this before and …
Re: 'dig' minus the 'bind'?
Hardware and Software
Linux and Unix
15 Years Ago
by Hummdis
Thanks abhisek! I have a dev system that contains all of the compilation packages. The things are compiled and tested there before it's moved to the production server. I just wanted to make sure this is possible before I embark on a three-hour-tour to find that it can't be done.
Python 3 and Python 2 send email through gmail
Programming
Software Development
13 Years Ago
by TrustyTony
Dig
up this for discussion thread request and some Googling. By little experiment found the different forms for sending message commands. Could no send in Python3 the code of program itself so only simple test "Hello". Sorry that subject is left incorrectly refering program name.
Re: In need of some help
Community Center
17 Years Ago
by DimaYasny
dig
or nslookup
Re: setting up a dns server with fedora
Hardware and Software
Linux and Unix
15 Years Ago
by blud
dig
will always time out if it can't hit the … fedora server doesn't allow for recursion, which is preventing
dig
from being able to connect to the root servers. Would…
Re: Python 3 and Python 2 send email through gmail
Programming
Software Development
13 Years Ago
by sureronald
[QUOTE=pyTony;1639867]
Dig
up this for discussion thread request and some Googling. By …
Re: Change-a-Letter-or-Two-Game
Community Center
Geeks' Lounge
18 Years Ago
by pkraop
dig
Re: How to stop accept call?
Programming
Software Development
14 Years Ago
by yuri1969
dig
VC++ 10 , Load text file to listbox & save (no multiplecolumns)
Programming
Software Development
14 Years Ago
by Juginx
…System::Object^ sender, System::EventArgs^ e) { OpenFileDialog^
dig
= gcnew OpenFileDialog();
dig
->Filter = "PlayList(*.PLS)|*.PLS"; if…(System::Object^ sender, System::EventArgs^ e) { SaveFileDialog^
dig
= gcnew SaveFileDialog();
dig
->Filter = "PlayList(*.PLS)|*.PLS"; if…
How do I convert an integer into digits and add their sum?
Programming
Software Development
16 Years Ago
by ShadowOfBlood
…; int main() { int num, num2, sum = 0,
dig
; cout << "Please enter a number"…= -num; num2 = num;
dig
= num; do { do {
dig
=
dig
/ 10; } while (
dig
>= 10); cout <<
dig
<< " ";…/10)); sum = sum + num2 % 10; num2 = num2 / 10;
dig
= num; } while (num2 > 0); cout << endl;…
can someome please explain this logic
Programming
Software Development
13 Years Ago
by Srinivas0
…> using namespace std; class Reverse { int n,num,
dig
,rev; public: void Rev() { cout<<"enter…=0; while(num>0) {
dig
=num%10; // 48%10=4 rev= rev*10+
dig
; // rev=48*10+4=484 num…(); return 0; } [/CODE] [CODE]
dig
=num%10; // 48%10=4 rev= rev*10+
dig
; // rev=48*10+4=484 num…
HELP!So I'm write the mines game and so far I have just some of the coding
Programming
Software Development
8 Years Ago
by hamzah_1
…... [False, False, False, False]]} >>>
dig
(game, 0, 3) ('victory', 4) >>>…... [False, False, False, False]]} >>>
dig
(game, 0, 0) ('defeat', 1) >>>…game, coords): """Recursively
dig
up square at coords and neighboring squares. …
find armstrong no in a given range
Programming
Software Development
15 Years Ago
by cthoes
…; int main(){ int num,num1; int i,sum=0; int
dig
=0; printf("\n enter the range to find armstrong…=0;i<num;i++){
dig
=0; sum=0; while(i!=0) {
dig
=i%10; sum=sum+
dig
*
dig
*
dig
; i=i/10; } if(sum…
Re: find armstrong no in a given range
Programming
Software Development
15 Years Ago
by n.s.hemalatha
… num,num1; 9. 10. int i,sum=0; 11. int
dig
=0; 12.clrscr(); printf("\n enter the range to…; 20. 21. while(k!=0) 22. { 23.
dig
=k%10; 24. sum=sum+
dig
*
dig
*
dig
; 25. k=k/10; 26. } 27. 28. 29…
Re: VC++ 10 , Load text file to listbox & save (no multiplecolumns)
Programming
Software Development
14 Years Ago
by Juginx
… steamwriter... How to save listBox?? [CODE] SaveFileDialog^
dig
= gcnew SaveFileDialog();
dig
->Filter = "PlayList(*.PLS)|*.PLS"; if…::Windows::Forms::DialogResult::OK) { StreamWriter^ pwriter = gcnew StreamWriter(
dig
->FileName); pwriter->WriteLine(listBox1->ToString); pwriter->…
Re: can someome please explain this logic
Programming
Software Development
13 Years Ago
by PrimePackster
…%10; // 48%10=4 rev= rev*10+
dig
; // rev=48*10+4=484 num=num/10; //484/10 =… assigned, then wouldn't [B]rev= rev*10+
dig
[/B] be equal to
dig
? :icon_frown: [/QUOTE] Off course yes, see this is… (loops) involved, for the first loop, rev maybe equal to
dig
, but see, in next loop rev is not equal to…
Re: can someome please explain this logic
Programming
Software Development
13 Years Ago
by Srinivas0
… getting how this thing working :'( [CODE]
dig
=num%10; //
dig
=12%10=2 rev= rev*10+
dig
; // rev=0*10+2=2 num… (loops) involved, for the first loop, rev maybe equal to
dig
, but see, in next loop rev is not equal to…
why long variable is taking integer value?
Programming
Software Development
16 Years Ago
by ravikiran032
….util.*; class dec{ public static void main(String args[]){ long
dig
,store,use,temp,temp1,end; int count=0,count1=0…,ch; use=1000000000; end=10000000000; while(use<end){
dig
=use; for(int i=0;i<10;i++){ temp…=
dig
%10;
dig
=
dig
/10; ch=(10-i)%10; store=use; for(int k…
Re: why long variable is taking integer value?
Programming
Software Development
15 Years Ago
by rackley86
…class dec{ public static void main(String args[]){ long
dig
,store,use,temp,temp1,end; int count=0,count1=0…ch; use=1000000000; end=10000000000; while(use<end){
dig
=use; for(int i=0;i<10;i++){ …temp=
dig
%10;
dig
=
dig
/10; ch=(10-i)%10; store=use; for(int…
Re: can someome please explain this logic
Programming
Software Development
13 Years Ago
by PrimePackster
… enter 121 as the input. First loop [ICODE]num=121
dig
=121%10=1 rev=0*10+1=1 num=121…. So the second loop is like this [ICODE]num=12
dig
=12%10=2 rev=1*10+2 num=12/10… loop is executed.. so in third loop [ICODE]num=1
dig
=1%10=1 rev=12*10+1=121 num=1…
Problem finding what is wrong with program with no errors (help debugging)
Programming
Software Development
13 Years Ago
by LFCFan_07
… String numberToBarcode1(int num){ String barcode = " "; int
dig
; // the single digit being converted int tempNum;//Temp Variable int…(tempNum); } else{ // reusing the temp variable
dig
= tempNum; } tempNum =
dig
; //0 is a special Case if (
dig
== 0) { barcode += "||:::"; } else{ // …
Re: Java Integer Pyramid - Beginner
Programming
Software Development
14 Years Ago
by emmstarr
…(); //defined this variable outside the loops for later use int
dig
; for (int row = 1; row <= numLines; row++){…\t"); } //print out digits (descending) for (
dig
= row; (
dig
-1) >= 0 ;
dig
--){ //first, print out the value of row System…
Re: Java Integer Pyramid - Beginner
Programming
Software Development
14 Years Ago
by emmstarr
…defined this variable outside the loops for later use int
dig
; for (int row = 1; row <= …} //print out digits (descending) for (
dig
= row; (
dig
-1) >= 0 ;
dig
--){ //first, print out the value of …;); } //print out digits (ascending) for (int n = (
dig
+ 1); ((n != row) && (n >…
SHA1 hash
Programming
Software Development
17 Years Ago
by MohammedNgum
…TObject); procedure SHA1Update(const Buffer: Buf; Size: longint; var Digest:
Dig
; username: String); private { Private declarations } public Len : longword;…(Sender: TObject); var i : integer; Buffer : Buf; Digest :
Dig
; id : String; int : Integer; begin showMessage('connected'); id := …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC