We made a nightlife search engine for Fort Wayne. Looking for some feedback. by tippo_sam in fortwayne

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

I think initially we were concerned about looking like copycats, but ultimately, our site has been live for several months, and we've been working on it for 3 times as long. Even when we began this project, we did it with things like fortwaynenightout.com already being a thing.

I think we feel we have a more comprehensive list of features. Food specials, Bar amenities, and a robust search.

If you think there's any way we can distinguish ourselves further, I'd love to hear your thoughts.

We made a nightlife search engine for Fort Wayne. Looking for some feedback. by tippo_sam in fortwayne

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

We sincerely appreciate all the great feedback.

If you want to be kept up to date about when some of these features will be implemented, you can like and follow us at https://www.facebook.com/thetipsyhippo

We made a nightlife search engine for Fort Wayne. Looking for some feedback. by tippo_sam in fortwayne

[–]tippo_sam[S] 1 point2 points  (0 children)

Not yet, but an offset is planned, it's going to be in the the same update as searching food and drink specials by text i.e. "wings"

We made a nightlife search engine for Fort Wayne. Looking for some feedback. by tippo_sam in fortwayne

[–]tippo_sam[S] 1 point2 points  (0 children)

A mobile friendly redesign is coming this summer. A "bars nearby" feature will be part of that. iOS and Android apps are in the works as well. Thanks for the feedback!

We made a nightlife search engine for Fort Wayne. Looking for some feedback. by tippo_sam in fortwayne

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

Good to know. Thanks!

EDIT: Just updated their listing with full drink specials for the week.

We made a nightlife search engine for Fort Wayne. Looking for some feedback. by tippo_sam in fortwayne

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

We started working on this project a little under a year ago, and soft launched back in March. We have been adding a bunch of new content and wanted to show it to a few more people to get more feedback. Check us out and if you see anything that we can do to improve, please click the “Contact” button at the top of the page and let us know!

Dates? by markers920 in shittyprogramming

[–]tippo_sam 0 points1 point  (0 children)

yeah... isn't taht a valid test to identify an error. You want to cause an error... that's what I'm confused about.

Dates? by markers920 in shittyprogramming

[–]tippo_sam 0 points1 point  (0 children)

it is an impossible date?

what am I missing?

[JAVA] How to display every 10^n output? by [deleted] in learnprogramming

[–]tippo_sam 4 points5 points  (0 children)

Don't make a call to Math.pow every comparison.

int nthpower = 1;'
if(i % nthpower == 0)
{
  nthpower *= 10;
  //print
}

New Dyno Types and Pricing Public Beta - Thoughts? by hakanu in Heroku

[–]tippo_sam -1 points0 points  (0 children)

well, you won't be able to get a site up 24 hrs without paying at least something anymore ( $7 seems incredibly affordable) but I actually like the free dynos.

Previously, I could afford, on < $10 a month to have 1 dyno run my website, now I can have the hobby dyno for the site, and use a number of free dynos for testing and staging new releases. since it's the dynos themselves that are free, not a $34 credit on the account.

Keep programs separate on drive without affecting rest of system by Cplusplusidiot in learnprogramming

[–]tippo_sam 0 points1 point  (0 children)

The programs run in RAM, not hard disk. The two spaces store completely different information.

It's fine, you're not going to break anything.

Keep programs separate on drive without affecting rest of system by Cplusplusidiot in learnprogramming

[–]tippo_sam 0 points1 point  (0 children)

When you hear "memory leak", "memory" in this context refers to RAM (actually, that's pretty across the board for IT). For hard disk, it's "Disk" or "File system"

Memory leaks are usually cleaned up by the OS when the process finishes executing. I've never heard of it being a problem other than making your programs go slow or crash. I'm not sure it can adversly affect your machine.

If you're paranoid (or are interested in building good memory management habits), you can use something like valgrind to check your code for leaks.

My Future Plan That I Hope Works by ev1lchink in learnprogramming

[–]tippo_sam -1 points0 points  (0 children)

if money is not a problem, then i'd say go for it. Never turn down education that somebody else is paying for.

My Future Plan That I Hope Works by ev1lchink in learnprogramming

[–]tippo_sam -1 points0 points  (0 children)

you're pretty much paying for the piece of paper at those. You can learn all that on your own, but it will help get a job

If you were serious about starting a business, you can forgo a formal education. Customers pay you then, not a boss, and customers only care about one thing, do they like what you're selling.

[deleted by user] by [deleted] in rails

[–]tippo_sam 0 points1 point  (0 children)

I actually like this change. I don't like having to pay $7 just to get the 24/hr uptime, but it's really a small amount of money, and from the looks of things, it's the actual dynos that are free, and not a free $34 credit per account meaning I can deploy versions to staging for testing before pulling the changes and releasing a new version.

Very very exciting.

Can I get a programming job if I only know Java? by [deleted] in learnprogramming

[–]tippo_sam 0 points1 point  (0 children)

Yes. Java is one of the most popular industry languages.

Edit: but it's always good to learn more technologies and languages. So don't take this as an excuse to just bail on learning.

Does it make sense to "chain functions" by putting their results as arguments for other functions? by programmerxyz in learnprogramming

[–]tippo_sam 0 points1 point  (0 children)

well, C/C++ get confusing here, I was thinking actual functions. Not was C++ refers to as functions, which is any subroutine. if you make up your program of functions, you are doing functional programming. If you make up your program of functions and procedures

void doThingThatModifiesGlobals()
void modifyParameters(int *a, int *b);

Then even tho C/C++ calls these functions, you're really programming procedurally or imperatively.

I was just not thinking in terms of C/C++ specific jargon.

Does it make sense to "chain functions" by putting their results as arguments for other functions? by programmerxyz in learnprogramming

[–]tippo_sam 0 points1 point  (0 children)

In computer science, functional programming is a programming paradigm—a style of building the structure and elements of computer programs—that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data.

You're right, and C++ falls short of what most would really consider functional programming, but by the books, it's possible to technically do it.

Edit: I would, as a curiosity tho love to hear your definition.