Some other file handling functions
Saturday, 22 June 2019
Friday, 21 June 2019
Lecture 37 Example for returning pointers return the duplicate of a string
Irawen June 21, 2019 C No comments
Lecture 20 C operators and expressions associativity of operators
Irawen June 21, 2019 C No comments
Thursday, 20 June 2019
C Program for Addition of Two Numbers
Irawen June 20, 2019 C No comments
Program for addition of two numbers
Output:
Code :-
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c;
printf("Enter a number:\n");
scanf("%d",&a);
printf("Enter another number:\n");
scanf("%d",&b);
c=a+b;
printf("The Sum is : \n=%d ",c);
return 0;
}
Output:
Code :-
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c;
printf("Enter a number:\n");
scanf("%d",&a);
printf("Enter another number:\n");
scanf("%d",&b);
c=a+b;
printf("The Sum is : \n=%d ",c);
return 0;
}
Monday, 17 June 2019
Saturday, 15 June 2019
Sunday, 19 May 2019
Learning Embedded Android N Programming by Ivan Morgillo (Author), Stefano Viola (Author)
Irawen May 19, 2019 Android No comments
Create the perfectly customized system by unleashing the power of Android OS on your embedded device About This Book * Understand the system architecture and how the source code is organized * Explore the power of Android and customize the build system
* Build a fully customized Android version as per your requirements Who This Book Is For If you are a Java programmer who wants to customize, build, and deploy your own Android version using embedded programming, then this book is for you. What You Will Learn *
Master Android architecture and system design * Obtain source code and understand the modular organization * Customize and build your first system image for the Android emulator * Level up and build your own Android system for a real-world device *
Use Android as a home automation and entertainment system * Tailor your system with optimizations and add-ons * Reach for the stars: look at the Internet of Things, entertainment, and domotics In Detail Take a deep dive into the Android build system and its customization with Learning Embedded Android Programming, written to help you master the steep learning curve of working with embedded Android. Start by exploring the basics of Android OS, discover Google's "repo" system, and discover how to retrieve AOSP source code.
You'll then find out to set up the build environment and the first AOSP system. Next, learn how to customize the boot sequence with a new animation, and use an Android "kitchen" to "cook" your custom ROM. By the end of the book, you'll be able to build customized Android open source projects by developing your own set of features.
Style and approach This step-by-step guide is packed with various real-world examples to help you create a fully customized Android system with the most useful features available.
Buy :
Learning Embedded Android N Programming Paperback – Import, 6 Jan 2016 by Ivan Morgillo (Author), Stefano Viola (Author)
PDF Download :
Learning Embedded Android N Programming Paperback – Import, 6 Jan 2016 by Ivan Morgillo (Author), Stefano Viola (Author)
* Build a fully customized Android version as per your requirements Who This Book Is For If you are a Java programmer who wants to customize, build, and deploy your own Android version using embedded programming, then this book is for you. What You Will Learn *
Master Android architecture and system design * Obtain source code and understand the modular organization * Customize and build your first system image for the Android emulator * Level up and build your own Android system for a real-world device *
Use Android as a home automation and entertainment system * Tailor your system with optimizations and add-ons * Reach for the stars: look at the Internet of Things, entertainment, and domotics In Detail Take a deep dive into the Android build system and its customization with Learning Embedded Android Programming, written to help you master the steep learning curve of working with embedded Android. Start by exploring the basics of Android OS, discover Google's "repo" system, and discover how to retrieve AOSP source code.
You'll then find out to set up the build environment and the first AOSP system. Next, learn how to customize the boot sequence with a new animation, and use an Android "kitchen" to "cook" your custom ROM. By the end of the book, you'll be able to build customized Android open source projects by developing your own set of features.
Style and approach This step-by-step guide is packed with various real-world examples to help you create a fully customized Android system with the most useful features available.
Buy :
Learning Embedded Android N Programming Paperback – Import, 6 Jan 2016 by Ivan Morgillo (Author), Stefano Viola (Author)
PDF Download :
Learning Embedded Android N Programming Paperback – Import, 6 Jan 2016 by Ivan Morgillo (Author), Stefano Viola (Author)
Thursday, 16 May 2019
Redirect and Errors
Flask class has a redirect() function. When called, it returns a response object and redirects the user to another target location with specified status code.
Prototype of redirect() function is as below −
Flask.redirect(location, statuscode, response)
In the above function −
1.location parameter is the URL where response should be redirected.
2.statuscode sent to browser’s header, defaults to 302.
3.response parameter is used to instantiate response.
The following status codes are standardized −
1.HTTP_300_MULTIPLE_CHOICES
2.HTTP_301_MOVED_PERMANENTLY
3.HTTP_302_FOUND
4.HTTP_303_SEE_OTHER
5.HTTP_304_NOT_MODIFIED
6.HTTP_305_USE_PROXY
7.HTTP_306_RESERVED
8.HTTP_307_TEMPORARY_REDIRECT
The default status code is 302, which is for ‘found’.
In the following example, the redirect() function is used to display the login page again when a login attempt fails.
from flask import Flask, redirect, url_for, render_template, request
# Initialize the Flask application
app = Flask(__name__) @app.route('/') def index(): return render_template('log_in.html') @app.route('/login',methods = ['POST', 'GET']) def login(): if request.method == 'POST' and request.form['username'] == 'admin' : return redirect(url_for('success')) return redirect(url_for('index')) @app.route('/success') def success(): return 'logged in successfully' if __name__ == '__main__': app.run(debug = True)
Flask class has abort() function with an error code.
Flask.abort(code)
The Code parameter takes one of following values −
1.400 − for Bad Request
2.401 − for Unauthenticated
3.403 − for Forbidden
4.404 − for Not Found
5.406 − for Not Acceptabl
6.415 − for Unsupported Media Type
7.429 − Too Many Requests
Let us make a slight change in the login() function in the above code. Instead of re-displaying the login page, if ‘Unauthourized’ page is to be displayed, replace it with call to abort(401).
from flask import Flask, redirect, url_for, render_template, request, abort
app = Flask(__name__) @app.route('/') def index(): return render_template('log_in.html') @app.route('/login',methods = ['POST', 'GET']) def login(): if request.method == 'POST': if request.form['username'] == 'admin' : return redirect(url_for('success')) else: abort(401) else: return redirect(url_for('index')) @app.route('/success') def success(): return 'logged in successfully' if __name__ == '__main__': app.run(debug = True)
Tuesday, 7 May 2019
Computer Science Programming Basics in Ruby: Exploring Concepts and Curriculum with Ruby by Ophir Frieder (Author), Gideon Frieder (Author), David Grossman (Author)
Irawen May 07, 2019 Books No comments
If you know basic high-school math, you can quickly learn and apply the core concepts of computer science with this concise, hands-on book. Led by a team of experts, you’ll quickly understand the difference between computer science and computer programming, and you’ll learn how algorithms help you solve computing problems.
Each chapter builds on material introduced earlier in the book, so you can master one core building block before moving on to the next. You’ll explore fundamental topics such as loops, arrays, objects, and classes, using the easy-to-learn Ruby programming language. Then you’ll put everything together in the last chapter by programming a simple game of tic-tac-toe.
- Learn how to write algorithms to solve real-world problems
- Understand the basics of computer architecture
- Examine the basic tools of a programming language
- Explore sequential, conditional, and loop programming structures
- Understand how the array data structure organizes storage
- Use searching techniques and comparison-based sorting algorithms
- Learn about objects, including how to build your own
- Discover how objects can be created from other objects
- Manipulate files and use their data in your software
Buy :
Computer Science Programming Basics in Ruby: Exploring Concepts and Curriculum with Ruby 1st Edition, Kindle Edition by Ophir Frieder (Author), Gideon Frieder (Author), David Grossman (Author)
PDF Download :
Computer Science Programming Basics in Ruby: Exploring Concepts and Curriculum with Ruby 1st Edition, Kindle Edition by Ophir Frieder (Author), Gideon Frieder (Author), David Grossman (Author)
Popular Posts
-
Exploring Python Web Scraping with Coursera’s Guided Project In today’s digital era, data has become a crucial asset. From market trends t...
-
What does the following Python code do? arr = [10, 20, 30, 40, 50] result = arr[1:4] print(result) [10, 20, 30] [20, 30, 40] [20, 30, 40, ...
-
Explanation: Tuple t Creation : t is a tuple with three elements: 1 → an integer [2, 3] → a mutable list 4 → another integer So, t looks ...
-
What will the following code output? a = [1, 2, 3] b = a[:] a[1] = 5 print(a, b) [1, 5, 3] [1, 5, 3] [1, 2, 3] [1, 2, 3] [1, 5, 3] [1, 2, ...
-
What will the following Python code output? What will the following Python code output? arr = [1, 3, 5, 7, 9] res = arr[::-1][::2] print(re...
-
Through a recent series of breakthroughs, deep learning has boosted the entire field of machine learning. Now, even programmers who know c...
-
What will the following code output? import pandas as pd data = {'Name': ['Alice', 'Bob'], 'Age': [25, 3...
-
What will the output of the following code be? def puzzle(): a, b, *c, d = (10, 20, 30, 40, 50) return a, b, c, d print(puzzle()) ...
-
Step-by-Step Explanation: Dictionary Creation: my_dict = {'a': 1, 'b': 2, 'c': 3} A dictionary named my_dict is crea...
-
What will be the output of the following code? import numpy as np arr = np.array([1, 2, 3, 4]) result = arr * arr[::-1] print(result) [1, ...
Categories
100 Python Programs for Beginner
(49)
AI
(34)
Android
(24)
AngularJS
(1)
Assembly Language
(2)
aws
(17)
Azure
(7)
BI
(10)
book
(4)
Books
(173)
C
(77)
C#
(12)
C++
(82)
Course
(67)
Coursera
(226)
Cybersecurity
(24)
data management
(11)
Data Science
(128)
Data Strucures
(8)
Deep Learning
(20)
Django
(14)
Downloads
(3)
edx
(2)
Engineering
(14)
Excel
(13)
Factorial
(1)
Finance
(6)
flask
(3)
flutter
(1)
FPL
(17)
Google
(34)
Hadoop
(3)
HTML&CSS
(47)
IBM
(25)
IoT
(1)
IS
(25)
Java
(93)
Leet Code
(4)
Machine Learning
(59)
Meta
(22)
MICHIGAN
(5)
microsoft
(4)
Nvidia
(3)
Pandas
(4)
PHP
(20)
Projects
(29)
Python
(929)
Python Coding Challenge
(351)
Python Quiz
(21)
Python Tips
(2)
Questions
(2)
R
(70)
React
(6)
Scripting
(1)
security
(3)
Selenium Webdriver
(3)
Software
(17)
SQL
(42)
UX Research
(1)
web application
(8)
Web development
(2)
web scraping
(2)