- Inside pixar
- Chef's table
- Salt fat acid heat
- Ruby Sparks
- Before Midnight
- Midnight in paris
- Finding Forrester
- Secret Window
- Dead poet's society
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
#include <stdlib.h> | |
#include <stdarg.h> | |
#include <stdio.h> | |
void foo(char *fmt, ...) | |
{ | |
va_list ap; | |
int d; | |
char c, *s; |
backprop :-https://medium.com/@14prakash/back-propagation-is-very-simple-who-made-it-complicated-97b794c97e5c
unit test ml :- https://medium.com/@keeper6928/how-to-unit-test-machine-learning-code-57cf6fd81765, https://stackoverflow.com/questions/28787657/unit-testing-backpropagation-neural-network-code, https://towardsdatascience.com/checklist-for-debugging-neural-networks-d8b2a9434f21, https://towardsdatascience.com/checklist-for-debugging-neural-networks-d8b2a9434f21.
ml & new
- https://medium.com/machine-learning-in-practice/over-200-of-the-best-machine-learning-nlp-and-python-tutorials-2018-edition-dd8cf53cb7dc
- https://blog.usejournal.com/stock-market-prediction-by-recurrent-neural-network-on-lstm-model-56de700bff68
- https://medium.com/technomancy/the-blunt-guide-to-mathematically-rigorous-machine-learning-c53263d45c7b
- https://medium.com/the-node-js-collection/modern-javascript-explained-for-dinosaurs-f695e9747b70
- https://medium.com/@elberandre/1-000-ssrf-in-slack-7737935d3884
- http
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
/// This is not written to compile. I just copied everything into one file to make viewing easy | |
/// Here is a sample usage (task definitions and implementations omitted) | |
int main() | |
{ | |
TaskScheduler scheduler; | |
MyTaskA taskA; | |
MyTaskB taskB; | |
BOOL running = 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
// Create an object: | |
// var person = { | |
// firstName: "John", | |
// lastName : "Doe", | |
// id : 5566, | |
// fullName : function() { | |
// return this.firstName + " " + this.lastName; | |
// } | |
// }; |
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 java.util.HashMap; | |
import java.util.List; | |
import java.util.Arrays; | |
public class MyClass { | |
public static void main(String args[]) { | |
int x=10; | |
int y=25; | |
int z=x+y; | |
HashMap<String, List<String>> templateHashmap = new HashMap<>(); |
- Awesome repo contains methodologies and tools,https://github.com/swisskyrepo/PayloadsAllTheThings
- https://github.com/vasanthk/how-web-works
- hackerone hacking101, bugcrowd
- pwning owasp juice shop, https://leanpub.com/juice-shop
- https://www.owasp.org/index.php/OWASP_Vulnerable_Web_Applications_Directory_Project/Pages/Online
- The Tangled Web: A Guide to Securing Modern Web Applications
- https://juice-shop.herokuapp.com
- bugbountynotes
- https://blog.quarkslab.com/reverse-engineering-a-philips-trimedia-cpu-based-ip-camera-part-1.html
- https://www.pentestpartners.com/security-blog/cisco-rv130-its-2019-but-yet-strcpy/
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Hello World</title> | |
<script src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
<!-- Don't use this in production: --> | |
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> |