This file contains 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
/* | |
Simple WINDOWS keylogger by jkrix 2013. | |
User may distribute and modify source code but MUST keep this top commented section in the source code! | |
Very important note: | |
To be used for educational use and not for malicious tasks! | |
I will NOT be held responsible for anything silly you may do with this! | |
*/ | |
#include <stdio.h> |
This file contains 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
// http://www.slideshare.net/nzakas/scalable-javascript-application-architecture | |
// http://addyosmani.com/largescalejavascript/ | |
// http://boilerplatejs.org/ | |
// http://rmurphey.com/blog/2009/10/15/using-objects-to-organize-your-code/ | |
// http://stackoverflow.com/questions/11842923/organizing-javascript-code | |
// http://stackoverflow.com/questions/247209/current-commonly-accepted-best-practices-around-code-organization-in-javascript | |
// http://msdn.microsoft.com/en-us/magazine/gg602402.aspx | |
// https://coderwall.com/p/b5jutw | |
// http://alexsexton.com/blog/2010/02/using-inheritance-patterns-to-organize-large-jquery-applications/ |
This file contains 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
import React, { Component } from 'react'; | |
import { View, Text, Image, StyleSheet, TouchableOpacity, ScrollView } from 'react-native'; | |
import { connect } from 'react-redux'; | |
import { fetchVenues } from '../actions/venueAction'; | |
class VenueList extends Component { | |
constructor(props) { | |
super(props) | |
this.state = { active: true } | |
} |
This file contains 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
import React, { Component } from 'react'; | |
import { View, Text, TextInput, Image, StyleSheet, TouchableOpacity, ScrollView, FlatList } from 'react-native'; | |
import { connect } from 'react-redux'; | |
import { fetchMarkets } from '../actions/MarketingCardAction'; | |
import _ from 'lodash'; | |
function get_marketing_updates_from_projects(projects) | |
{ | |
let all_marketing_plans = []; |
This file contains 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
import React, { Component } from 'react' | |
import './chat.css' | |
import io from "socket.io-client"; | |
export default class Chat extends Component { | |
constructor(props){ | |
super(props); | |
this.state = { |
This file contains 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
const express = require('express'); | |
const mongoose = require('mongoose'); | |
const socket = require('socket.io'); | |
const message = require('./model/message') | |
const app = express(); | |
const db = require('./config/keys').mongoURI; | |
mongoose.connect(db, {useNewUrlParser: true}) |
This file contains 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
import React, { Component } from 'react' | |
import './chat.css' | |
import io from "socket.io-client"; | |
export default class Chat extends Component { | |
constructor(props){ | |
super(props); | |
this.state = { |
This file contains 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
import React, { Component } from 'react' | |
import './chat.css' | |
import io from "socket.io-client"; | |
export default class Chat extends Component { | |
constructor(props){ | |
super(props); | |
this.state = { |
This file contains 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
import React, { Component } from 'react' | |
import './chat.css' | |
import io from "socket.io-client"; | |
export default class Chat extends Component { | |
constructor(props){ | |
super(props); | |
this.state = { |
This file contains 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
import React, { Component } from 'react' | |
import './chat.css' | |
import io from "socket.io-client"; | |
export default class Chat extends Component { | |
constructor(props){ | |
super(props); | |
this.state = { |
OlderNewer