GoClever Tab T75 – swap SD card

UWAGA:
Materiał ten jest tylko poglądowy. Autor nie odpowiada za ewentualne uszkodzenia powstałem w wyniku zastosowania się do opisanego poniżej procesu. Robisz to na własną odpowiedzialność!

 Android, tak jak każdy Linux, w swoim systemie plików pozwala na zmianę fizycznej lokalizacji poszczególnych folderów. Oznacza to, że np. /mnt/sdcard nie musi wskazywać lokalizacji do wewnętrznej pamięci tabletu!

Domyślnie /mnt/sdcard wskazuje na partycję vfat znajdującą się na wbudowanej 4GB pamięci NAND. Partycja ta ma rozmiar 2.2 GB. Korzystając z zewnętrznej pamięci micro SD możemy nie tylko zwiększyć jej rozmiar, ale również znacznie przyspieszyć operacje odczytu/zapisu. Najlepiej do tego celu wykorzystać karty 32GB Class10 aby uzyskać najlepszy rezultat pod względem wielkości jak i szybkości. Read the rest of this entry »

, , , , ,

No Comments

GoClever Tab T75 – root

UWAGA:
Materiał ten jest tylko poglądowy. Autor nie odpowiada za ewentualne uszkodzenia powstałem w wyniku zastosowania się do opisanego poniżej procesu. Robisz to na własną odpowiedzialność!

Na wstępie dodam, że metodę z pre-root’owaną aktualizacją (update.zip) nie można zastosować w tym urządzeniu, ponieważ pliki są cyfrowo podpisane, a GoClever nie udostępnia publicznie swojego certyfikatu (przynajmniej ja o tym nic nie wiem). Utworzenie i wgranie własnego certyfikatu do urządzenia również nie spowoduje akceptacji update.zip ponieważ wgrane w ten sposób certyfikaty są wykorzystane tylko do weryfikacji stron www itp.

Przed root’owaniem zalecam zainstalowanie aktualizacji dostępnej dla T75 na stronie producenta.

Read the rest of this entry »

, , , , ,

No Comments

GoClever Tab T75 – my review

This model is mostly popular in my country, so I will write this review in my native language.

Nie tracąc czasu przejdę w kolejnych krokach do omówienia wrażeń po zakupie i z użytkowania tego tabletu.
Read the rest of this entry »

, , , , , ,

No Comments

SuperPad i7 – 7” FlyTouch 3 my review

I decided to purchase cheap tablet and after some time of consideration and price comparison I decided to purchase a SuperPad i7 FlyTouch 3 tablet.

Read the rest of this entry »

, , ,

No Comments

Customizing environment on Windows (separate build paths)

First of all this title is a little misleading, but due to lack of better idea I decided to leave it as it is.

What this article is about (brief explanation)?
When You build an application most of the IDE (of Your choice) set up for You automatically system variables, like system “path” variable for example. That’s allow IDE to find appropriate libraries and use/link them. For example I use QtCreator to build Qt application and on application start up QtCreator set up system “path” variable and adds path to QtSDK, i.e. “c:\Qt”. That way when I press “run” in IDE application finds all dependences (dll) and runs fine. Problem starts when I close QtCreator, due to unset path variables, I can’t no longer run my application (at least not when path variables don’t point to the QtSDK directory with libraries). Read the rest of this entry »

, , ,

No Comments

distance measurement [3DS Max Script]

distanceFromCamer
This is a simple script for 3DS Max that measure distance between camera and selected object.
It came really hand when You work with the, for example, DOF or some XSI ink shader that uses distance values to perform some actions. Normally taper is used for this task but it’s an hassle to set it up. I wanted something really fast.
Read the rest of this entry »

, , , ,

No Comments

Compressing – Decompressing web GZIP stream

Compressing and decompressing is one of the essential task when dealing with the web oriented programming. Qt allow to manipulate compressed data stream using qUncompress/qCompress functions, but they are problematic and don’t really helps much. From my experience, with these functions, it’s practically impossible to decompress gzip stream (although I can be wrong on this one, and maybe there is a way – never say never) . Read the rest of this entry »

, , , , ,

No Comments

QtThreads are not scary! – part 1 – How not to write It

From my experience QThread class can be somewhat confusing to use. Mostly due to how they work, not because they are hard, so here is a short explanation what and how to use threads in qT.
In the first place why to use threads? Threads are useful for heavy duty or computation expensive tasks that cause GUI to freeze. In example video compression takes a long time and is very CPU intensive. If that task is run on the same thread as you main GUI, in main application thread, program don’t receive events and operating system mark it as non responsive. Of course, if application is well written, after video compression GUI “unfreeze” and program works fine after that. This behaviour is not expected, because user don’t rally know if program works correctly or not. Read the rest of this entry »

, , , , ,

No Comments

Qt licensing style for You

Licensing is somewhat confusing when it comes to Qt. There are few kinds of license that You can choose from, and depending on the specific of distribution of Your software it can become somewhat confusing.

Read the rest of this entry »

,

No Comments

Static qT compilation and mingwm10.dll (MinGW) confusion.

After some reading, on the web, about MinGW compiler It comes to my attention that using static qT build without mingwm10.dll could cause memory leeks. That’s due to specific job that mingwm10 perform, with is catch dying threads and clean up data after them and handle exception in code. This is probably the reason, why by default, MinGW links that library in the first place. Read the rest of this entry »

, , , , ,

No Comments