Blog

Articles about IoT, PCB Design, Simulation and Development

Android word search
4 min read ES CA EN

Android word search

ANDROID PRACTICE M08UF1 A first version of the game will have an initial activity showing a welcome screen, displaying the scores in a list, and featuring a button to play. In this version, the word…

Read more →
1 min read ES CA EN

BackupTool in C#

Create a backup system so that the user can copy individual files, as well as directories, in the following ways: Specifying a single path: in this case, your application will create a folder/file…

Read more →
2 min read ES CA EN

C# sequencing exercise

Serialize a list of cars: To serialize: List cotxes = new List(); Cotxe c1 = new Cotxe(); c1.marca = "fmesasc"; c1.model ="FMESASC"; c1.any =1999; cotxes.Add(c1); Cotxeseriar objecteQueVolemSeriar =…

Read more →
Programming in Android
5 min read ES CA EN

Programming in Android

What are the basic components? Activity: Represents a screen with a user interface. Example: in a mail App, the screen for composing an email Service: Runs in the background to perform long-running…

Read more →
Install ArgoUML
1 min read ES CA EN

Install ArgoUML

We must have java installed. Download the latest version of ArgoUML, you can do so from here. Open the terminal, extract the file, and move it to /opt, giving permissions to the .sh file in the…

Read more →
1 min read ES CA EN

Install MonoDevelop on Linux

Official page. To install MonoDevelop (Ubuntu 14.04 LTS) you can use the following script: sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys…

Read more →
\\"Hello World\\" in Java
3 min read ES CA EN

\\"Hello World\\" in Java

To write this program we will need: The Java SE Development Kit 8 (JDK 8) A text editor File creation A source file contains code, written in the Java programming language, that you and other…

Read more →
3 min read ES CA EN

Install Java (Oracle) JDK

To check the current version, run java -version To install Java on our PC, we have two alternatives, via PPA: sudo add-apt-repository ppa:webupd8team/java For Java 8: sudo apt-get install…

Read more →
1 min read ES CA EN

Install LibreOffice 5.0 via PPA

To use LibreOffice 5 on Ubuntu and keep it always up to date, all we need to do is add the PPA from the Terminal: Then the packages will need to be reloaded: sudo apt-get update Finally we will have…

Read more →
BleachBit, the CCleaner for Linux
2 min read ES CA EN

BleachBit, the CCleaner for Linux

Many programs, mostly web browsers, store temporary data that, while it can be useful at times, takes up more and more disk space as time goes by. BleachBit gives us the opportunity to remove this…

Read more →