Skip to content

Instantly share code, notes, and snippets.

title;description
Fantastisches Produkt!;Ich habe das LuminaGlow Serum ausprobiert und bin absolut begeistert. Meine Haut sieht strahlender aus als je zuvor. Die Textur ist leicht und angenehm auf der Haut. Ich kann es kaum erwarten, es weiterhin zu verwenden!
Średnia jakość;AquaBliss Wellness Bottle jest całkiem niezła, aber nie wydaje mi się, żeby była to rewolucyjna butelka. Wydaje się być zwykła. Może spełniać swoje zadanie, aber nie wyróżnia się niczym szczególnym.
Besviken över NovaTech Vision Glasses;Jag hade höga förväntningar på NovaTech Vision Glasses, aber ich wurde djupt besviken. Glasögonen var obekväma att bära och jag kunde inte uppleva någon förbättring i min syn. Jag rekommenderar att undvika detta produkt till varje pris.
Entspannung pur mit ZenTranquil Meditation Chair;Der ZenTranquil Meditation Chair ist einfach fantastisch. Er ist bequem, unterstützt die richtige Haltung und hat meine Meditationserfahrung auf ein neues Level gehoben. Ich kann nicht genug betonen, wie sehr ich diesen Stuhl
@eLafo
eLafo / gist:e169cdc2d53aa6617f5b5e990a214b7b
Created September 22, 2023 08:55
Logseq export prompt
Return just the main response. Take out the pre-text and the post-text
Return your answer in markdown code.
Your answer should be compatible with logseq i.e:
- Use markdown
- Use markdown headings to keep structure and hierarchy of ideas
- Use h3 as the top level heading
- Blank lines are not allowed
- Start every line with a hyphen
class Foo
# Do some stuff...
# We want to update a field from another model with a value from this model
after_commit :update_bar_field
# Do more stuff...
private
class Foo
# Do some stuff...
# We want to update a field from another model with a value from this model
after_commit :update_bar_field
# Do more stuff...
private
@eLafo
eLafo / README.md
Last active August 4, 2018 15:50
How to install OMV 4 on raspberry pi 2

Install

Follow the instructions (burn the image, and run raspberry pi)

Enable web control panel

Login with root and run omv-firstaid

  1. Configure network interface (with default values)
  2. Configure web control panel

SSH

{
"id": "1",
"customerId": 1,
"items": [
{
"productId": "B102",
"quantity": 10,
"unitPrice": 4.99,
"total": 49.9
},
// This content has been reduced. You can find the original content in https://github.com/akifo/vue-memo/blob/dev/src/js/main.js
import Vue from 'vue'
import App from './App'
import { sync } from 'vuex-router-sync'
import store from './vuex'
import router from './router'
sync(store, router)
Vue.filter('formatDate', function (value, format) {
@eLafo
eLafo / main.rb
Last active March 29, 2017 16:05
require 'twitter'
require 'logger'
TWITTER_LIST_SLUG = 'aspgems-developers'
TRACKED_WORDS = %W(aspgems_dev #dev)
logger = Logger.new('log/aspgemsdev.log')
logger.level = Logger::INFO
def initialize_client(config)
conversations{
people {
id,
avatar,
name,
onlineStatus
},
messages {
sender {
userId
// a functional component. Also named container
import {createStructuredSelector} from 'reselect';
import { bindActionCreators } from 'redux'
import { connect }from 'react-redux'
import {App} from '../components/App'
import {getAppUIState} from '../selectors';
import * as actions from '../actions';
const mapDispatchToProps = dispatch => ({
actions: bindActionCreators(actions, dispatch)