Skip to content

Instantly share code, notes, and snippets.

View Kamilnaja's full-sized avatar
💭
🐍🔥

Kamil Naja Kamilnaja

💭
🐍🔥
View GitHub Profile
@Kamilnaja
Kamilnaja / react - display item on react component
Last active July 30, 2017 17:09
firstly, you should add lodash
export default class TodosList extends React.Component {
renderItems() {
return _.map(this.props.todos, (todo, index) => <TodosListItem key={index}{...todo} />)
}
render() {
return (
<table>
<TodosListHeader />
<tbody>
const Services = () => (
<div>
{services.map(service => (
<div className={service.class}>
<p>{service.id}</p>
<p>{service.name}</p>
</div>
))}
</div>
);
import React from "react";
import Header from "./Header";
import Footer from "./Footer"
export default class Layout extends React.Component {
render() {
const services = [
{
id: 1,
.text-variables > .col-md-4 {
&:nth-child(3n + 1) {
clear: both;
}
}
@Kamilnaja
Kamilnaja / Karma - test class
Created July 9, 2017 11:34
Karma - test class
it('should accept values in the constructor', () => {
let todo = new Todo({
title: 'hello',
complete: true
});
expect(todo.title).toEqual('hello');
expect(todo.complete).toEqual(true);
});
<?php $myquery = new WP_Query( 'category_name=menu-items' ); ?>
<?php while ( $myquery->have_posts() ) : $myquery->the_post(); ?>
<li>
<?php the_post_thumbnail(); ?>
<a href="#<?php the_permalink() ?>">
<?php the_title(); ?>
<?php the_content(); ?>
</a>
</li>
app.get('/api/texts', function (req, res) {
connection.query('ALTER TABLE texts MODIFY COLUMN * TEXT CHARACTER SET utf8', function (error, results, fields) {
connection.query('SELECT * FROM texts', function (error, results, fields) {
if (error) throw error;
return res.send({error: false, data: results, message: 'Texts list'})
})
})
});
angular.module('my-app', [])
.controller('myCtrl', function ($scope, $http) {
$scope.myFunc = function () {
console.log($scope.boxes);
// $http.post('index.php', JSON.stringify($scope.boxes));
var request = $http({
method: "post",
url: window.location.href + "index.php",
data: {
for (var i = 0, max = markers.length; i < max; i++) {
var miejscowosc = markers[i].getAttribute("miejscowosc"),
point = new google.maps.LatLng(
parseFloat(markers[i].getAttribute("lat")),
parseFloat(markers[i].getAttribute("lgt"))
),
marker = new google.maps.Marker({
map: map,
position: point,