Recreation of a picture I found somewhere on the internet
- 404
- 420
- 666
- ass
- bae
- boo
- bro
- cat
- dog
- duh
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
| ifconfig en0 | grep ether | |
| sudo /System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -z | |
| # this is the mac we want to change to | |
| sudo ifconfig en0 ether d4:33:a3:ed:f2:12 | |
| networksetup -detectnewhardware | |
| ifconfig en0 | grep ether% |
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
| var chats = Store.Chat.models.filter((x)=>{return x.__x_id.indexOf('-') !== -1}) | |
| var selectBox = document.createElement('div'); | |
| selectBox.style = ` | |
| width: 100vw; | |
| height: 100vh; | |
| z-index: 100; | |
| background-color: white; | |
| position: absolute; | |
| overflow: scroll; |
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
| var chats = Store.Chat.models.filter((x)=>{return x.__x_id.indexOf('-') !== -1}) | |
| var selectBox = document.createElement('div'); | |
| selectBox.style = ` | |
| width: 100vw; | |
| height: 100vh; | |
| z-index: 100; | |
| background-color: white; | |
| position: absolute; | |
| overflow: scroll; |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9zoKFI+l6ewlOG8eg6aJgLy0XE8YgaLIWYvC5GtQFb8kGl43wE4PvpZa5W56sz1WnV9bFQv8rRMTVHXhEswJ1o8/FO9pLntCF0jfsZES6o8PF1KjHau8pGUUTcIhVlkJT1eszigxjLJcAYmjjwQnd2xJR3pqYhwCmsGugbNWxhkyfP66NhjtIa327FuaQIgy3EBYjf+MTvtND83QDHOR5Us9QfoZqSWaLjEf75N9PB5PdAs1IdN13Tmf9q4Ta+3pUZhz8Bqvt8/8qDGHTS38dIO/FRNtvX7JshWWMJ+L/aaiE1brN5nuGxYjbfi/YHXwmmAxRDomn6TQLcFdi2Ei7 [email protected] |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDptnTdx950EHqdF2rDOPr9k2+f4ejo8MNSua0fy0Rfr8NOfwYSbJWyieNjCOuG6r1CabbcvpXUfSkMhWfr2TuL+VZdMi/D2n6HivFhrN8+Z7NwloVLGniLd7UdOucmHwwE1W/79nvjKNfF+8zXAl8hfqpu8irlT6yEAMAZaJv0lDBvxEwKqHZqHxAvGlkL0N3Aj1u8LHoeXvIFknHW/dSnNH1ZKR/OrgHlj53IAeqbBwy+lNku894VAY3XzE44jRT7X1wTr0X2iS2IQukUHHIz2T2JuBCMKivhYHI6XJjWVqiZWnKSzZLXndWVZ1a6wy2b8SZdT8mJGvZtkm8S0uFb Squadfather@DESKTOP-DNRQLGA |
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 { | |
| ASYNC_START, | |
| ASYNC_END | |
| } from './constants/actionTypes.jsx'; | |
| const promiseMiddleware = store => next => action => { | |
| if (isPromise(action.payload)) { | |
| store.dispatch({ type: ASYNC_START, subtype: action.type }); | |
| const currentView = store.getState().viewChangeCounter; |
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 java.io.InputStream; | |
| import java.io.PrintStream; | |
| import java.util.*; | |
| public class Main { | |
| public static void read_and_solve(InputStream in, PrintStream out) { | |
| Scanner s = new Scanner(in); | |
| int t = s.nextInt(); |
OlderNewer
