Sunday 29 November 2020

Flixtube - A movie streaming app with great User interface and exciting features.
Get this Project from here 







Censory Library



A small library which will convert censored words to * so that we can process string on frontend side 

There are many cases in Android app where the user enters some abusive content.
So what does admin needs to supervise all the posts and then publish to public feeds !

Isn't that a hectic work, So where the CENSORY used.

With censory, frontend dev can filter the Input string to a well suitable string.

HOW TO USE

Saturday 15 August 2020

Making Contact Form layout Part-2 Using CSS (Styling Part)

Hey guys welcome again to our website and today we are gonna finish our previously started project of making a simple contact form using html and CSS.
Today we are gonna see the CSS part.

If you haven't seen our previous the here is the link. Go and see this first.

So the Code for the styling part will be:

body{
margin: 0;
padding: 0 ;
background: url(bgi.jpg);
background-size: cover;
}
.contact-form{
width: 85%;
max-width: 600px;
background: #f1f1f1;
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%,-50%);
padding: 30px 40px;
box-sizing: border-box;
border-radius: 8px;
text-align: center;
box-shadow: 0 0 20px #000000b3;
font-family: "Monteserrat",sans-serif;
}
.contact-form h1{
margin-top: 0;
font-weight: 200;
}
.txtb{
border:1px solid gray;
margin: 8px 0;
padding: 12px 18px;
border-radius: 8px;
font-size: 18px;
}
 .txtb label{
display: block;
text-align: left;
color: #333;
text-transfrom: uppercase;
font-size: 20px
}
.txtb input,.txtb textarea{
width: 100%;
border: none;
background: none;
outline: none;
font-size: 18px;
margin-top: 6px;
}
.btn{
display: inline-block;
background: #9b59b6;
padding: 14px 0;
color: white;
text-transform: uppercase;
cursor: pointer;
margin-top: 8px;
width: 100%;
}

After applying this code our final contact form looks something like


Now we can do much more in this form like Redirecting after the send button is pressed or storing it in our database and reverting a auto generated text on the input email and much more.
So just stay tuned for more exciting posts every week!

Sunday 9 August 2020

CREATING A FORM LAYOUT IN HTML Using CSS (CSS Code in next post)

 

So today we are gonna make a registration form layout as below using HTML and CSS.
To run the code you can use any editor of your choice like

  1. Notepad++
  2. Sublime Text
  3. Atom
  4. Adobe Dreamweaver CC
Note: The background image is uploaded from local host and not any URL so use yours in the code.
Html Tags Used:
  1. <html>
  2. <title>
  3. <body>
  4. <div>
  5. <button>
  6. <input>
  7. <label>
  8. <textarea>
Code:


We will learn to link this html file with our style.css file in the next post.

Stay tuned

Thursday 6 August 2020

Best open source android projects

Git-hub Best Android Open Source Project





So, welcome back guys with top 5 android open source projects that are available on Github to serve community.So, without wasting time, lets get start..


1. TrebleShot 

  1. Pause, resume and reconnect transfers
  2. Share large files
  3. Share all kinds of content, video, photo, music and app libraries
  4. No Internet connection is required: Set up a hotspot and connect to it using a QR code
  5. Share between multiple devices at the same time
  6. Exchange texts of any kind and save them to TrebleShot
  7. Share folders for backup and other purposes
  8. Light UI: Works faster than its rivals on low-end devices
  9. Speed-oriented: Minimal UI optimized for speed
  10. Advanced features: Network change handling, choose network based on measured speed
Click here share yourself to pageπŸ˜†

2. NewPipe 

  1. Search videos
  2. Display general info about videos
  3. Watch YouTube videos
  4. Listen to YouTube videos
  5. Popup mode (floating player)
  6. Select streaming player to watch video with
  7. Download videos
  8. Download audio only
  9. Open a video in Kodi
  10. Show next/related videos
  11. Search YouTube in a specific language
  12. Watch/Block age restricted material
  13. Display general info about channels
  14. Search channels
  15. Watch videos from a channel
  16. Orbot/Tor support (not yet directly)
  17. 1080p/2K/4K support
  18. View history
  19. Subscribe to channels
  20. Search history
  21. Search/watch playlists
  22. Watch as enqueued playlists
  23. Enqueue videos
  24. Local playlists
  25. Subtitles
  26. Livestream support
  27. Show comments
Click here watch yourself to pageπŸ˜†

3. TiberX

  1. play music on timber
  2. play 'song name' on timber
  3. play
  4. pause
  5. next song
  6. previous song
Click here listen yourself to pageπŸ˜†

4. QKSMS

  1. Customizable
  2. Clean
  3. Powerful
  4. Safe
  5. Private
  6. Convenient

Click here send yourself to pageπŸ˜†

5. MOVIE GUIDE

  1. Customizable
  2. Search any movie
  3. Display general and detailed info for any movie using IMDB
  4. Clean
  5. Powerful
  6. Safe
  7. Private


Click here know your ratingπŸ˜†



Simple Snake Game Code for Advanced Dev's
Checking if two strings are Anagram

Problem:

 

Objective: To Check whether two strings are Anagrams or Not.

What are Anagram strings?

The strings which constitutes of the same letters but arranged in different order are called as Anagrams.

Example: Silent and Listen are Anagrams since both contain the same letters {I,E,L,S,T}.

Input Format:

First two lines takes the two strings to check for.

Gets is used although it is not advised to use gets() since it can cause Buffer Overflow. But since it is a simple program we have neglected that.

We have used vector for this program.

Vector are nothing but kind of dynamic arrays.

We daclare a vector as

“vector<string> s11,s22; ”

Here s11 and s22 are vector strings

Sample Code:


Finding A big Factorial in c++

Problem:Objective: To find the Factorial of Numbers whose factorial is of the order 10^7.Input:

Output: The next t lines after input gives the ouput.

Code

Output
Explaination:
We are storing the factorial in parts in array indices. Instead of finding the factorial of given number we are finding the factorials of all numbers upto 100001 in their respective array indices and just print the desired facts
 By taking mod with our self defined value of 10^7 we are in a way compressing the number at each level so that are data types can hold that value.

a[i] = ((i%mod)*(a[i-1]%mod))%mod;
The above line of code is very important to understand the code.
This is the line in which through which we are compressing the number to our data type limits (long long)