Skip to content

Instantly share code, notes, and snippets.

@leocavalcante
leocavalcante / main.rs
Created February 7, 2020 20:16
Split a table of customers into CSVs by state
use tokio_postgres::{NoTls, Client};
type Whoops = Box<dyn std::error::Error>;
const BR_STATES: [&str; 27] = ["AC","AL","AP","AM","BA","CE","DF","ES","GO","MA","MT","MS","MG","PA","PB","PR","PE","PI","RJ","RN","RS","RO","RR","SC","SP","SE","TO"];
async fn query_state(client: &Client, state: &str) -> Result<String, Whoops> {
let rows = client
.query("select distinct email from customer where state = $1::TEXT and email <> ''", &[&state])
.await?;
error[E0277]: `*mut (dyn std::ops::Fn() + 'static)` cannot be shared between threads safely
--> src\bin\main.rs:15:10
|
15 | .and_then(backend::controllers::dev::store)
| ^^^^^^^^ `*mut (dyn std::ops::Fn() + 'static)` cannot be shared between threads safely
|
= help: within `core::fmt::Void`, the trait `std::marker::Sync` is not implemented for `*mut (dyn std::ops::Fn() + 'static)`
= note: required because it appears within the type `std::marker::PhantomData<*mut (dyn std::ops::Fn() + 'static)>`
= note: required because it appears within the type `core::fmt::Void`
= note: required because of the requirements on the impl of `std::marker::Send` for `&core::fmt::Void`
@leocavalcante
leocavalcante / main.rs
Created January 13, 2020 21:40
Rust match
#[macro_use]
extern crate mysql;
extern crate dotenv;
use std::error::Error;
use mysql::Row;
use std::env::var;
struct Lead {
id: u32,
<?php
class HttpHandler {
private Database $db;
public function __construct(Database $db) {
$this->db = $db;
}
public function handleRequest() {
@leocavalcante
leocavalcante / mobx_provider.dart
Last active January 6, 2020 22:09
Straightforward
import 'package:flutter/material.dart' hide Action;
import 'package:flutter_mobx/flutter_mobx.dart';
import 'package:mobx/mobx.dart';
import 'package:provider/provider.dart';
void main() => runApp(MyApp());
class Counter {
Action increment;
FROM leocavalcante/dwoole:dev
RUN pecl install calendar \
&& docker-php-ext-enable calendar
@leocavalcante
leocavalcante / main.dart
Created December 20, 2019 04:16
Dynamically added TextFields
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
<?php declare(strict_types=1);
namespace ReactOnSwoole;
use Swoole\Http\Request;
use Swoole\Http\Response;
use Swoole\Runtime;
use Swoole\Server\Port;
use Swoole\WebSocket\Frame;
use Swoole\WebSocket\Server;

Build a GraphQL API on top of Swoole

I'm assuming you already know what is GraphQL and Swoole, so what about getting started right straight to the code, shall we?

What you maybe doesn't know yet is about Siler! It is a set of general purpose high-level abstractions aiming an API for declarative programming in PHP. With Siler we can abstract way "hard" parts from popular tools like GraphQL and recently Swoole. And yes, I'm the author, so feel free to file any issues or make any questions about it.

"Talk is cheap, show me the code". Let's go!

I want to make it simple as possible so we can focus on using GraphQL and Swoole through Siler instead of solving hard domain and business logic problems, so we are going to implement a gold-old to-do list.

<?php declare(strict_types=1);
namespace App;
use App\Todo\InMemoryTodos;
use GraphQL\Error\Error;
use Swoole\Http\Request;
use function Siler\GraphQL\execute;
use function Siler\GraphQL\schema;
use function Siler\Swoole\http;