Do you use Microsoft Teams for your business or company?
https://bit.ly/2pdeLm7
No title available
The Bright Sessions
Cookie Run:Kingdom Official!
Not today Justin
sheepfilms
The Stonewall Inn
almost home
Color Me Curious
taylor price

izzy's playlists!
No title available
KIROKAZE
🪼
Cosimo Galluzzi
Claire Keane

#extradirty
tumblr dot com
"I'm Dorothy Gale from Kansas"

No title available

Kiana Khansmith

seen from United States

seen from United States

seen from Malaysia
seen from Costa Rica

seen from United States
seen from Qatar

seen from Germany

seen from Ukraine
seen from United States
seen from United States
seen from South Africa
seen from Australia

seen from Brazil
seen from T1
seen from Azerbaijan

seen from Malaysia

seen from Singapore

seen from Malaysia
seen from Canada
seen from Venezuela
@dsmiller5-blog
Do you use Microsoft Teams for your business or company?
https://bit.ly/2pdeLm7
What has been your experience with the SharePoint mobile app?
Create presentations, newsletters, and your own personal stories using Office 365 Sway interactive app.
Dev.to State of the Web Data Analysis Insights
Dev.to posted a blog article on the State of the Web Survey. Dev.to collected and shared their data with the community to provide insights. Check out my insights on my blog. http://www.developbit.com/state-of-the-web-data-analysis-review-from-dev-to-using-powerbi/
Happy Friday!
I just learned how to create a visual report of Oceania with Office 365 Sway! Here’s a video tutorial about it.
Hello Everyone it has been a while since I made a Tumblr post. I just learned how to create a visual report using Office 365 Sway. Here’s a blog post I wrote about it.
https://bit.ly/2nBj4H0
Speaking Engagement at UpperHand Community Services
I will be speaking at UpperHand Community Services in Arlington, VA regarding Intro to Office Concepts on June 30th at 11:00am
https://upperhand-cs.com/event/training-job-placement-event/
My last blog post for Python
My sincere apologies but this will be my last blog post for Python as I will be turning this tumblr blog into Office 365. I want to thank all of those who followed me in Python journey.
Day 2 Challenge: Create a dictionary for industries
As part of my challenge is to create things relate to customers with python. If you want to keep track of customer industries, you can do so in python.
Here is a simple snippet of creating a dictionary. Of course, a dictionary is a key and value. In this case, I created a key which is Industries and the values will be sector. I used the with open to open the excel file in which these are in.
import csv with open('industries.csv', 'rb') as csvfile: testindustries = csv.reader(csvfile, delimiter=',') for row in testindustries: print row
Using this snippet will allow you to view the industries and sectors created in the excel file.
Python Challenge: Day 1
This is day one of the python challenge. One of the projects I like to work on with python is customers. This will be an ongoing writing how to use python with customers. Customers meaning customer support, and customer retention, and churning and how to start from the beginning. Also, in this challenge, resources will be provided as well.
Python Challenge
It is a new year so I plan to challenge myself in learning aspects of Python and its analytics. This blog will focus mainly on the analytics side and understanding how to apply this data on a regular basis.
This is an audio recording of my 30-day coding challenge for Python on how to find the slope
This is the first of the 30 day challenge of Python coding
Day 1 - Hello World Program
Journey to 30 days of Coding
I keep saying that it has been a while since I blog this and that. I have looking on the internet and have been inspired to code every day and getting ready to take on the challenge. My goal starting tomorrow is to code for 30 days straight first. I would like to do 90 days but I would like to take baby steps first. My code will be basic again Python as that is what I learned for the past year and a half. The code can range from Python Networking to just basic Python scripts or maybe Python games. Let the code begin
�.k�8�}
Python(System Admin Networking) Script
So far it has been about six months since I started to work as a junior system administrator. It it so much to learn about System Administrator. However, I still like to use my Python skills and incorporate them into System Admin. One of the things I found when working as a junior system admin is to find the host name and ip address. Yes it is ok to just type ipconfig or host name at the command prompt but what if you wanted to use python to do so. I found that you can create a python script to find the ipaddress and host name by using the following script.
import socket s = socket.socket() host = socket.gethostname() ip = socket.gethostbyname(socket.gethostname()) print host print ip
This script allows you to print out the hostname as well as the name of the computer.