₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,152 members, 8,420,575 topics. Date: Friday, 05 June 2026 at 03:24 AM

Toggle theme

Xcetera's Posts

Nairaland ForumXcetera's ProfileXcetera's Posts

1 (of 1 pages)

ProgrammingRe: TeamApt Code Challenge by Xcetera(op): 3:59pm On Dec 27, 2018
Hi, just seeing this. I'm not a Nairaland frequent user.You can probably send an email to brownwoodinc@hotmail.com and ask whatever you want to ask. Thanks
weller:
@xcetera I wanna ask you a few questions as regards the code challenge... reach out to me via email pushtechs@gmail.com
TravelUSA Visiting Visa Advise by Xcetera(op): 3:15pm On Dec 06, 2018
Hello People,

I will like your advise on USA visiting visa. I intend to go with my family (wife and a kid), I have a good job I'm doing here in Nigeria and my wife has her own stuff she runs. So I will like to as if the letter that'd be giving to me from the company I work with will suffice (I also intend to add all other supporting document like offer letter, promotion letter etc) Secondly, proof of funds, how much would you guys advise I have as balance in my account considering the fact that I'm going with my Family.

Thank you.
PhonesSmart Watch DZ09 by Xcetera(op): 10:18am On Sep 05, 2018
Hello Guys,

Does anyone here use or have used this smart watch before? DZ09.
I want to confirm if it is possible to use the smart watch alongside a Bluetooth earphone simultaneously and also it requires sim card for WhatsApp and FB notification to work, have anyone use sim card on it also?

Anticipate a positive swift response.

Thank you.
AutosRe: ASK GAZZUZZ by Xcetera(m): 11:45am On Aug 14, 2018
Wow, thanks. I'd give you a call soonest.

Xcetera:
call me. If no parts are required I will fix it for you.

08033910382
AutosRe: ASK GAZZUZZ by Xcetera(m): 11:42am On Aug 14, 2018
call me. If no parts are required I will fix it for you.

08033910382
AutosRe: ASK GAZZUZZ by Xcetera(m): 11:07pm On Aug 13, 2018
Okay, thanks @ugreat.

Gazzuzz, my location is Ogba, close to excellence hotel.

ugreat:
Gazzuzz will expect you to state your location
AutosRe: ASK GAZZUZZ by Xcetera(m): 1:54pm On Aug 13, 2018
Hi Gazzuzz, still waiting pls. Thanks

Xcetera:
Okay sir. Can u pls recommend one? So I don't meet the wrong one.
AutosRe: ASK GAZZUZZ by Xcetera(m): 8:48pm On Aug 11, 2018
Okay sir. Can u pls recommend one? So I don't meet the wrong one.


GAZZUZZ:
You need a learned tech sir, not just someone that can pull info off a scanner.
AutosRe: ASK GAZZUZZ by Xcetera(m): 6:28pm On Aug 11, 2018
@ Idle, you mean without turning on the ignition and if yes, how am I supposed to drop it to 7-9%?


GAZZUZZ:
Drop those values to between 7-9% @ idle.
AutosRe: ASK GAZZUZZ by Xcetera(m): 8:33pm On Aug 10, 2018
Hi Gazzuzz,
See scan result as requested, attached.



GAZZUZZ:
do a live scan and let me know the values of TPS in degrees sir.

ProgrammingRe: TeamApt Code Challenge by Xcetera(op): 6:54am On Aug 08, 2018
Thanks yorex2011. Much appreciated.
AutosRe: ASK GAZZUZZ by Xcetera(m):
Hello Gazzuzz,

I have Corolla 2003, the transmission doesn't change from 1 on time, I'd have to take my leg off the gas pedal before it changes from 1 to 2. In summary, it get stuck on gear 1 for a long time....from gear 2 to 5 changes smoothly.

Please advice.

Thank you.
ProgrammingTeamApt Code Challenge by Xcetera(op): 2:18pm On Aug 06, 2018
Hello Friends,

Please I'm sorry if this isn't the right place for this topic.

I'd like to know if anyone has ever had code interview with TeamApt before (via Skype), I'd like to know what sort of things they ask you to write.
Thank you in anticipation.
ProgrammingAndroid Webview by Xcetera(op): 4:31pm On Jul 25, 2015
Hello Android Developers,

Please I have an Issue here wouldn't know if it's small or big.... smiley.
I'm implementing export to PDF in an android app (Someone has already work on a part that loads the content into the webview), the concept I'm using is to convert the content of the webview to an image then attach that image to a PDF file.

The challenge now is that, the image is always empty because the url that's being loaded is via loadBaseURL. However if I do loadURL and parse a url e.g https://www.google.com, once the URL has been successfully loaded, the image is created with the landing page of google.

So I don't know if anyone have an idea of what I'm doing wrong that when using loadBaseURL the image is always white.

Below is the part where I'm trying to capture the content of the webview:

webView.loadDataWithBaseURL("file:///android_asset/", (htmlString + htmlBody), "text/html", "utf8", null);
//webView.loadUrl("http://");
//==========================Export to PDF==========================
webView.setWebViewClient(new WebViewClient() {

@Override
public void onPageFinished(WebView view, String url) {

//Picture webViewShot = view.capturePicture();
webView.setDrawingCacheEnabled(true);
webView.buildDrawingCache();


Bitmap bmp = Bitmap.createBitmap(webView.getWidth(), webView.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bmp);
//Paint paint = new Paint();
//canvas.drawBitmap(bmp, 0, bmp.getHeight(), paint);
webView.draw(canvas);
System.out.println("Inside onPageFinished" + canvas.getWidth() + " " + canvas.getHeight());
//webView.draw( canvas );

FileOutputStream out = null;
try {
out = new FileOutputStream(IMAGE_FILE);
//out.write(IMAGE_FILE.toString().getBytes());
} catch (FileNotFoundException e) {

e.printStackTrace();
}
bmp.compress(Bitmap.CompressFormat.JPEG, 97, out);
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
}

Your kind assistance would be highly appreciated.

Looking forward to your responses.

Thank you very much.

1 (of 1 pages)