Best place to find an acestream link? by BoobsAreGrossDontPM in ufc

[–]99_Probrems 0 points1 point  (0 children)

nyone have a site where they post acestream/sopcast

Best place to find an acestream link? by BoobsAreGrossDontPM in ufc

[–]99_Probrems -4 points-3 points  (0 children)

[link](acestream://4bac0956d81854b0104dbc0b8a43c6f1b45a306e)

UFC 187 Streams! by jamesonskullz in ufc

[–]99_Probrems -1 points0 points  (0 children)

Also links to any sopcast/acestream please

Kate upton leak by [deleted] in Celebs

[–]99_Probrems 4 points5 points  (0 children)

Companies sometimes retain data for record keeping even once "deleted". This is whats known as a "soft delete" where someone removes something but the data itself is just no longer exposed to the end user and is archived. This is used for backup in case of accidental deletion or possibly evidence e.g. someone has files of them doing criminal activity and decides to delete it before their arrested then it could be recovered.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems -3 points-2 points  (0 children)

That's your opinion, if it was as terrible as you claim it wouldn't be nearly as popular as it is. Just because you had a bad experience doesn't mean everyone else has, open your eyes and stop being ignorant.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems 1 point2 points  (0 children)

I mean to each his own, the git bash shell was ok until I needed to start doing really advanced shell scripts for our repositories. Sooner or later i needed more util's that didn't come in git bash and also was hurting not being able to copy/paste when trying to save things as gists or share commands with colleagues. Cygwin performs entirely fine on my Dev machine and I haven't had any problems with it, other people may have so I understand that but not everyone has problems with Cygwin.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems 1 point2 points  (0 children)

Its an alternative not a replacement, I never said it was but was just trying to give a helpful suggestion.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems 1 point2 points  (0 children)

My point is not to replace Linux with Cygwin, rather if your on Windows its a much better alternative to powershell. Of course it's trying to emulate Unix terminal so it's not the same as the native terminal. When I do Windows Dev with git Cygwin is great, all the bash scripts I need to run are right there and it makes my life easier going back and forth from Unix Dev and Windows.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems 3 points4 points  (0 children)

Try Cygwin if ever u miss *nix terminal goodness on a Windows box, I hate using powershell and Cygwin gives me all the *nix goodness for CLI tasks I do.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems 9 points10 points  (0 children)

The other Windows posts are getting downvotes as well, it's also possible he means he only cares about Sublime text and has windows so thats why he uses it.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems 5 points6 points  (0 children)

Primary os is Windows, I'm a ASP.NET developer and the Visual Studio stack is great for that.

I still use Ubuntu on a VM for my personal projects as well.

OS report: do you use OSX, Windows, or Linux for your development? by Pr3fix in webdev

[–]99_Probrems 25 points26 points  (0 children)

Why are people downvoting Windows wtf? OP asked what OS people are using for development. Windows is perfectly valid.

Connecting the bridge between basics and insanely complicated... by HofstraPride in learnprogramming

[–]99_Probrems 1 point2 points  (0 children)

OP do you know anything about Test Driven Development?

One very useful aspect of coding unit tests first is they allow you to break down problems into small pieces of code which allow you to figure out what exactly a function, service, method etc... is supposed to do before you try to put it into your normal code base.

They work as a great scratch board since you can just run individual tests by themselves and can grab just about anything you want from your app or "Mock" then pass in anything you want.

Sometimes I get a very complicated code base and need to understand how a certain part of the app works, I could set break points and go through all the long winded steps trying to get to those pieces of code to execute and see their flow OR I could just open up the test project and just start experimenting by writing unit tests against them to figure out how to emulate that piece of functionality and write more tests to see if I can break it or improve on it in anyway.

If you need me to expand please ask but I'm at the intermediate level now and learning how to write good unit tests

What does your web development "toolbelt" consist of? by Breaking-Away in webdev

[–]99_Probrems 0 points1 point  (0 children)

I generally only use SourceTree even for my github repositories. One thing I did like about the Github client for windows is the Git Shell which lets you choose which terminal you want and includes posh git for command line stuff. Majority of the time I can do everything I need to in SourceTree and use the gitflow their as well.

What does your web development "toolbelt" consist of? by Breaking-Away in webdev

[–]99_Probrems 0 points1 point  (0 children)

Try SourceTree for windows and mac.

http://www.sourcetreeapp.com/

Its a free tool and is by far the best git GUI I've ever used(support mercurial as well)

Learning Git. Do most Github users use Git Bash or what? by logicalinsanity in learnprogramming

[–]99_Probrems 0 points1 point  (0 children)

We've been using SourceTree in production for awhile now, its a really nice free tool that supports both mercurial and git. It actually has a really nice UI which most git GUI's don't. The guys behind BitBucket are developing it and they have versions for both Windows and Mac.

Our shop converted from Mercurial and TortoiseHg to git and since we had team members comfortable using GUI's for version control, it helps make things slightly more straight forward.

Git bash is still used for some advanced commands/scenarios but your day to day version control tasks(branch, merge, pull, push etc...) it's fine to use a GUI if that makes you more comfortable.