Leaderboard
Popular Content
Showing content with the highest reputation on 12/21/2018 in all areas
-
2 points
-
Tamris: Dude ... Lady? ... Do not express your qualms about being understood in a language that's not your native tongue. YOU'RE DOING FINE. First of all, we're dealing with a shared interest --- keeping Vista going on our PCs -- so we can all grasp the intent of someone's post here even if the words and syntax being used are not the best of formal English. Secondly, if you actually lived in an English speaking environment, surrounded by people who speak that language and none other, you'd quickly notice that most "native speakers" are not orators or authors. They wave their hands about, they say some words loudly and let others fade into silence, they throw meaningless phrases like "you know" and "I guess" and "you all" and "What about her emails" into conversations to fill up gaps, they mispronounce words that most high school graduates should be familiar with, their spoken vocabulary is small. Most English speakers are just ordinary folks, not expecting to do much with their use of the language, and -- surprise! -- not doing much with it either. Third. you're doing fine and you're surrounded by people doing fine. Nobody in this discussion thread or, as far as I've noticed, in any of the MSFN discussions I've followed, has used English here in any way whatsoever that would be noticed by ordinary Americans, Canadians, Britons, etc. YOU ARE ALL DOING FINE. Really, the only person here who needs feel some embarrassment about his impoverished language skills is me. I might get along talking to a five year old German kid or a two year old French infant, but we'd be limited to talk about liking sauerkraut and potatoes and taking naps rather than running personal computers. Let me say it again. YOU ARE ALL DOING FINE.2 points
-
New build of basilisk/UXP for XP! Test binary: Win32 https://o.rths.cf/basilisk/basilisk52-g4.1.win32-git-20181222-ba81aaf07-xpmod.7z Win64 https://o.rths.cf/basilisk/basilisk52-g4.1.win64-git-20181222-ba81aaf07-xpmod.7z diff: https://o.rths.cf/basilisk/UXP-xp-gitdiff-20181110.7z PM28XP build: Win32 https://o.rths.cf/palemoon/palemoon-28.3.0a1.win32-git-20181222-ba81aaf07-xpmod.7z Win64 https://o.rths.cf/palemoon/palemoon-28.3.0a1.win64-git-20181222-ba81aaf07-xpmod.7z Official repo changes since my last build: - Update NSPR to 4.20 (09ef48bd0) - Update NSS to 3.41 (74cabf794) - Clobber for NSPR+NSS update (c2478b9e1) - Update HSTS preload list (f0fe6b69d) - Issue #910 part 1. Don't navigate when location.protocol is set to anything other than http or https. (aa130641c) - Issue #910 part 2. Strip ':' and anything following it from the string passed to the location.protocol setter. (871c1d78c) - Issue #910 part 3. Throw SyntaxError from Location::SetProtocol on URI parse failures. (d0b9276f2) - Remove AndroidMediaDecoder and friends (ec2346967) - Merge branch 'master' of https://github.com/MoonchildProductions/UXP (8b017fb09) - Remove OMX related options from configure (ea6cc74f2) - Remove omx-plugin 3rd party libs (5104ad6ac) - Stop including a dummy dll on Windows for broken old versions of WebSense. (ff8b573a6) - Merge pull request #911 from trav90/code-cleanup (7457ca4ac) - Stub out FxA context menu functions. (6f3a1803c) - Merge branch 'master' of https://github.com/MoonchildProductions/UXP (680c3eadb) - Fix false positives in the preprocessor-checker (b7fac3839) - Make sure channel-prefs.js is packaged into MAR files. (d24869a15) - Update SQLite lib to 3.26.0 (aa771e77e) - Merge pull request #914 from JustOff/PR_preprocessor_fix (e91f221f2) - Return an empty set if getting recipes for host fails. (76c942b1d) - Replace status bar download overlay glow arrow with SVG. (ba81aaf07)1 point
-
Good to know I'm not alone. @bigmuscle can we do anything to help fix this? I noticed it happens with Photoshop too in the Aero-preview, DWM.exe crashes for a moment.1 point
-
I just switched my Slackware Linux to Wifi Hotspot and it respects the iptables rules. Here are my rules, might help you if nothing else. iptables -P OUTPUT DROP iptables -P INPUT DROP iptables -P FORWARD DROP iptables -A INPUT -p tcp -m tcp ! --tcp-flags SYN,RST,ACK SYN -m state --state NEW -j DROP iptables -A OUTPUT -p tcp -m tcp ! --tcp-flags SYN,RST,ACK SYN -m state --state NEW -j DROP iptables -N drop_invalid iptables -A OUTPUT -m state --state INVALID -j drop_invalid iptables -A INPUT -m state --state INVALID -j drop_invalid iptables -A INPUT -p tcp -m tcp --sport 1:65535 --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j drop_invalid iptables -A drop_invalid -j LOG --log-level debug --log-prefix "INVALID state -- DENY" iptables -A drop_invalid -j DROP iptables -N RULE_0 iptables -A INPUT -i wlan0 -s darkstar -j RULE_0 iptables -A RULE_0 -j LOG --log-level info --log-prefix "RULE 0 -- DENY" iptables -A RULE_0 -j DROP iptables -N RULE_1 iptables -A INPUT -p icmp -m icmp --icmp-type any -j RULE_1 iptables -A RULE_1 -j LOG --log-level info --log-prefix "RULE 1 -- DENY" iptables -A RULE_1 -j DROP iptables -N RULE_2 iptables -A INPUT -p tcp -m tcp --dport 43 -j RULE_2 iptables -A RULE_2 -j LOG --log-level info --log-prefix "RULE 2 -- DENY" iptables -A RULE_2 -j DROP iptables -N RULE_3 iptables -A INPUT -p tcp -m tcp --tcp-flags ALL URG,PSH,FIN -j RULE_3 iptables -A RULE_3 -j LOG --log-level info --log-prefix "RULE 3 -- DENY" iptables -A RULE_3 -j DROP iptables -N RULE_4 iptables -A INPUT -p tcp -m tcp --tcp-flags ALL URG,ACK,PSH,RST,SYN,FIN -j RULE_4 iptables -A RULE_4 -j LOG --log-level info --log-prefix "RULE 4 -- DENY" iptables -A RULE_4 -j DROP iptables -N RULE_5 iptables -A INPUT -p all -f -j RULE_5 iptables -A RULE_5 -j LOG --log-level info --log-prefix "RULE 5 -- DENY" iptables -A RULE_5 -j DROP iptables -N RULE_6 iptables -A INPUT -p udp -m udp --dport 513 -j RULE_6 iptables -A RULE_6 -j LOG --log-level info --log-prefix "RULE 6 -- DENY" iptables -A RULE_6 -j DROP iptables -N RULE_7 iptables -A INPUT -p udp -m udp --dport 33434:33524 -j RULE_7 iptables -A RULE_7 -j LOG --log-level info --log-prefix "RULE 7 -- DENY" iptables -A RULE_7 -j DROP iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT iptables -A INPUT -i lo -j ACCEPT iptables -A OUTPUT -o lo -j ACCEPT iptables -A FORWARD -o lo -j ACCEPT iptables -A OUTPUT -p tcp -m tcp ! --tcp-flags SYN,RST,ACK SYN -m state --state NEW -j DROP iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT iptables -A OUTPUT -p tcp -m tcp --dport 21 -m state --state NEW -j ACCEPT iptables -A OUTPUT -p udp -m udp --dport 53 -m state --state NEW -j ACCEPT iptables -A OUTPUT -p udp -m udp --sport 67 --dport 68 -m state --state NEW -j ACCEPT iptables -A OUTPUT -p udp -m udp --sport 123 --dport 123 -m state --state NEW -j ACCEPT iptables -A OUTPUT -p tcp -m multiport --dports 25,110,143,465,587,993,995 -m state --state NEW -j ACCEPT iptables -A OUTPUT -p tcp -m multiport --dports 80,443 -m state --state NEW -j ACCEPT iptables -A OUTPUT -p udp -m multiport --dports 500,1701,4500 -m state --state NEW -j ACCEPT iptables -A OUTPUT -p tcp -m multiport --dports 6667,6697 -m state --state NEW -j ACCEPT iptables -N RULE_9 iptables -A OUTPUT -s 192.168.0.0/24 -d 192.168.0.0/24 -j RULE_9 iptables -A INPUT -s 192.168.0.0/24 -d 192.168.0.0/24 -j RULE_9 iptables -A RULE_9 -j LOG --log-level info --log-prefix "RULE 9 -- ACCEPT" iptables -A RULE_9 -j ACCEPT iptables -N RULE_10 iptables -A OUTPUT -p 47 -j RULE_10 iptables -A INPUT -p 47 -j RULE_10 iptables -A OUTPUT -p tcp -m tcp --dport 1723 -j RULE_10 iptables -A RULE_10 -j LOG --log-level info --log-prefix "RULE 10 -- ACCEPT" iptables -A RULE_10 -j ACCEPT iptables -N RULE_11 iptables -A OUTPUT -p tcp -m tcp --dport 3389 -j RULE_11 iptables -A OUTPUT -p udp -m udp --dport 3389 -j RULE_11 iptables -A RULE_11 -j LOG --log-level info --log-prefix "RULE 11 -- ACCEPT" iptables -A RULE_11 -j ACCEPT iptables -N RULE_12 iptables -A OUTPUT -p tcp -m multiport --dports 43772,1024:65535 -j RULE_12 iptables -A OUTPUT -p udp -m multiport --dports 43772,1024:65535 -j RULE_12 iptables -A RULE_12 -j LOG --log-level info --log-prefix "RULE 12 -- ACCEPT" iptables -A RULE_12 -j ACCEPT iptables -N RULE_13 iptables -A OUTPUT -p udp -m udp -j RULE_13 iptables -A INPUT -p udp -m udp -j RULE_13 iptables -A RULE_13 -j LOG --log-level info --log-prefix "RULE 13 -- DENY" iptables -A RULE_13 -j DROP iptables -N RULE_14 iptables -A OUTPUT -p tcp -m tcp -j RULE_14 iptables -A INPUT -p tcp -m tcp -j RULE_14 iptables -A RULE_14 -j LOG --log-level info --log-prefix "RULE 14 -- DENY" iptables -A RULE_14 -j DROP iptables -N RULE_15 iptables -A OUTPUT -d darkstar -j RULE_15 iptables -A INPUT -j RULE_15 iptables -A RULE_15 -j LOG --log-level info --log-prefix "RULE 15 -- DENY" iptables -A RULE_15 -j DROP1 point
-
Not Facebook. I'm glad I've never had to touch that, even if only with a 10 ft. pole. Of course, many others here will disagree.1 point
-
@Roffen , I too hung on to my Windows XP for dear life, not wanting to move into uncharted territory (Windows 10). I'm 75 years old and I offer this advice....spend time googling various things you want to know about Windows 10. You'll find a great amount of information with photos, videos and other materials to help you learn. You mentioned not being able to see "Explorer" on your machine? This is the perfect opportunity to go to GOOGLE and enter "where to find explorer Windows 10" You will be presented with numerous opportunities to get right to where you want to be with diagrams, instructions and etc. . For the record, if you have your machine setup in "Desktop" mode, just go to the start button on the very bottom left of your screen (Just where you found it in Windows XP) and right click. You will be presented a dialog box and you will see "File Explorer" presented for you to left click and open the file explorer. Once that file explorer is open, you are actually on the "My PC" page which in Windows 10 is what you knew as "My Computer" in your Windows XP. You will see a folder there identified as "DOWNLOADS" with a blue arrow facing down. There is where you will find your downloads that you saved from the internet....... Hope this gives you some motivation and help?1 point
-
I meant that in general I probably should put update catalog links alongside the KB numbers of updates that have been released, so that it'd be a bit easier for people, who read these posts, to find these updates, or to at least not make them copy & paste every update number into MS catalog, sometimes it's really painful. I'm sorry I didn't make myself clear the first time, sometimes it's hard to express what you mean in a language that's not your native one. (and I hope you get what I meant now lol, if still not... well, maybe I need more sleep, can't get enough of it lately).1 point
-
Well, Brave already used Chrome's rendering engine earlier, so it's not like they're suddenly switching to it now. As for Firefox, we can only hope that they will resist as long as it's possible, otherwise more and more sites will only be tested under Chrome which means that PM may become more and more incompatible with various websites (obviously this doesn't have to happen but we never know, maybe MC will make his own chrome browser one day and give up on PM/Basilisk since it no longer will be worth to maintain them).1 point
-
... but allow me to doubt that anything BUT a Toshiba OEM image will activate with a Toshiba OEM key : jaclaz1 point