https://github.com/adib0073/GenerativeAI
https://github.com/adib0073/FastAPI_Docker_Deployment
https://github.com/adib0073/GenerativeAI
https://github.com/adib0073/FastAPI_Docker_Deployment
Only the last layer corners are left unsolved. First we have to get them to the right spot, so don't worry about the orientation in this step.
Find a piece which is already on the right place, move it to the right-front-top corner then apply the following algorithm to switch (cycle) the three wrong pieces marked with grey on the image.
Do this twice to do an inverse rotation of the pieces. If none of the yellow corners is on the right place then execute the algorithm once and look for a good piece again.
Start by holding the cube in your hand having a misaligned yellow corner in the highlighted Front-Right-Up spot (see image).
Repeat the R' D' R D algorithm until this piece comes to the correct position with the yellow sticker upwards.
Turning only the Up face, move another wrong yellow corner to the highlighted spot and repeat the R' D' R D algorithm until that yellow piece is oriented correctly.
Move other misaligned yellow corners to the marked spot one by one and do the formula until all corners are solved.
The puzzle might seem to be scrambled between the moves but don't worry because everything will come together when all yellow corners are oriented properly.

sudo mkdir -v /var/cache/swap
cd /var/cache/swap
sudo dd if=/dev/zero of=swapfile bs=1K count=4M
sudo chmod 600 swapfile
sudo mkswap swapfile
sudo swapon swapfile
Verify by: swapon -s or top:top -bn1 | grep -i swap
Should display line like: KiB Swap: 4194300 total, 4194300 freesudo swapoff swapfile command.fstab file to make it persistent on the next system boot.echo "/var/cache/swap/swapfile none swap sw 0 0" | sudo tee -a /etc/fstab
sudo swapoff swapfile
sudo swapon -va
Note: Above commands re-checks the syntax of fstab file, otherwise your Linux could not boot up properly.sudo add-apt-repository ppa:yannubuntu/boot-repair sudo apt-get update sudo apt-get install -y boot-repair && boot-repair
The above steps installed boot-repair and executed the
boot-repair utility.
2) The above step did not help me and my computer was still booting to
Windows 10 by default.
Then I did the below step after rebooting to windows 10.
Ran the command prompt as administrator and executed the below step
Basically the above step made the GRUB as default bootloader
instead of Windows Boot Manager which is also referred as
OS boot Manager in the BIOS.
This step was advised in the step 1 by boot-repair utility itself
if the boot-repair does not work.
3) The above solution only worked for one time and again the computer
started to boot windows 10 by default.
Then I tried the below solution which finally worked for me
Invoke terminal
Sudo su
cd /boot/efi/EFI
mv Boot Boot_bak
cp -Rf ubuntu Boot
cd Boot
mv shimx64.efi bootx64.efi
cd ../
mv Microsoft Microsoft_bak
$AdminTask importWasprofile {-archive /export/home/wps/qwps.car}
$AdminConfig save
wsadmin.bat –f deployConsole.py install
wsadmin.sh –f deployConsole.py remove
Remove is failing with the error that isclite.ear does not exists
Now , I did a search for files with isclite as string
I removed the directories cus and blas inside
WAS_INSTALL_ROOT/profiles/PROFILE_NAME/config/cells/CELL_NAME/ ,
Now did again
wsadmin.bat –f deployConsole.py install
That is also not working and giving the error Virtual Host not found. I am aware of this
error but I can not modify the virtual host until I have admin console .
Before trying something else , I have decided to create a profile with same name , same
cell name and same node name and then do the import . This way , it will be much cleaner .
After creating the profile , I have taken the backup before doing the import .
Started the server1 and now going to do the import .
after doing the reinstall of admin console , I found
that several variables have been created
twice like WAS_INSTALL_ROOT , WBI_INSTALL_ROOT and location of few derby databases
which were used in windows system such as MEDB , EVENTDB , WPRCSDB , Business
Space was imported as it is .
The values of WAS_INSTALL_ROOT , WBI_INSTALL_ROOT can be
observed from Environment -->
WebSphere Variables
WBI_INSTALL_ROOT not found
Getting error
EJB Timer
Service not started
First
component in name DefaultEJBTimerDataSource not found
Viewed the DefaultEJBTimerDataSource
by changing preferences to show built-in resources
While doing Test connection , getting error EJBTimerDB not
found
used the below command to create all derby databases
setupEventCollector.bat -conntype none -profileName rwps
whichever was giving error during the test connection .
Used the same database name as per the datasource parameters
Uninstalled wpsFEMgr_7.0.0 as this is giving errors . I only
want to run a web application .
Uninstalled BPCECollector_qnode_server1 as well.
Uninstalled the BSpacewebformsEnabler_qnode_server1
Resources-->Schedulers-->Create tables
python -m tabnanny yourfile.py
Then if you are using PyCharm as text editor then
go to Code , reformat code
There will be similar options in other text editors as well
Find version of Oracle database instance
SELECT * FROM V$VERSION
orSELECT version FROM V$INSTANCE
Find the current ORACLE_SID you are logged in
sqlplus sys as sysdba; select name from v$database; select instance from v$thread;select ora_database_name from dual;
Find the current schema name you are logged in
select sys_context('userenv','instance_name') from dual;
select user from dual;
select * from global_name;
Find location of alert logs, alert log file name will be alert_ORACLE_SID.log
show parameter background;
To find out the location of diagnostic info like trace , logs etc.
select * from v$diag_info;