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
Major Open Source Contributions | |
Package Published | |
card_scanner https://pub.dev/packages/card_scanner | |
touchable https://pub.dev/packages/touchable | |
smart_form https://pub.dev/packages/smart_form | |
Package Contributions | |
Flutter | |
github.com/flutter/flutter/pull/53650 | 53632 |
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
// ignore: avoid_web_libraries_in_flutter | |
import 'dart:convert'; | |
import 'dart:html'; | |
import 'dart:js' as js; | |
import 'dart:ui' as ui; | |
import 'package:flutter/foundation.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:voucherkit_dashboard/core/core_config.dart'; |
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> | |
<head> | |
<title>JQueryBuilder</title> | |
<link rel="stylesheet" type="text/css" | |
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/> | |
<link rel="stylesheet" type="text/css" | |
href="https://cdn.jsdelivr.net/jquery.query-builder/2.3.3/css/query-builder.default.min.css"/> | |
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> |
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
Match (p:User)-[*k]->(n:User) where p.name = 'Bob' return distinct n |
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
#include<iostream> | |
#include<list> | |
#include<queue> | |
using namespace std; | |
class Graph { | |
int V; | |
list < int > * adj; | |
public: | |
Graph(int V) { |
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
###### Algorithm:main() ###### | |
scan n //scan total number of users from stdin | |
adj[n][n]={0} //initialise an adjacency matrix of nxn size with 0 | |
while (true) | |
scan u and v //scan friend pair in form of u and v, i.e. we have an edge from u to v | |
if u==-1 and v==-1 //loop termination condition | |
break | |
adj[u][v]=1 |
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
######## Algorithm: bfs(adj,visited,source,level,n) ######## | |
levels[n]={0} //set initial level for all nodes to 0 | |
visited[source]=1 //mark source node as visited | |
queue.push(source) //push source node into queue | |
while(queue is not empty) do | |
u=queue.front() //get the front node of queue | |
queue.pop() //dequeue the node |