Notes from an online lesson:
Notes from an online lesson:
French typing website -> here.
abbone toi=subscribe yourself
Pour le gen qui … =for people who ..
peut être =maybe
Je suis parti on france
ça fair un an et demi que … je suis .. au japon
(another variation: Ça fait longtemps que …)
décember dernier = last december
un an et demi = one year and half
pour noël = for Chrismas
aussi = also
éloigné (ELOWANYE) =distant
on est obligé en fait de s’integrer …=we have to actually integrate …
on est obligé de prendre des habitudes que sont complètement … = we have to take habits that are completely
Miscellaneous from other videos and materials:
par skype = by skype
Cher ~ = Dear ~
fatigant
sentir (feel)
deranger (disturb)
<
tous les jours = everyday
toute la journée = all day
>
donc
FRENCH<->ENGLISH GOOGLE TRANSLATER
En tant que professeur d'anglais = as an English teacher
la chaîne youtube = youtube chennel
at la fac =at the university
e.g., J'apprend le Japonais à la fac.
encore= again
Les bases militaires = military base
Je trouve que ... = I think that ...
nos =our
pour ta santé physique =for your physical health
SELECT school_name, count(student_school_id) AS n_of_student
FROM tbl_student
GROUP BY school_name;
SELECT school_name, count(student_school_id) AS n_of_student, avg(selected_response_score) as mean_score, STDEV(selected_response_score) as SD
FROM tbl_student
GROUP BY school_name;
Reference:
FULL JOIN puts all variables in two tables together regardless of any conditions (e.g., values missing, etc.).
I have an old iphone that I want to use through my home Wifi for skyping and zooming (www.zoom.us). It is not connected at all to the phone network system.
The phone worked fine for a while for my limited purposes, but just this morning, it gave me a message "Activation Required" to which I had to provide my apple ID and password. This happened after ignoring messages that were reminding me to enter a password to the apple account.
(My phone's start button is broken, so I couldn't restart it.)
I didn't remember my password. The following is what I was told by the customer service representative.
Go to appleid.apple.com
Click on:
Forgot Apple ID or password?
Enter your Apple ID to get started.
You will be going through the pages where you are expected to enter information regarding i-phone. Most of these options require that you are an active i-phone user or you have an Apple device. I don't, which is why I had to call Apple. If you look close, there is an option (not highlighted by a big icon, so it's easy too miss) for people who don't use any apple products. Just find that and follow instructions. They will automatically text you a code to your current phone and you will be entering that to the website form.
The activation of a new password will be about 24 hours and this is where I am now.
To get a telephone support (like I did to get information), you will have to navigate from this page. You enter your phone number and they will call you in two minutes.
https://getsupport.apple.com/?caller=cups
My notes no DPLYR package.
This is how you read in dplyr:
library(dplyr)
I think the following requires dplyr, but I am not 100% sure.
Sorting can be done in this way. "desc" means descending.
arrange(sales, desc(profit),desc(units))
How do I modify the .htaccess to do this?
When people try to find this:
https://www.example.com/example/archives/6151#comments
I want them to go to:
https://www.example.com/archives/6151#comments
The one near us:
REGAL FAIRFAX TOWN CENTRE
SELECT name, price, price*1.09
FROM purchases;
-- get the sum total of the price column
SELECT sum(price)
FROM purchases;