Posts

Showing posts with the label PHP

[MySQL with MAMP] Using MySQL with MAMP in a Terminal

Image
  To use the MySQL command line with MAMP or MAMP PRO , perform the following steps: Start MAMP or MAMP PRO Start the server Open Terminal (Applications -> Utilities) Type in: (one line) 
 /Applications/MAMP/Library/bin/mysql --host=localhost -uroot -proot Now you can use the MySQL command line. For exmaple to show all your databases with show databases; .

[Programming Languages] 10 Programming Languages That Can Redefine IT

Image
Here are 10 latest programming languages which approach the art of software development from a fresh perspective, tackling a specific problem or a unique shortcoming of today's more popular languages. Many of them are capable of changing programming in subsequent years. . 1. Go Go, which is easy to program in, is a general-purpose programming language suitable for everything from application development to systems programming. It's more like C or C++. But like Java and C#, Go includes modern features such as garbage collection, runtime reflection, and support for concurrency. Go’s development is still in progress. 2. Dart JavaScript is used to add basic interactivity to Web pages, but doesn’t work well when the application has thousands of lines of code. That's why Google created Dart. It hopes this will change the way Web programming is done. Where JavaScript is a prototype-based language, objects in Dart are defined usi...