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
> node --version | |
v12.18.3 | |
> node bench-array | |
2 tests completed. | |
entry read x 1,180,097 ops/sec ±1.49% (92 runs sampled) | |
entryview read x 198,301 ops/sec ±1.00% (90 runs sampled) | |
> WHY?! |
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 | |
namespace Vendor\Site\DataSource; | |
use Neos\Flow\Annotations as Flow; | |
use Neos\Flow\Persistence\PersistenceManagerInterface; | |
use Neos\Neos\Domain\Service\UserService; | |
use Neos\Neos\Service\DataSource\AbstractDataSource; | |
use Neos\ContentRepository\Domain\Model\NodeInterface; | |
class MyDataSource extends AbstractDataSource |
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
Jicofo 2020-03-26 14:27:47.591 INFO: [44] org.jitsi.jicofo.JvbDoctor.log() Scheduled health-check task for: [email protected]/1788f4ee4a84 | |
Jicofo 2020-03-26 14:27:52.578 INFO: [89] org.jitsi.jicofo.xmpp.FocusComponent.handleConferenceIq().401 Focus request for room: [email protected] | |
Jicofo 2020-03-26 14:27:52.646 INFO: [29] org.jitsi.jicofo.ChatRoomRoleAndPresence.log() Chat room event ChatRoomMemberPresenceChangeEvent[type=MemberJoined sourceRoom=org.jitsi.impl.protocol.xmpp.ChatRoomImpl@360cd264 member=ChatMember[[email protected]/64eb37f3, jid: null]@1156020899] | |
Jicofo 2020-03-26 14:27:52.646 INFO: [29] org.jitsi.jicofo.JitsiMeetConferenceImpl.log() Member [email protected]/64eb37f3 joined. | |
Jicofo 2020-03-26 14:27:52.647 INFO: [29] org.jitsi.impl.protocol.xmpp.colibri.OperationSetColibriConferenceImpl.log() Conference created: org.jitsi.impl.protocol.xmpp.colibri.ColibriConferenceImpl@7d03ac4a | |
Jicofo 2020-03-26 14:27:52.647 INFO: [29] org.jitsi.jicofo.JitsiMeetConferenceImpl.log() A |
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
Test:19 (TIME) index.html loaded: 214.33500002603978 | |
VM226 lib-jitsi-meet.min.js:6 2020-03-26T10:26:04.508Z [modules/browser/BrowserCapabilities.js] <new t>: This appears to be chrome, ver: 80.0 | |
VM227 app.bundle.min.js:117 2020-03-26T10:26:05.484Z [index.web] <HTMLDocument.<anonymous>>: (TIME) document ready: 1430.4649999830872 | |
VM227 app.bundle.min.js:117 2020-03-26T10:26:05.573Z [modules/UI/videolayout/VideoLayout.js] <Object.changeUserAvatar>: Missed avatar update - no small video yet for undefined | |
o @ VM227 app.bundle.min.js:117 | |
VM227 app.bundle.min.js:117 2020-03-26T10:26:05.585Z [features/base/media] Start muted: | |
VM227 app.bundle.min.js:117 2020-03-26T10:26:05.591Z [features/base/media] Start audio only set to false | |
VM227 app.bundle.min.js:117 2020-03-26T10:26:05.596Z [features/analytics] Error creating analytics handler: Error: Failed to initialize Amplitude handler, no APP key | |
o @ VM227 app.bundle.min.js:117 | |
VM227 app.bundle.min.js:117 2020-03-26T10:26:05.679Z [modules/UI/videolayout/SmallVideo.j |
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
-12 | |
-6 | |
-12 | |
+1 | |
+3 | |
+3 | |
-1 | |
+10 | |
-8 | |
-9 |
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
const parseLine = (line) => { | |
try { | |
return JSON.parse(line); | |
} catch (e) { | |
} | |
}; | |
const ucasefirst = (str) => str.charAt(0).toUpperCase() + str.slice(1); |
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 | |
chdir(__DIR__); | |
include_once("startup.php"); | |
echo "\n"; | |
try { | |
$opts = new \Zend_Console_Getopt(array( |
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 | |
namespace Acme\Api\Controller; | |
use Acme\Api\Domain\Repository\ResourceRepository; | |
use Acme\Api\Utility\AggregateReflectionHelper; | |
use Acme\Api\Utility\ResourceTypeHelper; | |
use Acme\Api\Utility\ViewConfigurationHelper; | |
use Doctrine\Common\Inflector\Inflector; |
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 | |
namespace Acme\Foo\Http; | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\Flow\Http\Component\ComponentContext; | |
use TYPO3\Flow\Http\Component\ComponentInterface; | |
use TYPO3\Flow\I18n\Detector; | |
use TYPO3\Flow\I18n\Locale; | |
/** |
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
/** | |
* @test | |
*/ | |
public function resourceCanBeUpdatedViaRestCall() | |
{ | |
$arguments = array( | |
'resource' => array( | |
'title' => 'Foo' | |
) |
NewerOlder