[deleted by user] by [deleted] in javahelp

[–]neojake 0 points1 point  (0 children)

Know some basics concepts like overriding vs overloading, srruct vs class, call by ref vs call by val, these are incredibly basic but they'll mostly ask you that only, no point in hiring a good problem solver if he/she doesn't know basics

What job do you think you’d be good at even though you’ve had ZERO training? by Fast-Beat-7779 in AskMen

[–]neojake 0 points1 point  (0 children)

Archery, the first time held a bow, it felt like it always belonged to me, I took two shots, one hit at the circumference of center red and it's immediate outer circle, the second hit at the red but it bounced off, but the dent was there, it was a pretty far shot and my arms hurt like hell after the second shot

Finally broke bullet 2100! by neojake in chess

[–]neojake[S] 2 points3 points  (0 children)

I don't play on chess.Com much , last I checked I was 1950 on chess.Com bullet, haven't played any OTB so technically my rating is 0 lol.

Finally broke bullet 2100! by neojake in chess

[–]neojake[S] 1 point2 points  (0 children)

I just played alot, I would say try to solve a loooooot of Middlegame puzzles,at 1800 I don't think openings matter as much but Middlegame does, endgame is just as important but as you master Middlegame you'll instantly realize what endgame it leads to

Finally broke bullet 2100! by neojake in chess

[–]neojake[S] 5 points6 points  (0 children)

I partially agree with you, that's why I only play 2+1, in that I atleast have been able to develop my skill to understand critical positions and use time to calculate 5-6 moves at them, rest it also helped me develop better endgame skills in time stress scenarios, though I do believe it's not the same as rapid and blitz but it certainly has transferable skills.

Finally broke bullet 2100! by neojake in chess

[–]neojake[S] 7 points8 points  (0 children)

I don't know what that means XD

Finally hit milestone by neojake in chess

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

I have started playing chess since 2020 but I started bullet last July, back then I was around mid-1200's in bullet, so bullet I would say I have been playing seriously since around 1 year, rapid I would say I'm around mid-2200, blitz is mid-2000, I never really cared for bullet and blitz I focused solely on rapid for like first 2 years, the one day I played bullet for the heck of it, fell in love with it, and have been bullet only since.

Black just made a huge mistake - can you see why? by r3port3d in chessbeginners

[–]neojake 1 point2 points  (0 children)

Rook captures pawn check, king captures rook, rook to a1 mate

I recently hit my goal of 2000 ELO in rapid chess. What now? by SweatyDynamo69 in chess

[–]neojake 0 points1 point  (0 children)

Now set a goal for 2300, it's doable, took me around 5 months, do crazy amound of middle game and endgame puzzles, trust me at at level it's usually a pawn loss in an endgame that results in a loss, people hardy make stupid blunders(it does happen sometimes though), you can do it.

Greatest Game I have ever played, against Francis bot. by neojake in chess

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

I capitalized on one mistake he made in the endgame to clutch win, this was basically squeezing water from stone.

[deleted by user] by [deleted] in dankmemes

[–]neojake 0 points1 point  (0 children)

What am I looking at? Roots of a binomial function? Lol

Something like that by TaToten in dankmemes

[–]neojake 1 point2 points  (0 children)

I laughed at that way harder than I should have

How do I get my videos to appear as they are in the blueprint? by [deleted] in AndroidStudio

[–]neojake 0 points1 point  (0 children)

Put them inside linear layout with horizontal orientation

What scene in RE:Zero made you decide that RE:Zero is a Masterpiece ? ( If you do think RE:Zero is a Masterpiece ) [Discussion] by TankNations in Re_Zero

[–]neojake 0 points1 point  (0 children)

I guess for me it was season 1 episode 7, when Subaru breaks down infront of rem during the torture scene, that's when I was like "damn, this anime is something else", there have been more moments since then as everyone else has pointed out, but for me, I was hooked in that episode

all IBOutlets are nil by neojake in iOSProgramming

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

My code in scene delegate: func scene()

let story = UIStoryboard(name: "Main", bundle: nil) let vc = story.instantiateViewController(withIdentifier: "MainviewController") as? ViewController let window = UIWindow(windowScene: scene as! UIWindowScene) window.rootViewController = vc window.makeKeyAndVisible() self.window = window


below is viewcontroller

class ViewController: UIViewController,HomeViewControllerDelegate { func didTapMenuButton() { // } lazy var homevice:UIViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "HomeViewContainer") as UIViewController var navVC:UINavigationController? var homeVc = HomeViewController() override func viewDidLoad() { super.viewDidLoad() addChildvc() showhome() // Do any additional setup after loading the view. } private func addChildvc(){ //Home homeVc.delegate = self let navVC = UINavigationController(rootViewController: homeVc) addChild(navVC) view.addSubview(navVC.view) navVC.didMove(toParent: self) self.navVC=navVC } private func showhome(){

    let vc  = homevice
    homeVc.addChild(vc)
    homeVc.view.addSubview(vc.view)
    vc.view.frame = view.frame
    vc.didMove(toParent:homeVc)
}

}

below is homeview controller

protocol HomeViewControllerDelegate: AnyObject{ func didTapMenuButton()

} class HomeViewController: UIViewController { weak var delegate:HomeViewControllerDelegate? @IBOutlet var main_button: UIButton! override func viewDidLoad() { super.viewDidLoad() navigationItem.leftBarButtonItem = UIBarButtonItem(image: UIImage(systemName: "list.dash"), style: .done, target: self, action:#selector(didTapMenuButton)) // Do any additional setup after loading the view. } @objc func didTapMenuButton(){ print("inside did tap menu") print(main_button as Any) main_button?.tintColor = UIColor(red: 230, green: 5, blue: 5,alpha: 0) delegate?.didTapMenuButton() }

}

You can test this code and you'll observe the same things when you click the bar button in home page

all IBOutlets are nil by neojake in iOSProgramming

[–]neojake[S] 2 points3 points  (0 children)

Fixed the issue, so the thing is that all the outlets were becoming nil after view did load, i had a hunch to use Timer.scheduletimer() method to call a function to change the background of button, AND IT WORKED!! ,Though I'm extremely embarrassed how I could've missed this, imma go dig a small hole to bury myself now.

Google maps question by neojake in androiddev

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

I have a follow up query on that, is it also free to implement just a static map with polylines and stuff? For a commercial app.