This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BryntumGantt } from '@bryntum/gantt-react' | |
import useGanttConfig from './GanttConfig' | |
import './App.scss' | |
const App = () => { | |
const ganttConfig = useGanttConfig() | |
return ( | |
<> | |
<BryntumGantt {...ganttConfig} /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace App\Api; | |
use App\Constants; | |
use App\Filesystem; | |
use React\EventLoop\Loop; | |
use React\Http\Message\Response; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "iostream" | |
#include "string" | |
#include "algorithm" | |
#include "curl/curl.h" | |
#include "gumbo.h" | |
#include "string.h" | |
typedef size_t (*curl_write)(char *, size_t, size_t, std::string *); | |
std::string request(std::string word) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
use 5.30.0; | |
use LWP::UserAgent; | |
use HTML::TreeBuilder; | |
use HTML::FormatText; | |
use HTML::Element; | |
use Encode; | |
use warnings; | |
use open qw(:std :utf8); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Controller for the CouchDB-React-Bingo project | |
* | |
* @package The Bingo Framework | |
* @author Lochemem Bruno Michael | |
*/ | |
namespace App\Controllers; |