AI Programming
11.2K subscribers
594 photos
42 videos
245 files
568 links
An artificial intelligence free resource channel for students, professionals, and anyone who wants to learn how to solve problems.

ENGINEERING πŸŽ– PROGRAMMING πŸŽ– TIPS & HACKS

https://youtube.com/c/AIProgramming
CONTACT US ON: @alphadmin12
Download Telegram
Best Programming Languages For Backend Web Development

Normally, users are more likely to notice what’s served before their eyes and not take note of what goes behind the scenes. Backend web development involves the part of coding which is not seen by the user.

1. PHP

PHP starts the list on basis of its popularity and widespread use.

Almost all active web users have come across some sort of implementation of PHP code, considering about 75% of websites use PHP. PHP has come a long way since its creation way back in 1994.

2. Python

Gone are the days when Python was restricted to desktop programming. Now, in the realm of backend web development, python is rising among the ranks. Most server-side programmers nowadays have adopted Python as a substitute for PHP

3. Java

Just like Python, Java has risen to be a multipurpose language. It’s used for desktop software development, android development and most importantly, for web development. As much as one may love the newer technologies such as Node.js

AI Programming @freecodecs
For this time:
Have a Lit πŸ”₯ Figuring out πŸ€”
πŸ˜‚πŸ˜‚
😫😫
πŸ˜‚πŸ˜‚πŸ˜‚
com.duy.compiler.javanide_45.apk
35 MB
πŸ‘» java n-ide
java programing language
Java for android
@freecodecs
πŸ‘1
AI Programming pinned «🎭Welcome to🎭 An artificial intelligence free resource channel for students and anyone who wants to learn solve problems. β€’ C++ β€’ Java β€’ PHP β€’ Oracle β€’ C# β€’ @freecodecs πŸ’€PROGRAMMING πŸ’€Cracked SOFTWARE & APPS πŸ’€TIPS & TRICKS πŸ’€PROGRAMMING PROJECT πŸ˜ŽπŸ‘‰join the channel…»
This media is not supported in your browser
VIEW IN TELEGRAM
How to hack saved WiFi password with cmd
πŸ‘»size= 1. 1MB
πŸ‘»Duration= 33: second
AI Programming @freecodecs
For this time:
Have a Lit πŸ”₯ Figuring out πŸ€”
What Is java?
Java is a popular programming language, created in 1995.

It is owned by Oracle, and more than 3 billion devices run Java.

πŸ‘πŸ‘ It is used for:

Mobile applications (specially Android apps)
Desktop applications
Web applications
Web servers and application servers
Games
,Database connection And much, much more!
😊 Why Use Java?
Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.)
It is one of the most popular programming language in the world
It is easy to learn and simple to use
It is open-source and free
It is secure, fast and powerful
It has a huge community support (tens of millions of developers)
AI Programming @freecodecs
For this time:
Have a Lit πŸ”₯ Figuring out πŸ€”
Java Quickstart
In Java, every application begins with a class name, and that class must match the filename.

Let's create our first Java file, called MyClass.java, which can be done in any text editor (like Notepad).

The file should contain a "Hello World" message, which is written with the following code:
Example
MyClass.java

public class MyClass {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
output:
Hello world

AI Programming @freecodecs
For this time:
Have a Lit πŸ”₯ Figuring out πŸ€”
➑ public :- again means that anyone can access it.
➑ static :- means that you can run this method without creating an instance of Main.
➑ void :- means that this method doesn't return any value.
➑ main :- is the name of the method.
➑ System:- is a pre-defined class that Java provides us and it holds some useful methods and variables.
➑out :- is a static variable within System that represents the output of your program (stdout).
➑println :- is a method of out that can be used to print a line.


AI Programming @freecodecs
πŸ˜‚πŸ˜‚πŸ˜‚
πŸ‘½Object - Objects have states and behaviors. Example: A dog has states
- color, name, breed as well as behaviors – wagging the tail, barking,
eating. An object is an instance of a class.
πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»
πŸ‘½ Class - A class can be defined as a template/blueprint that describes the
behavior/state that the object of its type support.
ExampleπŸ‘‡πŸ‘‡πŸ‘‡

public class Dog {
String breed;
int age;
String color;

void barking() {
}

void hungry() {
}

void sleeping() {
}
}
A class can contain any of the following variable types.
πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»
πŸ‘½ Local variables - Variables defined inside methods, constructors or blocks
are called local variables. The variable will be declared and initialized within
the method and the variable will be destroyed when the method has completed.
πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»
πŸ‘½ Instance variables - Instance variables are variables within a class but outside any method.
These variables are initialized when the class is instantiated. Instance variables can be accessed
from inside any method, constructor or blocks of that particular class.
πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»πŸ‘»
πŸ‘½ Class variables - Class variables are variables declared within a class, outside any method, with the static keyword.
AI Programming @freecodecs
For this time:
Have a Lit πŸ”₯ Figuring out πŸ€”
πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡
A loop statement allows us to execute a statement or group of
statements multiple times and following is the general form of a
loop statement in most of the programming languages
Loop & Description
1 while loopπŸ‘½

Repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.
2 for loopπŸ‘½

Execute a sequence of statements multiple times and abbreviates the code that manages the loop variable.
3 do...while loopπŸ‘½

Like a while statement, except that it tests the condition at the end of the loop body.

πŸ‘‰πŸΏπŸ‘‰πŸΏπŸ‘‰πŸΏπŸ‘‰πŸΏπŸ‘‰πŸΏLoop Control Statements

Loop control statements change execution from its normal sequence. When execution leaves a scope, all automatic objects that were created in that scope are destroyed.

AI Programming @freecodecs
For this time:
Have a Lit πŸ”₯ Figuring out πŸ€”
πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡
Enhanced for loop in Java
Syntax

Following is the syntax of enhanced for loop -

for(declaration : expression) {
// Statements
}
πŸ‘‰πŸΏDeclaration - The newly declared block variable, is of a type compatible
with the elements of the array you are accessing.

πŸ‘‰πŸΏExpression - This evaluates to the array you need to loop through. The
expression can be an array variable or method call that returns an array.

πŸ‘»Example

public class Test {

public static void main(String args[]) {
int [] numbers = {10, 20, 30, 40, 50};

for(int x : numbers ) {
System.out.print( x );
System.out.print(",");
}
System.out.print("\n");
String [] names = {"Nati", "Elsa", "Dagi", "Yonas"};

for( String name : names ) {
System.out.print( name );
System.out.print(",");
}
}
}

OutputπŸ‘»πŸ‘»πŸ‘»

10, 20, 30, 40, 50,
Nati, Elsa, Dagi, Yonas,

AI Programming @freecodecs
For this time:
Have a Lit πŸ”₯ Figuring out πŸ€”
☯how to edit the source code of any application☯

πŸ‘‰Source code is the back-end of an application which interact with the user by means of user interface

πŸ‘‰advantage of source code editing

- modify app name
- modify app icon
-change background image
-remove advertisement
-remove unwanted permission
- change application audio,picture,language
-make an app move to sd card

πŸ‘‰ in order to do all of this thing u need an app called "apk editor" and sometimes rooting is needed

β‡οΈπŸ‘‰modify app name

1,πŸ‘‰select target app by clicking on"select apk from app" & then select "apk creator"
2,πŸ‘‰then click at "full edit"
3,πŸ‘‰then click on app name and give it the name that u want
4,πŸ‘‰finally click "save button"

πŸ’ if u want to see the modified app just uninstall the previous app and install the saved app

β‡οΈπŸ‘‰Remove ad

1,πŸ‘‰ Select target app by clicking at 'Select Apk from App', then selecting ur desire app, and then click at 'Full Edit'.
2,πŸ‘‰ Click 'Resource' tab after editable resource shown, and then enter 'layout' folder by clicking at the item. Click 't' and it will show the content of activity_main.xml.
3,πŸ‘‰ remove the AdActivity in AndroidManifest.xml:
4,πŸ‘‰After all the modifications, click save button in the upper right corner. After a while, we will be told that the modified apk is in some place.

β‡οΈπŸ‘‰Make an app move to sd card

1,πŸ‘‰ Select target app by clicking at 'Select Apk from App', then selecting apk creator, and then click at 'Full Edit'.
2,πŸ‘‰ Click 'Manifest' tab, and then click at the line of manifest (Generally should be line 2)
3,πŸ‘‰ Click at '+' icon to add a key and value (android:installLocation="auto")
4,πŸ‘‰ change 'auto' to
'preferExternal') and then click 'OK'; when return to previous dialog, click 'Save'
5,πŸ‘‰ Click save button in the upper right corner. After a while, we will be told that the modified
apk is in some place.

✳️we uploaded the applications on our channel
 β”ˆβ”ˆβ”ˆβ”ˆβ€’β€’β—β—‰β–β—‰β—β€’β€’β”ˆβ”ˆβ”ˆ       
  πŸ—£βžΉshare &Join Us
            πŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎ
@freecodecs
@freecodecs
@freecodecs
┗━ β€’β€’β€’ ━ ‒‒━━‒‒‒━━━┛
This media is not supported in your browser
VIEW IN TELEGRAM
How to delete shortcut virus and unhide:file using cmd
πŸ‘»size= 2.9MB
πŸ‘»Duration= 42: second
AI Programming @freecodecs
As Always :
Have a Lit πŸ”₯ Figuring out πŸ€”
AI Programming pinned «🎭Welcome to🎭 An artificial intelligence free resource channel for students and anyone who wants to learn solve problems. β€’ C++ β€’ Java β€’ PHP β€’ Oracle β€’ C# β€’ @freecodecs πŸ’€PROGRAMMING πŸ’€Cracked SOFTWARE & APPS πŸ’€TIPS & TRICKS πŸ’€PROGRAMMING PROJECT πŸ˜ŽπŸ‘‰join the channel…»
Everything-Setup@freecodecs.exe
1.3 MB
Best search tool for windows
πŸ‘½AI programming

 β”ˆβ”ˆβ”ˆβ”ˆβ€’β€’β—β—‰β–β—‰β—β€’β€’β”ˆβ”ˆβ”ˆ       
  πŸ—£βžΉshare &Join Us
            πŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎ
@freecodecs
@freecodecs
┗━ β€’β€’β€’ ━ ‒‒━━‒‒‒━━━┛