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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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
.transition (@props: all; | |
@duration:1s; | |
@delay: 0s; | |
@timing: ease; | |
@compact: true; | |
@raw-input: false) { | |
.output() when (@raw-input = false) and not (@compact = true) { | |
-webkit-transition-property:@props; | |
-moz-transition-property:@props; | |
-ms-transition-property:@props; |
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
/* | |
* 0x1ad2 base Gulp.js file | |
* https://twitter.com/0x1ad2 | |
*/ | |
/* | |
* Define plugins | |
*/ | |
var gulp = require('gulp'); | |
var $ = require('gulp-load-plugins')(); |
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 tags here --> | |
<meta http-equiv="content-type" content="text/html; charset=UTF8"> | |
<!-- Page tags here --> | |
<title>Test</title> | |
<!-- 3rd party CSS here --> |
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 com.project.kafka.connect.jdbc.dialect | |
import com.project.kafka.connect.utils.JsonUtils | |
import io.confluent.connect.jdbc.dialect.DatabaseDialect | |
import io.confluent.connect.jdbc.dialect.DatabaseDialectProvider | |
import io.confluent.connect.jdbc.dialect.PostgreSqlDatabaseDialect | |
import io.confluent.connect.jdbc.sink.metadata.SinkRecordField | |
import java.sql.PreparedStatement | |
import org.apache.kafka.common.config.AbstractConfig | |
import org.apache.kafka.connect.data.Schema |
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
def fibonacci(n): | |
if n <= 1: | |
return n | |
else: | |
return fibonacci(n-1) + fibonacci(n - 2) | |
def main(): | |
num_Terms = 1000 | |
fibSequence = [] | |
for i in range(num_terms): |