Skip to main content

Posts

How i manage to run The Ultimate dividend portfolio

It's simple. Buy low, Sell high until you win  But my strategy is multi asset income focused fund with global equity. We are clearly heading to self-driving generation. AI, Cloud, AR so many things. Also, Japan has the most cutting edge battery technology.  But i never invest in countries that has no trust  By geolocation,  By asset class,  BND, UUP, VXX,  By sectors,  XLK, XLU, XLF, 

Conquer the world with MSCI

World Market : URTH MEDCs(more economically developed countries) USA, Canada, UK, Germany, France, Japan LEDCs(less economically developed countries) Korea, China, 

My Journey Into Frontend Web Developer to Grand Line

1. HTML/CSS - know how to design web layout  2. JavaScript - The most important thing  3. React 4. learn how to use Git/GitHub  5. Growth Story like blog  To get a job - 2 things (Building own projects/Coding interview) 6. Grows together with friends  7. Road Map is avaiable  8. Cloud - AWS if you want to do DevOps  9.  Trying to at blue level at codeforce  10. Keep applying jobs every week with strong resume/CV Believe in yourself like Luffy and do it until you burn yourself   Once you become a FE developer as the first dev job, you will be able to move to anywhere. I'm a free spirit and will be everywhere. 

DailyDev Checklist : How i'm preparing to get the first dev job

1. JS theory study, including project (2hr) 2. React study,  including project (2hr) 3. Algorithm study (2hr) Hi, it's me Brandon. I want to be a well known guy when you think of JS like when you search tutorial videos, you think of Brad Traversy on YouTube. I will never stop studying until i get a proper job. I never had an opportunity  to have a job experience as i had to join army. I never tried to study algorithm as i was focusing on building services and i thought i will be an employer at my own company. I was absolutely wrong and i should have focused on building a lot of toy projects to show what i can do to company's HR and do many coding interview questions.  i made the checklist for you its like workout flow. Do just 2 things  Build fucking projects  Do as much as algorithm questions.  How i will prepare for the coding interview  I'm still not preparing to pass coding interview at all still taking online course on Udemy. I found out that...

Autonomous & Electric Vehicles ETF

The next big thing is Autonomous driving service.  https://www.ishares.com/us/products/307332/ishares-self-driving-ev-and-tech-etf-fund GOOGL, AMZN, MSFT,  TSLA, APTV, UBER, NVDA, INTC, CVE:FD(FaceDrive), KRX: 005930(Samsung Electronics), ETR: DAI(Daimler AG), TM, UPS, FDX SOXX, XLK  I'd just invest in IDRV as my personal fav.  Semi, Cloud, Tech,  HAIL ETF | KARS ETF | DRIV ETF | IDRV ETF | DRIV follows solactive index  https://www.globalxetfs.com/funds/driv/ https://www.solactive.com/Indices/?index=DE000SLA5MZ4 IDRV  https://www.ishares.com/us/products/307332/ishares-self-driving-ev-and-tech-etf-fund Platform : GOOGL, AMZN, MSFT Semi : SOXX, INTC, NVDA, AMD, NXPI Big Data:  Auto Marker :  Daimler AG, TM, APTV

The Complete React Guide by Max - Section 12: Adding Routing to our Burger Project

 220. Module Introduction - just intro 221. Building the checkout container  just create Checkout/checkoutSummary JS files  222. Setting up Routing & Routes < Switch > < Route path = "/checkout" component = { Checkout } /> < Route path = "/" exact component = { BurgerBuilder } /> </ Switch > order is matter and use <Switch> shows only route 223. Navigating to the checkout page  this . props . history . push ( "/checkout" ); yarn add react-router-app and cover {BrowserRouter} in index.js and then work on purchaseContinueHandler(that push('/checkout')) 224. Navigating back & to next page checkoutCancelled = () => { this . props . history . goBack (); }; checkoutContinued = () => { this . props . history . replace ( "/checkout/contact-data" ); }; pass props on each buttons with those 2 functions  225. Passing Ingredients...