Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #!/bin/sh -euo pipefail | |
| for pbpfile in *.PBP; do | |
| echo "Hiding $pbpfile" | |
| mv "$pbpfile" ".$pbpfile" || echo "(No files to hide)" | |
| done | |
| find . -name "*.PBP" -print0 | while read -d $'\0' pbpfile | |
| do | |
| echo "\nProcessing $pbpfile" |
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
| %YAML 1.1 | |
| # ROS distribution file | |
| # see REP 143: http://ros.org/reps/rep-0143.html | |
| --- | |
| release_platforms: | |
| ubuntu: | |
| - xenial | |
| repositories: | |
| magic_msgs: | |
| release: |
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
| www.advnet.xyz | |
| www.allanalpass.com | |
| s.anysex.com | |
| www.fapoff.com | |
| www.harmonyvisioncams.com | |
| www.lethalpass.com | |
| img.mediad2.jp | |
| mvlcwazi.bid | |
| mwenzdgzgez.bid | |
| www.picbucks.com |
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 with (name) | |
| <head> | |
| <title>Home Page</title> | |
| <style> | |
| body { | |
| background: url(http://placekitten.com.s3.amazonaws.com/homepage-samples/408/287.jpg); | |
| color: cyan; | |
| } | |
| fieldset { |
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
| FROM debian:latest | |
| RUN apt-get update && apt-get install -y curl | |
| # usability | |
| RUN echo 'alias ls="ls --color=auto"' >> /root/.bashrc; \ | |
| echo 'stty erase ^?' >> /root/.bashrc; | |
| # RUN echo '"\e[A": history-search-backward' >> /root/.inputrc; \ | |
| # echo '"\e[B": history-search-forward' >> /root/.inputrc; \ | |
| # echo 'set show-all-if-ambiguous on' >> /root/.inputrc; \ |
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
| import React from 'react'; | |
| import 'todomvc-app-css/index.css'; | |
| import './App.css'; | |
| import TodoItem from './TodoItem.jsx'; | |
| class App extends React.Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| showing: "all" |