in-lt-89@IN-LAP-87080:~/Oracle/MIddleware142/user_projects/domains/base_domain/bin$ usejava21
in-lt-89@IN-LAP-87080:~/Oracle/MIddleware142/user_projects/domains/base_domain/bin$ sh startWebLogic.sh
...
...
Enter username to boot WebLogic server: weblogic
Enter password: manager1
...Recently, I encountered an issue with my .bashrc file on my Ubuntu system that left my terminal unusable, eventually all stuffs like developing, running, testing halts. Here’s how I identified and resolved the problem.
I was trying to install WebLogic on my local system to check for compatibility issues. My Java version at the time was:
openjdk version "1.8.0_302"
This file contains hidden or 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
| // Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file | |
| // for details. All rights reserved. Use of this source code is governed by a | |
| // BSD-style license that can be found in the LICENSE file. | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
| // This is a reimplementation of the default Flutter application | |
| // using riverpod. | |
| void main() { |
This file contains hidden or 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 'dart:convert'; | |
| import 'dart:core'; | |
| void main() { | |
| var x = { | |
| 'data': [ | |
| {'id': 1, 'attributes': {'name': "R"}}, {'id': 2, 'attributes': {'name': "S"}} | |
| ] | |
| }; |
Can take help from https://github.com/DopplerHQ/awesome-interview-questions
- What is data type in C?
- What is sizeOf function in C?
- What is syntax of ternary operator in C?