kcubeterm ::1
195 subscribers
21 photos
6 videos
7 files
38 links
Just collecting useful and useless stuff in a suitable manner
Download Telegram
How to install google cloud sdk and run Cloud ssh interactively and locally ?

https://git.io/cloudshell-ssh

https://gist.github.com/kcubeterm/7e2792366bd6e8c14064f7e2ac109cc7
I can run java code via termux in my device (pie) with dalvikvm.

Few guys claims dalvikvm can't execute code in android pie but look like that's not true for all devices.

Here are the steps to checkout.

Requirements: dx , ecj

#1. Save this code into hello.java


class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } }



#2 Now compile it via ecj.

ecj hello.java

It will output a file, HelloWorld.class

#3 Now generate dex file.


dx --dex --output=Main.dex HelloWorld.class


#4 Now execute your java bytecode with android java virtual machine.


dalvikvm -cp Main.dex HelloWorld


Output: Hello world!

Here if you get any error, report here with your device info
Forwarded from c+aue (outdated account)
ril_export.html
715.6 KB
got the export to work... using this surprisingly amazing kiwi browser.
Media is too big
VIEW IN TELEGRAM
Manage Bookmark with termux +shiori
Just launched a public webshell powered by ubuntu 20.04

shell.kcubeterm.me

Edit: it's down
Forwarded from ian
Forwarded from Yaksh Bariya
https://github.com/termux/termux-packages/actions/runs/1231862756

Nodejs 16.9.1 now available for aarch64, arm and i686. Appreciate if someone helps in finding some possible bugs that may not have been noticed
Forwarded from Arman
I used imagemagick to edit the image and then made a script using bash

Here my script: https://github.com/xshin404/myTermux/blob/main/.local/bin/awesomeshot

Documentation: https://xshin404.github.io/awesomeshot/index.html

But the documentation is no longer relevant to the new option, you can use the -h option to see the execution options
Let's go with open-source alternative.
Librera Reader is a highly customizable and feature-rich application
for reading e-books in PDF, EPUB, MOBI, DjVu, FB2, TXT, RTF, AZW, AZW3, HTML, CBZ, CBR, DOC, DOCX, etc. formats

https://play.google.com/store/apps/details?id=com.foobnix.pdf.reader

https://f-droid.org/packages/com.foobnix.pro.pdf.reader
Achoz 0.2.0 has been released on the eve of new year.

Achoz, A self-host search engine for your personal data. It will normalize your all data efficiently. Uses typesense search engine under the hood which makes quite fast and help you to dig in your huge amount of data.

https://github.com/kcubeterm/achoz
Forwarded from kcubeterm ::1
Hello, Boys. This is my new Guest. Volla phone X powered by ubuntu touch.

This is my first ever linux phone which is gifted by @cregox 🥰
Get 1 GB free 4G internet data in Airtel by using following method :

* If You are using Airtel SIM so you must have Airtel Thanks app , If not install it and login.

* Open app and go to coupon section.

* Put this Code PPR3DVUR3YGN

* Now enjoys 1 GB haha.

I bought a twisteez, and found above code under the packet, Since I don't have Airtel Sim. Sharing is caring
Live stream started
If you ever wanted to learn Rust programming language, here's few tips.

* If you are coming from High level languages, then invest first two days in c language and focus on how to leak memory in C, like try reading a file, allocate memory for buffer etc.

* Make sure whatever editor you are using, it is backed by auto completion, rust analyzers. It save your time and efforts to run and check error again and over again. Because you will get a lot of errors. Rust compiler has zero tolerance over error.

* Don't forget above point. Newbies often do these mistakes. No matter how much experience you have with any language.