Posts

Showing posts with the label app

Podcast

Image
A podcast or generically netcast, is an episodic series of digital audio or video files which a user can download in order to listen to. It is often available for subscription, so that new episodes are automatically downloaded via web syndication to the user's own local computer, mobile application ... These are some different kinds of podcasts. Happy listening !! Tech & Programming Syntax Decrypted Recode Decode Fuel your Hustle The GaryVee Audio Experience Master of Scale How I Built This Make you Smarter Planet Money Science Vs Freakonomics Under the Influence  Feed your Soul Oprah's SuperSoul Conversations Tara Brach  Make you laugh This is That

arduino for beginners – behind the fundamentals – Part 4

Image
This tutorial is about arduino and we going to learn some basics things together. In this Part we going see what is behind the fundamentals. Sending input from the serial console to the arduino:   To send inputs from the Serial Monitor to the arduino, we need to use the Serial.read() function, and as example we make a Morse code generator take the serial inputs and generate them on light and sound using LED and buzzer. In this experiment we need: -1 LED. -1 Buzzer. -6 Wires. -220 Ohm Resistor. -BreadBoard. -Arduino Uno. And This code: Morse_buzzer_led See The Arduino for Beginners Tutorials

Subnet Calculator

Image
Sub-net Calculator built using java swing and eclipse swing window builder. Sub-net idea :  11111111.11111111.11100000.00000000 \19 11111111.11111111.11110000.00000000 \20 11111111.11111111.11111000.00000000 \21 11111111.11111111.11111100.00000000 \22 11111111.11111111.11111110.00000000 \23 11111111.11111111.11111111.00000000 \24 11111111.11111111.11111111.10000000 \25 11111111.11111111.11111111.11000000 \26 11111111.11111111.11111111.11100000 \27 11111111.11111111.11111111.11110000 \28 11111111.11111111.11111111.11111000 \29 11111111.11111111.11111111.11111100 \30 11111111.11111111.11111111.11111110 \31 11111111.11111111.11111111.11111111 \32 Give IP Address AND ( / OR Sub-net ) Get IP start, end, broadcast, network, etc. IP 11000000.10101000.00000000.00000001  Net-mask  11111111.11111111.11111111.00000000  Broadcast  11000000.10101000.00000000.11111111  First  11000000.10101000.00000000.00000001  Last  110...

Scientific-Calculator using Eclipse in java program

Image
A scientific calculator built using java swing and eclipse swing window builder. Calculator.java   import java.awt.Color ; import java.awt.EventQueue ; import java.awt.Font ; import java.awt.event.MouseAdapter ; import java.awt.event.MouseEvent ; import java.awt.event.MouseMotionAdapter ; import javax.swing.JFrame ; import javax.swing.JLabel ; import javax.swing.JPanel ; import javax.swing.SwingConstants ; import javax.swing.border.EmptyBorder ; import javax.swing.JMenuBar ; import javax.swing.JMenu ; import javax.swing.JMenuItem ; import java.awt.Toolkit ; import java.awt.Window.Type ; import java.awt.ComponentOrientation ; import java.awt.Cursor ; import javax.swing.JTable ; import javax.swing.JButton ; import javax.swing.JTextField ; import java.awt.event.ActionListener ; import java.awt.event.ActionEvent ; import java.awt.Component ; import javax.swing.JComboBox ; import javax.swing.JTextPane ; import javax.swing.DefaultComboBoxMo...