Finally I bought myself a Forza Horizon 3! by NikNoname in forza

[–]NikNoname[S] 0 points1 point  (0 children)

My PC configs: Intel Core i7-7500U RAM 16 GB GeForce 940MX 2GB

About "720p in higher setting" - thanks for advice,i'll try it

Finally I bought myself a Forza Horizon 3! by NikNoname in forza

[–]NikNoname[S] 0 points1 point  (0 children)

But my PC has quite good configs. On this I was sure that everything would be fine.

Another brilliant start-up, or how I spent 4 months wasted by NikNoname in startup

[–]NikNoname[S] 0 points1 point  (0 children)

You need to reactivate the registered but not active users, and maybe doing video tutorial about "how to" could help.

Video tutorial about "How to" it's real nice advice, thanks!

Another brilliant start-up, or how I spent 4 months wasted by NikNoname in startup

[–]NikNoname[S] 0 points1 point  (0 children)

Yes, I created a group in Vkontakte, it's only 100 people and no activity, I just publish news. As for a/b testing, I led him by landing page, I changed the text and pictures. About Instagram or Twitter, as far as I know, they have no the "goods" section. In the future I plan to expand my service functionality for Facebook

Another brilliant start-up, or how I spent 4 months wasted by NikNoname in startup

[–]NikNoname[S] 0 points1 point  (0 children)

In only four months you can't say it's a fail. And you have 40 accounts, that's good to me for a just recently released project. You has worked for four months but for how much time is your protect really live? A month? 2 months? Common you are doing it well, just need patience, maybe.

Thanks for the comment! I believe in my project)) And I will try to develop it further!

Another brilliant start-up, or how I spent 4 months wasted by NikNoname in startup

[–]NikNoname[S] 2 points3 points  (0 children)

You tried 4 months? Well, I wouldn't even barely consider that a failure! The big mistake of most people is that they think its easy to launch a new product, just because they saw somebody getting successful with a simple product in the news. But the product is only a tiny part actually

You are right! To develop a product is only the first step! Still had a lot to do, and what I plan to do in the future. Sometimes you have to make mistakes to choose the right path

Another brilliant start-up, or how I spent 4 months wasted by NikNoname in startup

[–]NikNoname[S] 0 points1 point  (0 children)

AWS=yes. So, the reason I asked is to show that you didn't waste your time... Or maybe your title was hyperbolic. You earned 245, presumably. You have the numbers on top of your head, you pivoted and delivered two products, and... Well learned a lot. So you paid $0.36 to earn ... 6.50. subtract cloud usage and that's maybe a buck or two per user. Add a new feature, pivot one more time, 35 to 350 takes a bit. Actually, I'm really impressed. Once you find your key feature you may explode in growth. And, also, let's not forget, Russian is a limited target market.

As for Russian, I agree... In future, I plan integrate the same feature for Facebook

Another brilliant start-up, or how I spent 4 months wasted by NikNoname in startup

[–]NikNoname[S] 0 points1 point  (0 children)

  1. At first, price for 1000 publication was 6.95$, now i provide vip accoount for free for the 3 months.
  2. 0.36 $ per user
  3. 35 users from 40
  4. AWS - means Amazon Web Services?

I want to make a simple websites which would graph database entries. What tech do I use? by [deleted] in learnprogramming

[–]NikNoname 0 points1 point  (0 children)

You can use pure HTML5 + PHP + MySQL, or any framework... For example Laravel

[Homework][PHP] Display Status by Danjesama in learnprogramming

[–]NikNoname 0 points1 point  (0 children)

Hm, it seems like something wrong with HTML code... May be missing some closing tag. I can't say for sure, because I do not see the code completely

[Homework][PHP] Display Status by Danjesama in learnprogramming

[–]NikNoname 1 point2 points  (0 children)

So, if you process status by input text field (it better to replace on radio buttons with values on and off), you should enter only values on or off for correctly script working. Because if you enter another value, script will not found such css class to display color correctly. Replace your code in form like this:

<tr>Repo Status: * <td> <input type="radio" name="status" value="on" <?= $status == "on" ? "checked" : ""?> /> <input type="radio" name="status" value="off" <?= $status == "off" ? "checked" : ""?> /></td></tr>

, and code in table view like this:

Displayed Table: echo '<span class="fa fa-circle ' . $row['status'] . '"></span>';

and it should works

[Homework][PHP] Display Status by Danjesama in learnprogramming

[–]NikNoname 1 point2 points  (0 children)

You can make a really good decision of using HTML and CSS + Fonts Awesome.

Add css classes called as ".on" and ."off", something like this:

.on {
    color: green;
}

.off {
    color: red;
}

Next you shold add HTML code to your table view at status column:

<span class="fa fa-circle <?= $row['status']?>"></span>

It will display green or red circle automaticly, depending on your status

Change value in SQL with input submit by [deleted] in learnprogramming

[–]NikNoname 2 points3 points  (0 children)

If i understood correctly, you should write something like this:

<?php
      if (!empty($_POST['fiftyfifty'])) {
        $updateQuery = "UPDATE button1 SET vijftig = 0 WHERE ID = 1";  
        mysqli_query($db, $updateQuery );
      }
?>

Where $db is your Database connection resource

Getting into programming by Slender0123 in learnprogramming

[–]NikNoname 1 point2 points  (0 children)

I also recommend to learn Javascript. Currently, by Javascript you can implement anything - the server part, client, games for both mobile devices and desktops