This file contains hidden or 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
extern crate regex; | |
extern crate serde; | |
extern crate serde_json; | |
extern crate tiny_http; | |
#[macro_use] | |
extern crate serde_derive; | |
use serde_json::Error; | |
use std::process::Command; |
This file contains hidden or 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
package main | |
import "fmt" | |
import "net/http" | |
import "io/ioutil" | |
import "encoding/json" | |
import "bytes" | |
type Obj struct { | |
FullName string `json:"fullName"` |
This file contains hidden or 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
// | |
// Generate padding and margin classes from 0 to 25px | |
// | |
.generate-columns(5); | |
.generate-columns(@n, @i: 0) when (@i =< @n) { | |
@num : @i * 5; |
This file contains hidden or 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
{ | |
"nd": "Ndebele, North; North Ndebele", | |
"ko": "Korean", | |
"lv": "Latvian", | |
"sw": "Swahili", | |
"ba": "Bashkir", | |
"yo": "Yoruba", | |
"fr": "French", | |
"dv": "Divehi; Dhivehi; Maldivian", | |
"uk": "Ukrainian", |
This file contains hidden or 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
describe("MySpec", function() { | |
var user = new User('Pablo', 'Escobar') | |
beforeEach(function() { | |
spyOn(user, 'getDescription'); | |
spyOn(user, 'setAge'); | |
user.getDescription(); | |
user.setAge(19); | |
}) |
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Update part view backbone</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div id="my-view"> |