-
Replied To a Post in how to play multiple video in hero image ?
Just for clarity, https://en.wikipedia.org/wiki/Hero_image doesn't seem to mean there is delay. Since this appears to be dependent on the user's phone, PC or such maybe the issue is not your … -
Began Watching how to play multiple video in hero image ?
how to play multiple video in hero image without any delay ? -
Created 10% of the world population is in quarantine.
That happened. Hope none of you are in North Korea as the penalty for having or suspected of having COVAD-19 is quite stiff. -
Began Watching 10% of the world population is in quarantine.
That happened. Hope none of you are in North Korea as the penalty for having or suspected of having COVAD-19 is quite stiff. -
Replied To a Post in c++ library snippets
Should you adher to the C++ standard here and preface these with an underscore? Read https://en.cppreference.com/w/cpp/language/user_literal -
Began Watching c++ library snippets
Here's a c++ library snippet that could be useful for string formatting (sorry, can't find how to add code tags): #ifndef STRINGFORMAT_H #define STRINGFORMAT_H const char newln { '\n' }; … -
Replied To a Post in vb.net 20109 build a client applications for desktop with NET Framework
I'm going to decline writing a long answer. I will say I use the windows forms app. -
Began Watching vb.net 20109 build a client applications for desktop with NET Framework
I want to build a client applications for desktop with NET Framework and MySQL database. i can create new project with windows form control library or windows forms app. What … -
Replied To a Post in Connect NFC Reader to VB6 Application
I'm going to have to be told more. VB6 apps as far as I know don't run on Ubuntu. So until you reveal more, I'm going to write this will … -
Began Watching Connect NFC Reader to VB6 Application
hi, i'm new in using ubuntu and i want to know how can i connect the nfc reader to my vb6 application. -
Replied To a Post in help me code the python to java
I would be guessing you need someone to convert this to Java but why not take it line by line and use a tutorial for each line? The first line … -
Began Watching help me code the python to java
p=int(input("Enter money: ฿ ")) n=int(input("Enter price: -฿ ")) x=p-n print("Change is ฿",(x)) print("Bank 1000 =",(x//1000),('bill/bills')) print("Bank 500 =",(x%1000//500),('bill/bills')) print("Bank 100 =",(x%1000%500//100),('bill/bills')) print("Bank 50 =",(x%1000%500%100//50),('bill/bills')) print("Bank 20 =",(x%1000%500%100%50//20),('bill/bills')) print("Coin 10 =",(x%1000%500%100%50%20//10),('coin/coins')) … -
Replied To a Post in amino acids program
https://www.daniweb.com/welcome/rules tells us you have to show evidence of your work as in code. Your post seems to be asking for others to write the app or code for you. … -
Began Watching amino acids program
Can someone help me with this program? How do you discard values? Below is a code that was used in the first expedition to Mars, which simplified the two-letter … -
Gave Reputation to steve.durfee in Trump
You sound like a typical snowflake. Impeachment will save us.....LOL...Trump 2020 -
Gave Reputation to pritaeas in Working with dates in Windows Forms - C#
You can use `DateTime.Parse()` to convert your string to a `DateTime`. `DateTime` variables can be subtracted resulting in a `TimeSpan` containing the difference. -
Replied To a Post in C# - Converting Entire String to Uppercase
.ToUpper looks correct. Check out https://docs.microsoft.com/en-us/dotnet/api/system.string.toupper?view=netframework-4.8#System_String_ToUpper Note what str2 and str3 are as the example runs. -
Began Watching C# - Converting Entire String to Uppercase
Is there a way to convert an entire string to uppercase? I tried using Char.ToUpper but that only worked for the first character inside the string. I want to convert … -
Replied To a Post in Working with dates in Windows Forms - C#
So what dates need to be supported? Why not use DateDiff? (I already noted where it can fail.) -
Replied To a Post in Working with dates in Windows Forms - C#
> Therein lies madness. I'm not kidding. If you research our date system you find that due to history some days are missing so many days between dates only works … -
Began Watching Working with dates in Windows Forms - C#
I have 2 textboxes on a form that accept dates. I dont have a drop down box, I just let the user enter the date themselves. I then want to … -
Replied To a Post in What is the new techniques of ASO in 2020?
I have to ask. What does a VPN have to do with ASO? -
Began Watching What is the new techniques of ASO in 2020?
Hi, everyone, I have a question about Latest Techniques of ASO in 2020. Do you know? Please let me know. -
Replied To a Post in PayPal account [name deted by moderator]
A few issues here. 1. Not on topic. 2. Not how to deal with such problems. That out of the way, contact the bank to dispute the charges and issue … -
Began Watching PayPal account [name deted by moderator]
[name deted by moderator] has a paypal account and been using my sunrise debit bank card to make transactions that are not approved by me -
Gave Reputation to Lightninghawk in How to block content on hotel network
The owners are considering Meraki. Thanks Dani! rproffitt, the chain forces them to pay hundreds of thousands in royalties and provides almost no support or assistance. I have actually tried … -
Replied To a Post in What did it take you entirely too long to learn about software testing?
Nod to JamesCherrill. My work involved and still does getting products out of the engineering cycle and into the world or production. One of our company's best methods for doing … -
Began Watching What did it take you entirely too long to learn about software testing?
If you made a list of "If I knew then (when I got started) what I knew now," what would you include? -
Replied To a Post in Configuring the compiler in Code Blocks
@Xozz. I had hoped you would tell me where you got Code Blocks so I could see if they had a tutorial for first time users. But you didn't so … -
Replied To a Post in Configuring the compiler in Code Blocks
Which leads me to ask: Why use Code Blocks if it doesn't install and work right out of the blocks? Could you use something else? Can you share a link … -
Began Watching Configuring the compiler in Code Blocks
Hi. I just installed Code Blocks. I want to just get started with programming. It seems that I have to configure Code Blocks therefore, setting up a compiler. How should … -
Replied To a Post in Defining what a developer is
That being said, I encourage developers to keep trying and improving. As to the wheel, would you say Elon Musk's interpretation of a pickup truck is a hack? -
Began Watching Defining what a developer is
It's interesting how many act and think of themselves as 'developers' when it comes to modding and creation of mods. If you're a legit developer/programmer (using the programmer def of … -
Replied To a Post in Server 2016 migration server name & ip
Yes. -
Began Watching Server 2016 migration server name & ip
I'm going to upgrade some servers from 2008 to 2016 clean install, the servers are domain controllers and file server, is it possible to use the same name and ip … -
Replied To a Post in Tic Tac Toe game C++
While it may not use stacks you can find over 55 implementations of Tic-Tac-Toe at https://rosettacode.org/wiki/Tic-tac-toe so I'm going to say you have a lot of examples all in one … -
Began Watching Tic Tac Toe game C++
Hello! I am a beginner at c++ and want to create a tic tac toe game using stacks. So, I am very much in need of an example of code … -
Replied To a Post in Buisiness Questions
This reminds me of one metric of a Social Credit Score. Your metric is just one of many you can implement. I'm not saying you should but there are many … -
Began Watching Buisiness Questions
So, I am a post grad student in the software development field, and I am not working at the moment, but I have some questions on Business Rules, User Stories, … -
Replied To a Post in Apache PHPMailer
While I can't guess why you need this. Why not try it? Sendmail for me has worked alongside other mail systems for a very long time since sendmail as in … -
Began Watching Apache PHPMailer
Hi, quick question as I was wondering if I could setup PHPMailer and Sendmail both on the same Apache server? Wasn't sure if Apache would only allow one? Thanks in … -
Gave Reputation to Ninja_1 in How to hide div when specific menu item is clicked - Angular 6 +
How can I show a div when menu item is clicked in angular? The Div show fine when I click list item, but dsn't disappear when I navigate to other … -
Gave Reputation to anand9796 in HTML and HTML5
1.HTML5 supports both audio and video whereas none of these was a part of HTML. 2.HTML does not allow JavaScript to run within the web browser whereas HTML5 provides full … -
Replied To a Post in math domain error
From http://www.mclph.umn.edu/mathrefresh/logs3.html > Item 2. log 0 is undefined. It's not a real number, because you can never get zero by raising anything to the power of anything else. You … -
Replied To a Post in math domain error
Could it be trying to get the log of a number that is less than or equal to zero? Example that works: import math import logging n = 1 while … -
Began Watching math domain error
hello everybody im trying to compute the log(n) while n in the first time =10 and second time =100 , third =1000 and fourth = 10000 but an error still … -
Replied To a Post in How to improve the traffic in 2020
http://www.yoursstore.in is NOT secure. Why is that? -
Began Watching How to improve the traffic in 2020
I am sharing the my own website [yoursstore](http://yoursstore.in/) please check and tell me the what i need to improve in my website. -
Replied To a Post in hi.. can anyone do this code??im so stuck at 2c..
6. The CTO of the airline has changed the requirement to include a web based system. Implement this in a LAMP system. Your top post sounds like homework. You'll have … -
Began Watching hi.. can anyone do this code??im so stuck at 2c..
1. Airline Reservation System Green Dot airline has just purchased a computer for its new automated reservation system. You have been asked to program the new system. You are to …
The End.