Quantcast
Channel: Esdee
Browsing index pages (31 articles)

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


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


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

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

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


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

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

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


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


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

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 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

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


"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

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


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

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


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

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

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
Browsing index pages (31 articles)


Latest Images