This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My name is Shahin Shateri and I was born on the 6th of December, 1987 in Tehran, Iran. My parents are Rahim Shateri and Minoo Zahirfard. Both of my parents are still alive. I am the oldest among 3 boys as well as the oldest grandchild. | |
Dad is a retired Oil and Petroleum Engineer and Mom is a psychologist. | |
My early childhood was a typical middle-class environment circa the 1980’s. My dad worked for Iran National Oil Company and my mom worked for a hospital as a clinical psychologist. I had a happy, normal childhood as the oldest and first child and grandchild, leaving me somewhat spoiled. My mom and dad divorced when I was fourteen years old and neither of them got remarried again though they are still very good friends. | |
Growing up with split parents was not especially difficult since each of my parents kept me out of their divorce and they got along fine at events where both of them were present. I lived with my mom until I was 22 and in college. I moved to the Philippines and started a new path in life in a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********* | |
Shahin Shateri | |
ESP8266 Relay Controller Web Serve | |
*********/ | |
// Load Wi-Fi library | |
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function() { | |
function bs_fix_vc_full_width_row(){ | |
var $elements = jQuery('[data-vc-full-width="true"]'); | |
jQuery.each($elements, function () { | |
var $el = jQuery(this); | |
$el.css('right', $el.css('left')).css('left', ''); | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tweepy | |
import csv | |
import pandas as pd | |
import sys | |
# API credentials here | |
consumer_key = 'INSERT CONSUMER KEY HERE' | |
consumer_secret = 'INSERT CONSUMER SECRET HERE' | |
access_token = 'INSERT ACCESS TOKEN HERE' | |
access_token_secret = 'INSERT ACCESS TOKEN SECRET HERE' |