Skip to content

Instantly share code, notes, and snippets.

Who is the DS & ML Leader in AppQuality

Leadership in AppQuality doesn't mean to manage people.
You will lead the company in the journey of understanding the data on top of which we lay, and eventually see also the team itself grow.
You will guide the Dev Team in implementing a strong analytics layer.
You will help the company define meaningful KPIs for internal processes and quality.
You will suggest innovative ways of using the power of the crowd.

Who we are

Human Touch in Software Testing

App-Quality is looking for a new team member in Cremona or Milan.

Who we are

Human Touch in Software Testing

AppQuality is a crowd testing platform that enables companies developing digital products to test them on real users achieving qualitative and quantitive data with less time and effort.
AQ is a small yet growing team very fond of lean thinking. We're dislocated in both Cremona's Cobox, Milano's PoliHUB, and Milano's TAG Calabiana to be always down deep in a positive and innovative environment.

App-Quality is looking for a new team member in Cremona or Milan.

Who we are

Human Touch in Software Testing

AppQuality is a crowd testing platform that enables companies developing digital products to test them on real users achieving qualitative and quantitive data with less time and effort.
AQ is a small yet growing team very fond of lean thinking. We're dislocated in both Cremona's Cobox and Milano's PoliHUB, to be always down deep in a positive and innovative environment.

LOVETHESIGN is looking for a new team member, be it Full-Stack, Frontend, Backend, we care to know what's your vocation, we need it and we want to let you grow on that.

LOVEThESIGN is a young, yet growing reality based in Milan, we are not just an ecommerce specialised in interior design, we are the best. We collect awesome design products from all over the world and help people get them straight to their home.

To do so, we deal we a lot of technologies, so here's a short (believe me) list, the most you choose between the ones you know and the ones you want to work with, the most this place might be "the" place for you next.

@zerho
zerho / Java2ObjC
Created May 28, 2015 11:50
a simple example of how you write stuff from java to ObjectiveC
Persona p = new Persona();
Persona * p = [[Persona alloc] init];
Persona p = new Persona("Matteo");
Persona * p = [[Persona alloc] initWithName:@"Matteo"];
Persona p = new Persona("Matteo","M");
Persona * p = [[Persona alloc] initWithName:@"Matteo"
andSex:@"M"];
@zerho
zerho / reach.m
Created September 15, 2013 23:12
- (BOOL) networkAvailable
{
[self pingReachabilityInternal];
BOOL isReachable = ((connectionFlags & kSCNetworkFlagsReachable) != 0);
BOOL needsConnection = ((connectionFlags & kSCNetworkFlagsConnectionRequired) != 0);
return (isReachable && !needsConnection) ? YES : NO;
}
// kSCNetworkFlagsReachable
// kSCNetworkFlagsConnectionRequired
@zerho
zerho / gist:6007799
Last active December 19, 2015 19:39
route
...
{
path: '/*',
httpMethod: 'GET',
middleware: [function(req, res) {
var role = userRoles.public, username = '';
if(req.user) {
role = req.user.role;
username = req.user.username;
}
# decode the .apk
apktool d <apkname>
# change whatever you want
apktool b [decoded folder]/bin
@zerho
zerho / build.sh
Last active December 19, 2015 13:28
The script i used to automate the building process of a suite of games
#!/bin/bash
create ./export it.wink.$1 $1
# copy new project into decompiled `www` folder
cp -R -p $1/* export/assets/www/
# fix an issue with lib import
sed -i "s/<script src=\"phonegap.js\"><\/script>/<script src=\"cordova-2.6.0.js\"><\/script>/g" export/assets/www/index.html
# set the splash screen
mv export/assets/www/splash.png export/res/drawable/splash.png
@zerho
zerho / firstLaunch.java
Created May 29, 2013 11:17
Android First app launch
// Add this method to the Activity
private boolean isFirstLaunch() {
// Restore preferences
SharedPreferences prefs = getSharedPreferences("MainApp_PREFS", 0);
boolean isFirstLaunch = prefs.getBoolean("isFirstLaunch", true); // la chiave da cercare, se non esiste torna true
return isFirstLaunch;
}
// and copy this in the onCreate() implementation