I heard that finding names for projects is "the hardest thing in development, after cache invaliadation". And that's right.
"Site compare" was a bad name because of two things: it compares sites, that's true. But it does not compare sites. So that's false.
"Capyxel"? After all, that does not mean anything, but it's about Capybara and pixels. Without being too obvious. So why not?
If you have issues with the KDE menu / KRunner items (items not appearing, wrong targets on .desktop
entries, ...), you can try to rebuild the cache by running kbuildsycoca5
as an user.
After testing Vuex(3.0.1) in a Nativescript-vue (2.0) app I noticed that when using ModalView
s or ListView
s,
$store
is not available in the list items components or modal component. For now, use a StackLayout
for lists and I pass the $store
as a prop to the ModalView
:
<!-- Instead of a ListView -->
<StackLayout class="list-group">
<MyComponent v-for="item in items" :item="item" :key="item.id" class="list-group-item"/>
</StackLayout>
In MyComponent
, the method to open the modal is like:
import ItemForm from '../forms/ItemForm'
export default {
name: 'MyComponent',
props: {
item: { required: true, type: Object },
},
methods: {
openForm () {
const props = {item: this.item, store: this.$store} // props for ItemForm
this.$showModal(ItemForm, { props }) // Show ItemForm as a ModalView
},
},
}
This content might not be appropriate for every situation.
Following
VueX Modulator - Part 1: generating VueX modules
(en)
I tested the "modulator" on a Nativescript-vue application and it works well.
Use it like this:
// app/store.js
import Vue from 'nativescript-vue'
import Vuex from 'vuex'
import Modulator from './modulator'
Vue.use(Vuex)
export default new Vuex.Store({
state: {},
modules: {
users: Modulator.generateModule('users', 'user', 'users', false, false),
},
})
ExperimentsLabs is going Rails !
The new version is going to be a Rails engine. A pre-release version
is already available if you want to test it.
This content might not be appropriate for every situation.
Create a PDF file from resized images:
for file in *.png; do convert $file -resize 600 "imgtemp-$file"; done && convert imgtemp-*.png all_pngs.pdf && rm imgtemp-*.png
A new Userstyle hightlighting GAFA links has been created from the Firefox addon Gafalink, by Baptiste Gelez, for users of other browsers
User style
Site update (v0.1.0)
- Updated this site to elabs 0.1.0
Fed up of searching for document examples?
Tool to compare two websites with screenshots diff.
Small app to compute volumes of liquids to use in e-liquids mixes.
A small tool to visually sort files in folders.
Big libraries as FontAwesome or Glyphicons are all missing icons to represent licenses.
Collection of small pieces of code created for VueJS projects. This is a work in progress, the different pieces are tied together.
Calendar components for VueJS 2; Work in progress for now
This content might not be appropriate for every situation.
Oh noes ! There is nothing here!
Come back later, content is being created, somewhere