Search the Community
Showing results for tags 'function'.
-
I was kinda curious how other people would do this. So you take a regular Fibonacci sequence like this: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181 6765 10946 17711 28657 46368 75025 121393 196418 317811 514229 832040 1346269 2178309 3524578 5702887 9227465 But I'm changing it up a bit so I get a different sequence like this one: 1, 2, 4, 7, 11, 20, 33, 54, etc The math looks something like this and I can do it on paper. 1+1+2+3+5+8+13+21+34+45+79 1+1+2+3+5+ 8+13+21+34+45 1+1+2+3+ 5+ 8+13+21+34
-
Hi Forum, I have a question regarding function keys on Mac. Basically what I want to do in one of my scripts is to enable "Full keyboard access" this setting can be found under preferences->Keyboard->Shortcuts. There is a keybind to change this and by default that is set to control+F7(however it is actually fn+control+f7). Is there a way to utilize the function keys so that I can do this keybind? Or is there another way for me to enable this via rubber ducky that you guys and girls can think of? All help is appreciated!
-
Hi! I've been trying to find a reliable way to search and open terminal or any other applications in OSX. The way that is being used which is CMD-SPACE is risky because this is a default shortcut that any one can change. However, Fn-F4 (Launchpad Key) is always working and easy to search for application from any window or app without running to an issue if the other app is using CMD-SPACE. I wonder if there's a way to add Fn key so we can combine it with F1-F2... keys. Thank you! AJ
-
I would like to open the command entry dialog inside of linux (ubuntu). The keyboard short cut on my computer is ALT FN F2. I have not been able to figure out how to input this in the ducky script so that it actually opens the command entry dialog. Any help would be greatly appreciated. Thanks in advance.
- 4 replies
-
- Function
- Key Sequence
-
(and 1 more)
Tagged with:
-
PHP function preg_match() error for phishing pages
TylerCPU posted a topic in WiFi Pineapple Mark IV
I am creating phishing pages for websites which includes making m.facebook.com for the mobile site and facebook.com for desktop users. Now it works good, but most users don't go to m.facebook.com they go to facebook.com and let php do the redirection for them on mobile sites. Now I got it working mostly. This is my setup. Redirect.php has a line that points facebook to facebookredirect.php. The facebookredirect.php file looks like this That code is from here. The code "mobile_device_detect.php" is for checking if the request for the site is from a mobile web browser or from a desktop whic- 12 replies