Skip to content

Instantly share code, notes, and snippets.

Running suite(s): Efl_Ui_Init
success
100%: Checks: 1, Failures: 0, Errors: 0
FC_DEBUG=1
Sort Pattern has 28 elts (size 32)
family: "DejaVu Sans"(w) "DejaVu LGC Sans"(w) "DejaVu LGC Sans"(w) "DejaVu Sans"(w) "Bitstream Vera Sans"(w) "Verdana"(w) "Arial"(w) "Albany AMT"(w) "Luxi Sans"(w) "Nimbus Sans L"(w) "Nimbus Sans"(w) "Helvetica"(w) "Lucida Sans Unicode"(w) "BPG Glaho International"(w) "Tahoma"(w) "Loma"(w) "Waree"(w) "Garuda"(w) "Umpush"(w) "Laksaman"(w) "Noto Sans CJK JP"(w) "Noto Sans CJK KR"(w) "Noto Sans CJK SC"(w) "Noto Sans CJK TC"(w) "Noto Sans CJK HK"(w) "Droid Sans Fallback"(w) "Khmer OS"(w) "Nachlieli"(w) "Lucida Sans Unicode"(w) "Yudit Unicode"(w) "Kerkis"(w) "ArmNet Helvetica"(w) "Artsounk"(w) "BPG UTF8 M"(w) "Waree"(w) "Loma"(w) "Garuda"(w) "Umpush"(w) "Saysettha Unicode"(w) "JG Lao Old Arial"(w) "GF Zemen Unicode"(w) "Pigiarniq"(w) "B Davat"(w) "B Compset"(w) "Kacst-Qr"(w) "Urdu Nastaliq Unicode"(w) "Raghindi"(w) "Mukti Narrow"(w) "padmaa"(w) "Hapax Berbère"(w) "MS Gothic"(w) "UmePlus P Go
FC_DEBUG=1
Sort Pattern has 27 elts (size 32)
family: "DejaVu Sans"(w) "DejaVu LGC Sans"(w) "DejaVu LGC Sans"(w) "DejaVu Sans"(w) "Bitstream Vera Sans"(w) "Verdana"(w) "Arial"(w) "Albany AMT"(w) "Luxi Sans"(w) "Nimbus Sans L"(w) "Nimbus Sans"(w) "Helvetica"(w) "Lucida Sans Unicode"(w) "BPG Glaho International"(w) "Tahoma"(w) "Loma"(w) "Waree"(w) "Garuda"(w) "Umpush"(w) "Laksaman"(w) "Noto Sans CJK JP"(w) "Noto Sans CJK KR"(w) "Noto Sans CJK SC"(w) "Noto Sans CJK TC"(w) "Noto Sans CJK HK"(w) "Droid Sans Fallback"(w) "Khmer OS"(w) "Nachlieli"(w) "Lucida Sans Unicode"(w) "Yudit Unicode"(w) "Kerkis"(w) "ArmNet Helvetica"(w) "Artsounk"(w) "BPG UTF8 M"(w) "Waree"(w) "Loma"(w) "Garuda"(w) "Umpush"(w) "Saysettha Unicode"(w) "JG Lao Old Arial"(w) "GF Zemen Unicode"(w) "Pigiarniq"(w) "B Davat"(w) "B Compset"(w) "Kacst-Qr"(w) "Urdu Nastaliq Unicode"(w) "Raghindi"(w) "Mukti Narrow"(w) "padmaa"(w) "Hapax Berbère"(w) "MS Gothic"(w) "UmePlus P Gothic"(w) "Microsoft YaHei"(w) "Microsoft JhengHei"(w) "WenQuanYi Zen Hei"(w) "
@lauromoura
lauromoura / cake_dice.py
Last active October 3, 2019 18:29
Interview Cake: 5side die from 7side die
# coding: utf-8
from random import randint
from collections import Counter
def rand7():
return randint(1, 7)
def rand5():
return sum([rand7() for i in range(5)]) % 5 + 1
#include <algorithm>
#include "async_function_definition.hh"
#include "blacklist.hh"
#include <cassert>
#include <cctype>
#include "documentation.hh"
#include <Eina.h>
#include <Eina.hh>
#include <Eolian_Cxx.hh>
@lauromoura
lauromoura / mvvm.cs
Created September 13, 2019 13:12
EFL# mvvm example
using System;
class WeatherStation
{
public String Nick { get; set; }
public float Temperature { get; set; }
public static Efl.UserModel<WeatherStation> CreateModel(Efl.Loop loop)
{
Efl.UserModel<WeatherStation> stations = new Efl.UserModel<WeatherStation>(loop);
@lauromoura
lauromoura / ai_rio_info.md
Created September 10, 2019 02:35
Cheatsheet para o AI Conference no RioInfo 2019
@lauromoura
lauromoura / eventplayground.cs
Created August 29, 2019 14:19
C#: Using value types as event arguments
using System;
namespace NewArgs
{
public class EventPlayground
{
public event EventHandler<int> OnSelectedIndex;
public void Select(int x) {
OnSelectedIndex?.Invoke(this, x);
}
@lauromoura
lauromoura / efl-mvvm.md
Created August 5, 2019 22:12
EFL MVVM Notes

EFL MVVM

General MVVM notes

Views

  • Usually just shows stuff on screen
  • Consumes data from ViewModel
@lauromoura
lauromoura / efl-base.Dockerfile
Created July 31, 2019 21:01
Initial draft of a dockerfile for EFL
FROM ubuntu:bionic
LABEL maintainer="lauromoura@expertisesolutions.com.br"
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y check libharfbuzz-dev libssl-dev libsystemd-dev libjpeg-dev libglib2.0-dev libgstreamer1.0-dev libluajit-5.1-dev libfreetype6-dev libfontconfig1-dev libfribidi-dev libx11-dev libxext-dev libxrender-dev libgl1-mesa-dev libgif-dev libtiff5-dev libpoppler-dev libpoppler-cpp-dev libspectre-dev libraw-dev librsvg2-dev libudev-dev libmount-dev libdbus-1-dev libpulse-dev libsndfile1-dev libxcursor-dev libxcomposite-dev libxinerama-dev libxrandr-dev libxtst-dev libxss-dev libbullet-dev libgstreamer-plugins-base1.0-dev doxygen libavahi-client-dev libibus-1.0-dev xvfb dbus dbus-x11 curl python3 python python-minimal
@lauromoura
lauromoura / rust.adoc
Last active July 9, 2019 03:20
Notes from the Rust Book

Notes from Rust Book

Building blocks

Variables and constants