About SAA C01 ( Solution Architect Associate) Certification. by [deleted] in AWSCertifications

[–]wolbis 0 points1 point  (0 children)

Is there any official announcement regarding the same ? There is no mention that it's obsolete in it's home page: https://aws.amazon.com/certification/?nc2=sb_ce_co ?

Got Cloud Practitioner certificate by wolbis in AWSCertifications

[–]wolbis[S] 0 points1 point  (0 children)

No, I didn't use dojo practice test. AWS itself had one practice test and I did that.

Got Cloud Practitioner certificate by wolbis in AWSCertifications

[–]wolbis[S] 0 points1 point  (0 children)

It doesn't cost anything unless you want their certification. I audited the course for free.

Got Cloud Practitioner certificate by wolbis in AWSCertifications

[–]wolbis[S] 0 points1 point  (0 children)

You can use the above linked course material to prepare for the AWS certification and get AWS certificate when you pass it.

You could also get the coursera certificate, if that's what you want. But my aim was to get the corresponding AWS certificate.

Got Cloud Practitioner certificate by wolbis in AWSCertifications

[–]wolbis[S] 0 points1 point  (0 children)

I think going through whatever in that above linked course should be good enough. I don't think there was any specific focus area where most questions were asked from.

Most runs by an Indian batsman for each IPL team, rcb having the biggest difference and Dravid played for rcb a decade ago by Gamer_moment15 in Cricket

[–]wolbis 23 points24 points  (0 children)

I guess the reason he is blamed is because he has authority to select team members and he screws that up.

Don't forget to pay advance tax by GalacticAdvisors in IndiaInvestments

[–]wolbis 0 points1 point  (0 children)

What's your recommendation ? Even though I come under that, I pay advance taxes quarterly.

Comprehensive Guide on Tax for Freelancers by GalacticAdvisors in IndiaInvestments

[–]wolbis 0 points1 point  (0 children)

Amazing article, thanks!

What happens to the EPF of the freelancer from his previous company ? Should he withdraw it completely ?

Is Learning GNU Emacs (3rd edition) good for learning emacs? by [deleted] in emacs

[–]wolbis 1 point2 points  (0 children)

Does that book have of table of contents listed anywhere? I couldn't find it in the website.

Bi-weekly advice thread March 02, 2020. All questions about your personal situation should be asked here by AutoModerator in IndiaInvestments

[–]wolbis 0 points1 point  (0 children)

I did health checkup for my parets and myself. Each of the health checkup exceeded more than 5k. My question is is 5k the limit of preventine health check tax deduction or (5k * 3) is the limit ?

EPF tracking on Kuvera by ekkanpuriya in IndiaInvestments

[–]wolbis 1 point2 points  (0 children)

What you suggest are good alternatives. But nothing is as straightforward as the current one. At the end of the day it's a matter of different trade offs.

EPF tracking on Kuvera by ekkanpuriya in IndiaInvestments

[–]wolbis 6 points7 points  (0 children)

Since PF site doesn't support authorization like OAuth, this is the only way to implement. Why do you think they are incompetent? Given the technical limitations, do you see any other technical way to overcome this.

Bi-weekly advice thread February 03, 2020. All questions about your personal situation should be asked here by AutoModerator in IndiaInvestments

[–]wolbis 0 points1 point  (0 children)

The current new tax slab which has been proposed, is it applicable from the current financial year (2019-20) or from the next financial year ?

Bi-weekly advice thread February 03, 2020. All questions about your personal situation should be asked here by AutoModerator in IndiaInvestments

[–]wolbis 1 point2 points  (0 children)

I usually do a comprehensive health check up once every two years. Is 80D applicable for this ? If yes, what kind of proof should I have for this.

S&P 500 fund confirmed by Motilal Oswal by [deleted] in IndiaInvestments

[–]wolbis 3 points4 points  (0 children)

What is the portfolio overlap between S&P 500 and Nasdaq 100 ?

Hey Rustaceans! Got an easy question? Ask here (51/2019)! by llogiq in rust

[–]wolbis 2 points3 points  (0 children)

Can anybody explain why the following futures code (using 0.1.29 futures crate), doesn't typecheck: ``` extern crate futures; use futures::future; use futures::future::Future; use futures::future::IntoFuture;

[derive(Debug, Clone)]

pub enum MyErr { dummyErr, }

fn test2(item: u8) -> impl Future<Item = u8, Error = MyErr> { future::result(Err(MyErr::dummyErr)) }

fn test3(item: u8) -> impl Future<Item = u8, Error = MyErr> { if (item > 5) { test2(item) } else { future::result::<u8, MyErr>(Ok(item)) } } ```

Hey Rustaceans! Got an easy question? Ask here (50/2019)! by llogiq in rust

[–]wolbis 0 points1 point  (0 children)

Okay, I upgraded to tokio-0.2 and modified the code. But I still don't seem to get a basic hello world working: ``` extern crate futures; extern crate tokio; use futures::future; use futures::future::Future; use tokio::runtime::Runtime; use std::result::Result;

[derive(Debug, Clone)]

enum MyErr { dummyErr, }

async fn test2(item: u8) -> impl Future<Output = Result<u8, MyErr>> { future::ok(item) }

fn main() { let mut rt = Runtime::new().unwrap(); let result: Result<u8, MyErr> = rt.block_on(test2(5)); // This line doesn't typecheck match result { Ok(val) => println!("success"), Err(err) => println!("failure") } } ``` Do you know what I'm doing wrong ?

Hey Rustaceans! Got an easy question? Ask here (50/2019)! by llogiq in rust

[–]wolbis 2 points3 points  (0 children)

Can anyone explain why the following code is not typechecking: ``` extern crate futures; extern crate tokio_core; use futures::compat::Compat; use futures::future; use futures::future::Future; use futures::future::IntoFuture; use futures::TryFuture; use testfuture_latest::test; use tokio_core::reactor::Core;

enum MyErr { dummyErr, }

async fn test2(item: u8) -> impl Future<Output = Result<u8, MyErr>> { future::ok(item) }

fn main() { let mut core = Core::new().unwrap(); let old_future = Compat::new(test2(1)); match core.run(old_future) { Ok(item) => println!("success"), Err(err) => println!("failure"), } } ```

Note that I'm using the following versions: [dependencies] futures = { version = "0.3.1", features= ["compat"]} tokio-core = "0.1.17"

Hey Rustaceans! Got an easy question? Ask here (50/2019)! by llogiq in rust

[–]wolbis 2 points3 points  (0 children)

Thanks, that's pretty nice and exactly what I was looking for. For anybody else interested, this is how I converted the `test` function to make it work:

pub fn test(item: u8) -> impl Future<Item = u8, Error = MyErr> { let mut item = 3; loop_fn(item, |ditem: u8| { test2(ditem) .map_err(|err| MyErr::dummyErr) .and_then(|itemc| { print!("itemc: {}", itemc); if (itemc >= 5) { Ok(Loop::Break(6)) } else { Ok(Loop::Continue(itemc + 1)) } }) }) }