Tac Tacelosky
Tac Tacelosky
I'm still struggling with Promises. What am I doing wrong here? It seems so simple, but I'm fighting. count works, first doesn't. ```js db.tables.forEach(t=>{ t.count(c => console.error('count of ' +...
```js db.version(3).stores({ savedTable: "id,name,owned", productTable: "++id,price,brand,category" }); let table = db.table('savedTable'); table = table.where({owned: true}).toArray().then(rows => console.log(rows)).catch(e => console.error(e)); ``` I'm trying to simply filter by owned: true. Actually, I...
Instead of db.friends.orderBy('lastName').reverse().offset(10).limit(5); I'd like to do db.friends.orderBy('lastName', 'desc').offset(10).limit(5); That is, if I'm calling orderBy I'd like to optionally add the direction without having a separate statement.
> The "Symfony\Component\HttpKernel\DependencyInjection\Extension" class is considered internal since Symfony 7.1, to be deprecated in 8.1; use Symfony\Component\DependencyInjection\Extension\Extension instead. It may change without further notice. You should not use it from...
https://demo.themesberg.com/swipe/index.html#faq After selecting an item, I can see the page is updated the the background, but the menu itself covers the content. 
I understand how to use insert() in order to add new rows, which works great when I simply want to load a bunch of data remotely. But if the data...
I have a bundle that exposes a few controllers that I'm not sure how to test (from within the bundle). https://github.com/symfony/symfony/discussions/57600#discussioncomment-9925933 Might that be possible with this library? In particular,...
First, what a cool library! I was fighting with authenticated users in my tests, still not sure what the problem was, but the actingAs() method works so easily that I'm...
Running the phpunit tests throws deprecations related to the foundry-bundle. ``` 1x: Since zenstruck\foundry 1.38.0: Configuring the default proxy auto-refresh to false is deprecated. You should set it to "true",...