Skip to content

Instantly share code, notes, and snippets.

View biochimia's full-sized avatar

João Abecasis biochimia

  • Adevinta
  • Barcelona, Spain
View GitHub Profile

Keybase proof

I hereby claim:

  • I am biochimia on github.
  • I am biochimia (https://keybase.io/biochimia) on keybase.
  • I have a public key ASD1-Y8Ys_i0pDtA7nedH6_qQVF21xmwqmKKO5HbG1yprQo

To claim this, I am signing this object:

<App xmlns:b="Fuse.BasicTheme" ux:Class="Example.Network.MainView">
<b:BasicTheme />
<DockPanel>
<StatusBarBackground DockPanel.Dock="Top" />
<Button DockPanel.Dock="Top" Text="Send Requests" Clicked="SendRequests" />
<StackPanel DockPanel.Dock="Bottom">
<StackPanel Orientation="Horizontal" Alignment="Center">
<Button Text="Sent: 0" ux:Name="RequestsSent" />
<Button Text="Successful: 0" ux:Name="RequestsSuccessful" />
</StackPanel>
diff --git a/StdLib/Core/UnoCore/Source/Uno/Platform2/Application.uno b/StdLib/Core/UnoCore/Source/Uno/Platform2/Application.uno
index 248fb38..1a4d708 100644
--- a/StdLib/Core/UnoCore/Source/Uno/Platform2/Application.uno
+++ b/StdLib/Core/UnoCore/Source/Uno/Platform2/Application.uno
@@ -37,32 +37,31 @@ namespace Uno.Platform2
[TargetSpecificImplementation] private static void DidEnterBackground() { }
[TargetSpecificImplementation] private static void WillTerminate() { }
[InvokedFromNativeCode]
private static void Start()
@biochimia
biochimia / CameraApp.unoproj
Last active September 3, 2015 20:32
Fuse App to Take Pictures
<Project>
<References>
<PackageReference Name="ObjC" />
<PackageReference Name="Experimental.iOS" />
<PackageReference Name="FuseCore" />
<PackageReference Name="Fuse.BasicTheme" />
<PackageReference Name="Fuse.Controls" />
<PackageReference Name="Fuse.Elements" />
</References>
<Files>
@biochimia
biochimia / gist:6028609
Last active December 19, 2015 22:38
This is how I manage multiple AWS credentials.
# Author: João Abecasis <joao@comoyo.com>
# Date: 2013-06-19
#
# For each AWS identity, you'll need
#
# ~/.aws-credentials.<identity> -- with AWS credentials (see below)
# ~/.aws.<identity> -- symlink to this script
#
# The file .aws-credentials.<identity> is the canonical source for credentials.
# It's directly used by some AWS tools and it should look like:
@biochimia
biochimia / main.cpp
Created August 30, 2012 13:20
Proof-of-concept alternative architecture for QObject
#include "object.h"
#include "one.h"
#include "other.h"
#include <assert.h>
#include <stdio.h>
int main()
{
Object obj;
@biochimia
biochimia / gist:3479321
Created August 26, 2012 13:29
This about sums up everything that is wrong with QObject.
struct QObject;
struct QObjectPrivate
{
virtual ~QObjectPrivate();
QObject *q;
void *data[14];
};