Posts

Showing posts with the label github

Why are there so many Machine Learning paid certifications?

Image
I often wonder when I see people completing certificates on ML, are these more for showing the world that you know and understand ML or is it really a sense of achieving something! If it is the latter then why pay ? and why need a certificate at all? Let me elaborate on the resources that are free and can do a better job than most paid ML courses: Googles free website to choose videos, docs,tutorials, courses , sample code and Interactive demos -  https://ai.google/education/#?modal_active=none Have you read this? Triskelion one of the leaders on Kaggle explains how he went from a  beginner and finished up as a master with a top 10 finish -  https://mlwave.com/reflecting-back-on-one-year-of-kaggle-contests/  or  https://machinelearningmastery.com/master-kaggle-by-competing-consistently/ Kaggles Learning modules that are amazing  Machine Learning -  https://www.kaggle.com/learn/machine-learning R -  https://www.kaggle.co...

Top 10 CI systems with Git

Image
GitHub welcomes all CI tools Continuous Integration ( CI) tools help you stick to your team's quality standards by running tests every time you push a new commit and reporting the results to a pull request. Combined with continuous delivery ( CD) tools, you can also test your code on multiple configurations, run additional performance tests, and automate every step until production.

The CEO of GitHub thinks automation will bring an end to traditional software programming

Image
“We think the future of coding is no coding at all,” said Wanstrath The CEO of GitHub, which caters to coders, thinks automation will bring an end to traditional software programming SAN FRANCISCO - Coding - at least as it's traditionally done, by typing arcane commands on a keyboard - could soon become another job for the robots. That was main idea behind GitHub CEO Chris Wanstrath's final keynote address on Wednesday, as he spoke to a room of programmers and developers at GitHub Universe, the popular development platform's annual user conference.

Open Git Bash with default path

Image
Problem:  Every-time I launch git bash I need to traverse to the work-space directory that I am working on. Solution: There are different ways you could do this: the easiest is to Right click on the Windows shortcut that you use to launch git bash, and click Properties. Change the value of "Start In" to your desired workspace path Or use ConEmu where you have a task for starting Git Bash like Note the button "Startup dir..." in the bottom. It adds a -new_console:d: to the startup command of the Git Bash. Make it point to wherever you like Or Add the line to the .bashrc file in the home directory (create the file if it doesn't exist): cd ~ touch . bashrc echo "cd ~/Desktop/repos/" >> . bashrc

.gitignore templates for all programming languages

Image
Problem: Trying to find the best .gitignore for C# Solution: GitHub has a complete  "Collection of useful .gitignore templates" . The .gitignore for Visual Studio can be found here: https://github.com/github/gitignore/blob/master/VisualStudio.gitignore .github adding a template to help streamline review process a year ago Global Optionally add log files to Vagrant and improve file's comments 2 months ago Actionscript.gitignore Add FlashDevelop and executables to Actionscript a year ago Ada.gitignore ensure single trailing newline 3 years ago Agda.gitignore Create Agda.gitignore 4 years ago Android.gitignore Ignore dictionaries to reflect docs 5 months ago AppEngine.gitignore Added template for Google App Engine 3 years ago AppceleratorTitanium.gitignore Added Appcelerator Titanium .gitignore file. 5 years ago ArchLinuxPackages.gitignore Add .jar, .exe and .msi 2 years ago Autotools.gitignore autotools.gitignore: add missing files 10 months ago C+...