i thought that calm is just a word
but you know what it is also a name of a company and a software product or apps
wonder wonder and i jusst know about it today
huhu really need to check my keyboard and why so many error.
hope it will resolve soon.
but sometime it just look ok so make me really really confusing
am i just so confuse
yes yes yes
hmmm so it also have a blog interesting
https://www.calm.com/blog/
https://www.calm.com/science/
this is also interesting to learn
https://www.calm.com/blog/9-ways-to-help-a-friend-with-depression
Monday, 29 June 2020
let us listen to sura al waqiah
hope we earn peace in this life n the hereafter
Surat Al-Waqi'a Mishari Alafasy
Surat Al-Waqi'a Mishari Alafasy
Monday blue and my graphic cards in blue hope can be recover oh my laptop
How am i ?
some of option to detect graphic card
there two big video chip manufacturers. AMD and nVidia. They are the two big companies and they have been competing for long time in computer graphics. People often ask which is better. AMD? or nVidia? It is like asking Honda is better or Toyota is better in now days. They both make really high performance video cards and chips.
pk this is good too https://www.amd.com/en/support/kb/release-notes/rn-rad-win-15-7-1
surprise surprise
i got a surprise because i disable my graphics card due to the problem that i have
but than when i start and enable my graphics card it seems that it works okay. hmmmm
it is been a week since i last post. what a busy week had pass by.
very busy with wfh schedule and etcetra or etc etc
good for me
Excellent
but i have problem with my graphic card. so i am ok but not my laptop
research on the way again. how do i overcome this problem. please... help me....
some of option to detect graphic card
thank you for the wonderful day and thank you for everything else and i am really greatful.
my laptop info
research on the way again. and continue
research on the way again.
research on the way again. and continue
research on the way again.
Where to download AMD catalyst control center & driver
ATI Catalyst Control Center and Switchable Graphics fix for windows 7, 8 8.1, + win10 (Step by step)
Monday, 22 June 2020
what is clickbank and i love to learn especially for free ..thank you
Clickbank For Beginners: How To Make Money on Clickbank for Free (Step By Step 2020)
what is blockchain? i dunno and wanna try to study from scratch n find my journey begins
i am on my study jjourney
what should i further my study about?
hci
data science
networking
crypto
cyber-security
blockchain
yes some one suggest to me block chain. thank you Prof ...
but what is it, he said go and study
study from journals
but for today i find video to study and would like to put here for my future reference
on what i study on my first day of block chain....
Sunday, 21 June 2020
i am 100 percent complete learn free python and move on to more new classes now
lots new that i learn
https://www.datacamp.com/community/tutorials/gui-tkinter-python
waah lots more to learn
way lot to learn
the more you research the more deep you learn
https://www.datacamp.com/learn-python-with-anaconda/
https://pypi.org/project/PySimpleGUI/
https://pysimplegui.readthedocs.io/en/latest/call%20reference/#currently-pysimplegui-tkinter-only
Introduction to GUI With Tkinter in Python
In this tutorial, you are going to learn how to create GUI apps in Python. You'll also learn about all the elements needed to develop GUI apps in Python.
hmmm
learn learn just keep learning
Let's see some of the frameworks that Python provides to develop a GUI:
- PyQT is one of the favored cross-platform Python bindings implementing the Qt library for the Qt application development framework. Nokia primarily owns Qt. Currently, PyQT is available for almost all operating systems like Unix/Linux, Windows, Mac OS X. It blends the best of Python and Qt and provides flexibility to the programmer to decide whether to create a program by writing a pure python code or use Qt Designer to create visual dialogs.
- Kivy is for the creation of new user interfaces and is an OpenGL ES 2 accelerated framework. Much like PyQt, Kivy also supports almost all platforms like Windows, MacOSX, Linux, Android, iOS. It is an open-source framework and comes with over 20 pre-loaded widgets in its toolkit.
- Jython is a Python port for Java, which gives Python scripts seamless access to Java class libraries on the local machine.
- WxPython, initially known as WxWindows (now as a WxWidgets library), is an open-source abstract-level wrapper for cross-platform GUI library. It is implemented as a Python expansion module. With WxPython, you, as a developer, can create native applications for Windows, Mac OS, and Unix.
- PyGUI is a graphical application cross-platform framework for Unix, Macintosh, and Windows. Compared to some other GUI frameworks, PyGUI is by far the simplest and lightweight of them all, as the API is purely in sync with Python.PyGUI inserts very less code between the GUI platform and Python application; hence, the display of the application usually displays the natural GUI of the platform.
And finally, the framework that is the discussion for today's tutorial Tkinter!
- Tkinter commonly comes bundled with Python, using Tk and is Python's standard GUI framework. It is famous for its simplicity and graphical user interface. It is open-source and available under the Python License.
Note:
Tkinter
comes pre-installed with Python3, and you need not bother about installing it.python project rock, paper and scissors
85% COMPLETE
Project: Rock Paper Scissors
now i am at 90% ish
93% COMPLETE
Project: to concentrate
good morning to the whole world.
it is a very sunny and exciting morning and ready to complete my free python class
hope by today and able to venture to other many many free available course on the net
or online. all the best. keep fighting
and hope i will live in peace, in this world and the hereafter.
bye and thank you
==============
free verse pay tp learn
if you are willing to learn than you can go here
==============
free verse pay tp learn
if you are willing to learn than you can go here
Saturday, 20 June 2020
Introduction to Computer Science and Programming Using Python
thank you prof
length of string
# Make sure to un-comment the function line below when you are done.
# Remember to name your function correctly.
# WRITE YOUR CODE HERE...
def string_length(str1):
return len(str1)
# DO NOT remove lines below here,
# this is designed to test your code.
def test_string_length():
assert string_length('hello!') == 6
assert string_length('banana') == 6
assert string_length('8') == 1
assert string_length('funnyguys') == 9
assert string_length('101') == 3
print("YOUR CODE IS CORRECT!")
# test your code by un-commenting the line(s) below
test_string_length()
last_letter
# Make sure to un-comment the function line below when you are done.
# Remember to name your function correctly.
# WRITE YOUR CODE HERE...
def last_letter(str1):
return str1[len(str1)-1]
# DO NOT remove lines below here,
# this is designed to test your code.
def test_last_letter():
assert last_letter('hello!') == '!'
assert last_letter('banana') == 'a'
assert last_letter('8') == '8'
assert last_letter('funnyguys') == 's'
assert last_letter('101') == '1'
print("YOUR CODE IS CORRECT!")
# test your code by un-commenting the line(s) below
test_last_letter()
======
great job to me
from 61% this morning to 85% and i am sleepy
so good night to all..
85% COMPLETE
length of string
# Make sure to un-comment the function line below when you are done.
# Remember to name your function correctly.
# WRITE YOUR CODE HERE...
def string_length(str1):
return len(str1)
# DO NOT remove lines below here,
# this is designed to test your code.
def test_string_length():
assert string_length('hello!') == 6
assert string_length('banana') == 6
assert string_length('8') == 1
assert string_length('funnyguys') == 9
assert string_length('101') == 3
print("YOUR CODE IS CORRECT!")
# test your code by un-commenting the line(s) below
test_string_length()
Introduction to Computer Science and Programming Using Python | Python Basics | Introduction
# Remember to name your function correctly.
# WRITE YOUR CODE HERE...
def last_letter(str1):
return str1[len(str1)-1]
# DO NOT remove lines below here,
# this is designed to test your code.
def test_last_letter():
assert last_letter('hello!') == '!'
assert last_letter('banana') == 'a'
assert last_letter('8') == '8'
assert last_letter('funnyguys') == 's'
assert last_letter('101') == '1'
print("YOUR CODE IS CORRECT!")
# test your code by un-commenting the line(s) below
test_last_letter()
======
great job to me
from 61% this morning to 85% and i am sleepy
so good night to all..
85% COMPLETE
Check Is Odd and am at 61 percent completion.. congratulations
again amazing
tap tap tap
on my back
good job
wow
i am so old
my first entry was back 13 years ago
http://lifenstudy.blogspot.com/2007/07/my-life-now.html
Quote"
this is my first entry and first attempt to write a blog.
hope i learn through writing and inspire others
as others had inspire me. good luck to me.
keep smiling and keeping working hard.
hope one day i earn peace before i die and go to jannatul firdaus. amin.
will write again later.
bye
end Quote"
"""
@CLEVER PROGRAMMER
Write a function is_odd that takes
in a number and returns True if it is odd,
otherwise false.
HINT:
Question: What does it mean for a number
to be divisible by another number?
Answer: number % another_number == 0
# Gives you true
Ex: 12 % 3 == 0 --> True
--> This means 12 is divisble by 3.
BONUS CHALLENGE:
Write the function solution in 1 line
of code without using if statements.
"""
# Make sure to un-comment the function line below when you are done.
# Remember to name your function is_odd
# WRITE YOUR CODE HERE...
def is_odd(number):
if number % 2 == 1:
return True
else:
return False
# DO NOT remove lines below here,
# this is designed to test your code.
def test_is_odd():
assert is_odd(2) == False
assert is_odd(3) == True
assert is_odd(8) == False
assert is_odd(100) == False
assert is_odd(101) == True
print("YOUR CODE IS CORRECT!")
# test your code by un-commenting the line(s) below
test_is_odd()
Check Is Even exercise and now 59 % done... way to go
amazing amazing and it is really amazing
just keep swimming
just keep learning
just keep learning
i really learn a lot
and it increase my confident
boost me in understanding
why i did not think to do this before
but thank you , coz i did wake up from my long silence and sleep
"""
Write a function is_even that takes
in a number and returns True if it is even,
otherwise false.
HINT:
Question: What does it mean for a number
to be divisible by another number?
Answer: number % another_number == 0
# Gives you true
Ex: 12 % 3 == 0 --> True
--> This means 12 is divisble by 3.
BONUS CHALLENGE:
Write the function solution in 1 line
of code without using if statements.
"""
# Make sure to un-comment the function line below when you are done.
# Remember to name your function is_even
# WRITE YOUR CODE HERE...
def is_even(number):
if number % 2 == 0:
return True
else:
return False
# return number % 2 == 0
# DO NOT remove lines below here,
# this is designed to test your code.
def test_is_even():
assert is_even(2) == True
assert is_even(3) == False
assert is_even(8) == True
assert is_even(100) == True
assert is_even(101) == False
print("YOUR CODE IS CORRECT!")
# test your code by un-commenting the line(s) below
test_is_even()
increase my python from 54 to 56% doing sQuare number in python
ok i have many more path to follow to finish my free course
and so that i can go over the free stuff too here
http://lifenstudy.blogspot.com/2020/06/free-stuff.html
where i am now... all theory part is finish and now the practical or project time
got 8 projects to complete towards the 90% completion. i am so near there... am i?
oops it not project but exercises or latihan
Exercises (a.k.a Drill and Kill)
good luck to me....
Square a Number
Notes to Help You
- Functions start with def
- Don't forget your colons
- Always return in functions rather than print!
Example Problem.
Write a function add_two that takes in two numbers as input and returns their sum.
Write a function add_two that takes in two numbers as input and returns their sum.
how to do it......
got errors at first and lastly manage to solve it.
what a relief...
def square_number(number):
return number * number
def test_square_number():
assert square_number(2) == 4
assert square_number(8) == 64
assert square_number(10) == 100
print(" YOUR code is correct !")
test_square_number()
print(square_number(2))
print(square_number(4))
print(square_number(8))
print(square_number(9))
print(square_number(10))
going to continue with learning python and research journey
going to continue with learning python and research journey
where am i at?
i am at 54 % still 46 % to go to complete my free learning python
...54% COMPLETE
me at lesson 17...
and i found also this interesting video from an author of a python book
that i am currently using. great. excellent input for me and i got to see
the author face. i am so happy. life is suppose to bring you happiness and peaceful mind.
let me share what i learn, what i discover and hopefully it will benefit me and some one else who is seeking knowledge as i do. bravo to me. for never ending journey or quest to seek knowledge.
please do not give up and seek from cradle to tomb
“Seek knowledge from the cradle to the grave”
ok here is the video
where am i at?
i am at 54 % still 46 % to go to complete my free learning python
...54% COMPLETE
me at lesson 17...
Lesson 17: For Loop Like A Boss
and i found also this interesting video from an author of a python book
that i am currently using. great. excellent input for me and i got to see
the author face. i am so happy. life is suppose to bring you happiness and peaceful mind.
let me share what i learn, what i discover and hopefully it will benefit me and some one else who is seeking knowledge as i do. bravo to me. for never ending journey or quest to seek knowledge.
please do not give up and seek from cradle to tomb
“Seek knowledge from the cradle to the grave”
ok here is the video
Unit 0 Video 1: Welcome & Course Overview
Thursday, 18 June 2020
free stuff
ok.
yes i am still learning my python free class
yes i am going here and there at the same time
so i am researching and i find some free stuff
cool
have i try it, not yet. why coz i am still in studying
so i put it here and to go through later in future.
so here is where i park some information for me to go over in future
i go forward and come back here to pick up pieces that i want to grow my knowledge.
i love seeking new knowledge and i love learning.
what it is? here..... hope i will enjoy learning in the near future.
thank you ..... me...
https://twinsmommy.com/14-free-ebooks-grow-blog-income/
https://twinsmommy.com/14-free-ebooks-grow-blog-income/
yes i am still learning my python free class
yes i am going here and there at the same time
so i am researching and i find some free stuff
cool
have i try it, not yet. why coz i am still in studying
so i put it here and to go through later in future.
so here is where i park some information for me to go over in future
i go forward and come back here to pick up pieces that i want to grow my knowledge.
i love seeking new knowledge and i love learning.
what it is? here..... hope i will enjoy learning in the near future.
thank you ..... me...
https://twinsmommy.com/14-free-ebooks-grow-blog-income/
https://twinsmommy.com/14-free-ebooks-grow-blog-income/
continue learning python
good morning
i learn python half way here
https://lifenstudy.blogspot.com/2020/06/great-i-wanna-learn-python.html
50% COMPLETE
i learn python half way here
https://lifenstudy.blogspot.com/2020/06/great-i-wanna-learn-python.html
How to Become a Python Freelancer 2019 - Ultimate Guide
i learn python half way here and is stop at Append List Method
the next topic is Python Dictionary
and continue with Conditionals and Control Flow
so under this i learn the If statement, Boolean, the and OR and NOT
come on lets GO to PYTHON land............................
Lesson 15: Logical AND OR NOT
Learn Python Programming - 18 - Logical AND OR NOT
Wednesday, 17 June 2020
online learning and teaching hmm... what is the best mic to use?
let us do some research on this topic
as i learn i will share and for my future review to ponder upon too
Best USB Microphone! Blue Yeti Review + Mic Test
YouTube Gear #1 | Blue Yeti!
Tuesday, 16 June 2020
sleepy
more to learn at
https://repl.it/languages/python3
https://trinket.io/python
so
stop at
more to learn at
https://repl.it/languages/python3
https://trinket.io/python
Georgia's Spirals
A visual introduction to code using the Python programming language and Turtles.
so
stop at
Lesson 13: English Dictionary? NO. Python Dictionary.
will continue....bye zzzzzzzzzzz
great i wanna learn python
so i search and find this....
How to Become a Python Freelancer 2019 - Ultimate Guide
String Slicing NOT Cake Slicing
Append List Method
# This part if the code draws a square
import turtle
my_turtle = turtle.Turtle()
def square(length, angle):
my_turtle.forward(length)
my_turtle.left(angle)
my_turtle.forward(length)
my_turtle.left(angle)
my_turtle.forward(length)
my_turtle.left(angle)
my_turtle.forward(length)
my_turtle.left(angle)
for i in range(50):
square(100,90)
my_turtle.right(10)
tak pernah saya dengar : Fiverr? Apa Itu?
Fiverr? Apa Itu?
ni baru nak belajar. maklum lah hari hari sampai tua ada sahaja ilmu baru yang di timba
======
go here
dan di sini
Komuniti Fiverr menggelarkan tugasan atau perkhidmatan mereka sebagai ‘gig’ dan sejak tahun 2012, lebih 1.3 juta perkhidmatan atau ‘gigs’ telah dihoskan oleh platform berkenaan. Bayaran upah paling maksima yang boleh dikenakan bagi sesuatu tugasan hanya serendah $5 (USD5) sahaja atau lebih kurang RM15. Dan daripada angka $5 itulah laman web Fiverr.com ini mendapat nama bagi laman web mereka.
dan juga di sini
contoh
nak beli ebook atau nak buat ebook
sedang mencari informasi [passal ebook ]
SENARAI EBOOK TERBITAN KLIKJER!
lain lain option
menjual ebook secara kindle di platfom Amazon.
antara untuk tambah ilmu gi ke site di bawah
https://kaksu.com/cara-buat-duit-dari-blog-topik-niche/
======
e commerce available
===== free training
https://www.sitegiant.my/training/
https://www.eventbrite.com/e/sitegiant-online-training-english-version-tickets-109573585544
======
e commerce available
Integration
===== free training
https://www.sitegiant.my/training/
https://www.eventbrite.com/e/sitegiant-online-training-english-version-tickets-109573585544
7 Businesses That Will Boom After This Pandemic
==============
1. Digital Marketing 2. Stock Market Investing 3. Online Education 4. Online Collaboration schools 5. E-Commerce 6. Agriculture 7. Gig economy
Throughout history more billionaires and millionaires are made after a recession and economic crash than any other time. So how do you take advantage of this time? The global economy will this year likely suffer the worst financial crisis since the Great Depression due to the Covid-19 pandemic, says the International Monetary Fund. The World Trade Organization also said that global trade will contract by between 13% and 32% this year. Also the OECD has warned the economic hit from the virus will be felt “for a long time to come.” No one knows when the corona virus pandemic will end for economic activities to return to normal. But even as uncertainty abounds, life changing opportunities will rear their heads. Throughout history, events such as economic recessions and pandemics have changed the trajectory of governments, economies and businesses. The Black Death in the 1300s broke the long-ingrained feudal system in Europe and replaced it with the more modern employment contract. The SARS pandemic of 2002-2004 catalyzed the meteoric growth of small companies like Ali Baba and helped establish it at the forefront of retail in Asia. This growth was fueled by underlying anxiety around traveling and human contact, similar to what we see today with Covid-19. The financial crises of 2008 also produced its own disruptive side effects. Airbnb and Uber shot up in popularity across the west as the crises forced people to share assets in the form of spare rooms and car rides in order to cover for the deficit. With Covid-19, we are already seeing early signs of a shift in how consumers and businesses behave. Remote working is being encouraged by tech and non-tech companies alike, supply chains are getting disrupted globally and retail stores are running out of ibuprofen, dry goods and toilet paper en masse.
Sunday, 14 June 2020
hi
welcome back after many many days/months/years not login..
will be coming back with new posting.
whats new
many many things have had happened along the way
hope to be wiser, gain peace along the way or at the end of the way...
sunny day today and the world had been in quarantine
mco pkp pkpb pkpp
see u
welcome back after many many days/months/years not login..
will be coming back with new posting.
whats new
many many things have had happened along the way
hope to be wiser, gain peace along the way or at the end of the way...
sunny day today and the world had been in quarantine
mco pkp pkpb pkpp
see u
Subscribe to:
Posts (Atom)