Quantcast
Browsing latest articles
Browse All 31 View Live

fun with specialized function templates in c++

i was quite sad a few days ago for a reason some of you may be familiar with all to well:a program was working fine in debug, but didn't return results in release build. luckily this was not in...

View Article


my first complete android app

well, what can i say - it is fun to program for android; i enjoy java and the android apis are ok.my own android phone is quite old, running android 1.5 so i had to write for api level 3.i see some...

View Article


hello github

i posted the code for the android app i mentioned earlier in github here: https://github.com/esdee-git/missed-callssince the app itself was my coding test for android platform, a good decision was to...

View Article

android camera.open() freeze

weirdest thing happened while i was experimenting with android.hardware.camera api.i was testing on a 2.2 device and of course there were the problems with Camera.getNumberOfCameras() missing etc, but...

View Article

rotate image in android apps

i guess i'm starting to learn a thing or two about organizing my stuff, and as result decided to post the result of one task that is a part of a bigger task, that is a part of an idea that i'm already...

View Article


image is rotated after camera preview in portrait mode (android)

this was quite a headache.in surface preview (portrait) everything is fine, but once you save the image it turns out it is stored rotated on 90 degrees. what the heck?!it seems a huge problem with some...

View Article

AndroVM network setup for android apps testing

not sure how i got to http://therockncoder.blogspot.com/2013/06/using-virtualbox-android-emulator.html, but the idea to have a faster emulation for android apps testing was great so when the time came...

View Article

The provider did not return a ProviderManifest instance (VS 2013,...

checking out EntityFramework 6 code-first and encountering various errors during the process :)this is more of a saved hint how to deal with this...found in the comments...

View Article


wpf, entity framework, sqlite and all that jazz

so i wanted to do something with wpf and of course data had to be involved. for this project i first played a bit with velocitydb, then some more with ravendb - both great nosql databases, but their...

View Article


libgdx and how i solved some problems i had

one has to keep him self busy, so this summer, as being away from the sea, i decided to go back to some android programming.my initial idea was to create an app, but for UI i wanted to use a gaming...

View Article

playing with GO and setting up Atom for golang

i thought it might be good idea to make my first steps with Go (or is it GO?) in an IDE, so after a quick search i decided i don't want to go as far as eclipse and gave a try to LiteIDE.and, for the...

View Article

"Do Something!" with Go, JQuery and Delicious api

it is best when learning a new programming language to exercise on some practical problem.well, one problem i have is having to put up with plugins for delicious, so i decided to write a server to...

View Article

simple BroadcastReceiver for Android missed calls app + tips for...

i wanted to play a bit with Android programming (again), so first i decided to try the latest AndroidStudio. I was originally Android-ing on Eclipse and gave only a quick test to the then-new...

View Article


create docker image for your go application

just wanted to give a try to docker so i gave a try Jsomehow i thought that docker is a really magical tool and you just point it to your executable and it gathers all dependencies and pops the image...

View Article

docker image, ports and remote connections

soooo, very quickly i stumbled on a problem with my app i was deploying with docker.the app opens a port and docker allows to redirect ports on the image to different ports on the host, so i was...

View Article


create a slim and lean docker image for your go/golang application

all well and dandy - we have our app, it is running inside a docker image - yet there is still something we could do better.hit 'docker images' and take a look at the outputREPOSITORY TAG IMAGE ID...

View Article

javascript drag and drop: problems with dragleave

i don't have much experience with javascript and jquery, but recently i started playing with MeteorJS (and i love it - but about this in a different post). i'm dragging something onto a div and want an...

View Article


fall in love with meteorjs + deploy an app to heroku

yes, fall in love indeed - because for me, a mostly c++ person, the recent developments in web, specifically the rise of javascript as a powerful tool to build apps, went past too quickly to observe...

View Article

emulator: ERROR: unknown skin name 'nexus_5'

while playing with ionic everything worked fine with the ios emulator, but i got this error when starting the android emulator: emulator: ERROR: unknown skin name 'nexus_5'all articles on stackoverflow...

View Article

Let me tell you about Hapi - building a REST API engine for Nodejs

(i will be showing something a built with hapi - check it out here: https://cloudy-api.herokuapp.com/documentation) i would admit again and again that i missed the javascript revolution, but i am...

View Article

nodejs postgres pg.client returning partial results in json

i had a very weird problem with a nodejs and postgre app i'm building:i'm running a sql query with join in dbeaver: select matches.match_date, t1.team_long, t1.team_short, t1.id, t1.logo, t2.team_long,...

View Article


reverse linked list

been fooling around writing solutions to algorithms in c++. here is a solution to reverse a linked list. nothing new - the idea is to revert the links, but before that keep somewhere the links to the...

View Article


remove duplicates from an unsorted linked list

more fun with algorithms: how to remove duplicates from an unsorted linked list in cpp?easy - just walk along the list and delete duplicate items.but how to know an item is a duplicate?well, for every...

View Article

Removing Characters from a String

found an interesting learning resource http://www.bogotobogo.com/it also has a section on programming questions, not so extensive as the awesome http://geeksforgeeks.org/, but has some good problems to...

View Article

generate permutations of letters in a string

how to generate all permutations of the letters in a string? one method i like, for its intuitiveness - go to the last letter of the string and then recursively create strings by inserting previous...

View Article

Browsing latest articles
Browse All 31 View Live