u/jasotastic - 17 Archived Voat Posts in v/programming
u/jasotastic
  • home
  • search

u/jasotastic

2 posts · 15 comments · 17 total

Active in: v/programming (17)

  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››
Comment on: What were some of the first programs you made?

When I was in 7th grade, the only thing I had was the QBASIC examples in 3-2-1 Contact--an old monthly magazine. I made a maze game using text to show the individual room layouts. I didn't understand error checking, so the friends of mine who played it were able to beat it by just hitting 2 on the number pad repeatedly.

When I was in college, I wrote a Minesweeper clone in JAVA. It was actually usable.

1 03 Sep 2016 03:24 u/jasotastic in v/programming
Comment on: Linux marketshare doubled since five years ago. From 1% (July 2011) to 2%, July 2016.

I'm part of that. I installed Chalet on my laptop last week. I don't like that I have to switch to the virtual console (CTRL + ALT +F1) and back after unlocking to see my mouse. Though it is a neat safety feature.

3 01 Jul 2016 20:39 u/jasotastic in v/programming
Comment on: Why can't programmers... Program?

From the article: An example of a Fizz-Buzz question is the following:

Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".

It seems like they would give the rules in the question. The name Fizz-Buzz is just that, a name.

0 27 May 2016 11:59 u/jasotastic in v/programming
Comment on: Why can't programmers... Program?

Are you sure the problem is with not knowing what Fizz-Buzz is? I don't know what it is, either, and I can write the code for it.

void main (){ for (int i=1; i <101; i++){ if (i%3!=0 && i%5!=0) cout << i; else { if (i%3==0) cout << "fizz"; if (i%5==0) cout << "buzz"; } } }

1 25 May 2016 13:04 u/jasotastic in v/programming
Comment on: What industry do you work in?

I work in the banking industry. Most of my time coding is spent writing JS for LiveCycle/Acrobat PDFS and PHP for our online forms.

Day to day for me is a sea of interruptions with the occasional moments of calm when I can work in peace. It certainly keeps things interesting, though I would prefer to get my work done without having to try to chase down my train of thought every ten minutes.

It's a thankless job of I only consider my boss's reaction to my work. Usually, the people who ask for the forms will sent me little notes or emails thanking me for what I did.

2 26 Apr 2016 18:39 u/jasotastic in v/programming
Comment on: Alternatives to Webmatrix for Linux

The coding side feels like most other IDEs regarding debugging and syntax highlighting. In Webmatrix, you can launch your page in a browser to see immediately what it looks like. If you connect to a remote site (like I do) when you save changes to your work, the files are uploaded to the site.

0 21 Jul 2015 21:26 u/jasotastic in v/programming
Comment on: Alternatives to Webmatrix for Linux

A question for those out there who have moved from Windows to Linux or visa-versa. I've been managing a website, and in that time I have grown accustomed to Microsoft WebMatrix for coding with its built-in FTP utility. (I really think of it as Adobe Brackets with the ability to upload all of my changes to the site immediately.) Is there anything like that for Linux? I've tried looking at alternativeto.net--usually an easy check to find similar software, but there are only two options there. Both have 5 or fewer likes. Going through Pinegrow (one of the options) I see LightTable and Aptana. Anyone have any suggestions or something they use that handles both tasks in one program?

1 21 Jul 2015 03:14 u/jasotastic in v/programming
Alternatives to Webmatrix for Linux
2 3 comments 21 Jul 2015 03:13 u/jasotastic (..) in v/programming
Comment on: Programming is sexy

I had never heard of this until reading this thread. Looks cool.

0 14 Jul 2015 19:04 u/jasotastic in v/programming
Comment on: lets fix the CSS

I'll add my voice to the chorus. I like it. Now, who makes that change? The mods? Have they seen this request?

1 14 Jul 2015 18:54 u/jasotastic in v/programming
Comment on: Packt Publishing is Giving Out Free Books Again

I hate that I missed out on the JavaScript testing ebook...

1 14 Jul 2015 17:49 u/jasotastic in v/programming
Comment on: Is it possible to add links via CSS?

I like that this one guarantees that any links I used will only be available for the current slide by moving everything else completely out of the way. I'll definitely check this out.

0 13 Jul 2015 15:58 u/jasotastic in v/programming
Comment on: Is it possible to add links via CSS?

Haven't had a chance to apply it, yet, but this looks promising. The only concern I have is whether a div being transparent. makes the link in the div inactive. If it doesn't, then I'll just have to do some creative link placement between the different "pictures."

0 13 Jul 2015 03:03 u/jasotastic in v/programming
Comment on: Your developers aren't slow

I think of all the stakeholders, the boss (CEO, chairman, etc.) is the only one who is higher than the developers on the list of who has to buy into the project.

0 12 Jul 2015 21:58 u/jasotastic in v/programming
Is it possible to add links via CSS?
4 5 comments 12 Jul 2015 21:44 u/jasotastic (self.programming) in v/programming
Comment on: How to destroy Programmer Productivity

All of my coding and scripting happens at a Help Desk. Interruptions every 10 minutes. Fortunately, they're normally short and I can get back on task, but still...

1 11 Jul 2015 06:57 u/jasotastic in v/programming
Comment on: [TIL] What is the synonym of "I don't care" in programming?

Those are the worst, imho.

In my code, the only variables that don't require a helpful name are i and j. Only because they're counters in almost EVERY program I've written or seen.

1 10 Jul 2015 03:13 u/jasotastic in v/programming
  • ‹‹‹
  • ‹‹
  • ‹
  • 1
  • ›
  • ››
  • ›››

archive has 9,592 posts and 65,719 comments. source code.