guru99.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Free tutorials for most things tech.

brainyquote.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Quotes from famous and not so famous people.

Buddha

"Even death is not to be feared by one who has lived wisely."

Marcus Tullius Cicero

"More law, less justice."

William Temple

"When I pray, coincidences happen, and when I don't, they don't."

Confucius

"I hear, I know. I see, I remember. I do, I understand."

scrabble-solver.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Useful for scrabble cheats.

superuser.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Super User is a Q&A site for computer enthusiasts that’s free. Free to ask questions, free to answer questions, free to read, free to index

PowerShell pipeline input ByPropertyName

5 May 2024 @ 5:44 am

Given a text file modules.txt with these contents: Microsoft.Powershell.Archive Microsoft.Powershell.Management Microsoft.Powershell.Utility I want to get the commands defined in each module. This works: Get-Command -Module (Get-Content .\modules.txt) But this does not, despite Module being defined as accepting pipeline input by variable name: get-content .\modules.txt |select @{n='Module';e={$_}} | Get-Command This error is returned: Get-Command: The term '@{Module=Microsoft.Powershell.Archive}' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. My question: why does the second approach fail, if the Module parameter is defined as accepting pipeline input ByPropertyName.

Setting up reverse DNS for home email server with IPv6 on Linux Ubuntu 22.04 or Debian

5 May 2024 @ 3:25 am

I'm trying to set up an email server at home using Ubuntu 22.04 and IPv6. I would like to configure a reverse DNS for my IPv6 address to ensure reliable email delivery. I've followed this guide to set up a static IP. Now, I'd like to set up a reverse DNS for this IPv6 address. I'm considering using either BIND or DNSMasq as my DNS server. Could someone guide me on how to configure reverse DNS for an public IPv6 address on a home connection using one of these DNS servers? Thanks in advance for any help!

How do I clone from local git repositories with ssh?

5 May 2024 @ 2:56 am

The final goal is to host a remote repo on my pc that support pushing and pulling. From the official doc given by git help clone, the host url format should be git clone ssh://user@localhost:/C:/path/to/repo or git clone git://localhost:/C:/path/to/repo Git clone ssh returned fatal: ''/C:/path/to/repo'' does not appear to be a git repository While git clone git returned fatal: unable to connect to localhost: localhost[0: ::1]: errno=Unknown error localhost[1: 127.0.0.1]: errno=Unknown error The repo is default repo without the --bare flag, but i think that should not affect cloning but pushing to master right? The repo have existing commits Ive tried localhost/C/ (without :) and path/to/repo.git but to no luck I saw guides that suggests git@localhost but that doesnt make any sense, i supposed they forgot to mention its for github a

Unable use Read Aloud on local pdf documents

5 May 2024 @ 2:32 am

Last few days, MS Edge is unable to Read Aloud on pdf documents. It works on web page. The progress bar just keeps moving. Any way to solve this problem? enter image description here

How to use -map to pick certain tracks based on english/5.1 etc

5 May 2024 @ 1:22 am

Good day all. Trying to create either a batch file or if it can be done as just one ffmpeg command, great! I download a lot of videos, they are all mkv. I need them all mp4. They often have various audio tracks, I only need 1, the 5.1 ac3/eac3/aac stream english stream if available, if not and only dts available, this needs to be converted to 5.1 ac3/eac3/aac. If english srt/ass subs are available, I'd like to extract the standard, sdh and forced subs as srt files. Mainly I think I just need help with the -map side of things, I am able to convert and what not, it's just the actual, how do I make it automatically pick just the tracks based on the above factors, or can this be achieved with a batch file or powershell script that makes use of the file properties to tell which track is which. Now I'm currently achieving what I need but there's a lot of manual intervention involved. I need to go through each file and decide what tracks are what n

What is the formula for listing all non empty cells in a range of cells

5 May 2024 @ 1:09 am

I'm trying to gather all of the non empty cells in a n x n range of cells, then output them in a single column that I can drag the fill handle to automatically grab the next valid value. I'm running office 2016 so no FILTER Function. The values need to be collected by top to bottom, and then left to right, so for example: A1 A2 A3 B1 B2 B3... and so on See, below for a basic demonstration of what I have and what I need to output. Demo Data

Is there a way to prioritize or make Bluetooth device connections "sticky" on an Android phone? [migrated]

5 May 2024 @ 1:06 am

I have a Samsung Android phone with about a half dozen paired Bluetooth devices. The devices are: My car, a Wireless Android Auto dongle, hearing aids, a Bluetooth headset, my Android watch, and another car. I have had a problem for years now that I can't find a solution for: While using Android Auto in my car (USB hard wired or AA wireless), the phone will randomly switch Bluetooth connections to one of the other paired audio devices, which spontaneously causes the Android Auto connection to drop. For example, the Bluetooth connection will drop from the car and switch to my hearing aids, resulting in Android Auto disconnecting ... until it may randomly switch connections back to the car and Android Auto reconnects. I have also had issues where a phone call initially connected via my hearing aids will randomly drop after a few minutes to my Android watch. Is there a way to prioritize Bluetooth connections on an Android phone - or make the connections "stick

sudo user input sanitize, to avoid error "-sh: 0: Illegal option"

5 May 2024 @ 12:28 am

I've a bash script that should be called in this way: become.sh USER COMMAND It just login as the user USER to execute the command COMMAND. Full stop. Example usage and expected output from your user: $ lorenzo@computer ./become.sh maria whoami maria This is the minimal implementation, and it works: sudo --non-interactive --user="$USER" --login -- "$COMMAND" Question: How to Sanitize Input? The problem is, this usage is supposed to work: ./become.sh maria -do-things- But it actually gives this error: -sh: 0: Illegal option -d I understand that -do-things- is confused like an option -d so I'm probably not sanitizing correctly my inputs. So, how do sanitize that correctly? I expect, instead, this native error, at leas

Trying to diagnose external hard drive malfunction

4 May 2024 @ 8:30 am

What's the issue with this Seagate external hard drive: its activity light stays on after I issue the 'safely remove hardware' command on laptop 1 (before physically removing it from the laptop); this doesn't happen on laptop 2, once I click on 'safely remove hardware', its light goes off; on both laptops, after connecting the drive, its light turns on, off, or blinks, even when not reading from or writing to it.

Running soft AP and bridge mode on laptop for legacy connections, connection fails

29 April 2024 @ 4:56 pm

Recently, I’ve resumed playing Mario Kart DS, an old (2005) Nintendo game available on the Nintendo DS console, including playing online. The online service has been closed by Nintendo for a long time now, but people have volunteered to create replacements, the most famous probably being Wiimmfi, that only requires to set a DNS server address manually on the console. Things are not that simple however. Because it’s an old game, it can only connect to either plain unprotected, open Wifi networks, or WEP-“protected” ones, which have now almost completely disappeared from domestic routers wireless configurations, and aren’t advisable even when they’re still available. To be able to give internet access to the console, options remain, among which : Sharing the phone’s mobile internet wirelessly Using a WEP/unencrypted soft AP on a computer acting as a router to the domestic w

Wikibooks.org

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Online books and reference 
Wikibooks.org

wikileaks.org

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Keeping the world free of oppression 
wikileaks.org

Erowid.org

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Recreational drug information.

W3schools.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

W3Schools Online Web HTML & JavaScript Tutorials

Wikipedia.org

VN:F [1.9.22_1171]
Rating: 7.1/10 (8 votes cast)

The free encyclopedia, showing a fake mainstream agenda in modern times (always check the revisions).

Template:Link summary/sandbox

4 May 2024 @ 11:19 pm

Strip whitespace and use lowercase for Global Search and "Links on en" ← Previous revision Revision as of 23:19, 4 May 2024 Line 10: Line 10: -->[https://spamcheck.toolforge.org/by-domain?q={{replace|{{lc:{{{1|}}}}}|*|*}} Spamche

User:Kambai Akau

4 May 2024 @ 11:19 pm

← Previous revision Revision as of 23:19, 4 May 2024 Line 220: Line 220:

Tetragonocarpus teysmannii

4 May 2024 @ 11:19 pm

←Redirected page to Tetragonocarpus New page#redirect [[Tetragonocarpus]] {{R to monotypic taxon|plant}}

Athletics at the 2008 Summer Olympics – Men's 5000 metres

4 May 2024 @ 11:19 pm

Added content ← Previous revision Revision as of 23:19, 4 May 2024 Line 18: Line 18: }}

Welcome to the Edge

4 May 2024 @ 11:19 pm

Importing Wikidata short description: "1991 single by Billie Hughes" ← Previous revision Revision as of 23:19, 4 May 2024 Line 1: Line 1:

Mystik Dan

4 May 2024 @ 11:19 pm

← Previous revision Revision as of 23:19, 4 May 2024 Line 1: Line 1: {{Under construction|placedby=}}

User:HAL333/sandbox/viralvector

4 May 2024 @ 11:19 pm

Gamma retroviral vectors ← Previous revision Revision as of 23:19, 4 May 2024 Line 76: Line 76:

Tetris

4 May 2024 @ 11:19 pm

Reception and legacy ← Previous revision Revision as of 23:19, 4 May 2024 Line 205: Line 205:

Minnesota State Highway 36

4 May 2024 @ 11:19 pm

← Previous revision Revision as of 23:19, 4 May 2024 Line 39: Line 39:

Richard Curtis

4 May 2024 @ 11:19 pm

Excess ← Previous revision Revision as of 23:19, 4 May 2024 Line 88: Line 88:

numbeo.com

VN:F [1.9.22_1171]
Rating: 7.3/10 (3 votes cast)

Cost of living, Quality of life and travel for around the world.

Quality of Life Index 2015 Mid Year

22 July 2015 @ 6:20 am

body { background-color: #fffff; } a.likenormal, a:visited.likenormal { color: #101010; text-decoration: none; } .noborder { text-decoration: none; border: 0; } .linkfulllistbig { padding: 3px; margin: 3px; background-color: #FFD857; border: 1px solid black; border-radius: 5px; text-decoration: none; } .biglink { padding: 3px; margin: 3px; font-size: 130%; text-decoration: none; } .smallerfont { font-size: 85%; } h2 { padding-top: 1ex; } Quality of Life Index 2015 Mid Year Worldwide Top 10Quality of Life Index Zurich288.36 Canberra286.87 Ottawa279.46 Munich

Cost of Living Index 2014 Mid Year

1 July 2014 @ 8:04 am

Numbeo Cost of Living Index 2014 Mid Year (July 1st, 2014) Numbeo, the world's largest database of user contributed data about living conditions in cities and countries worldwide, released mid year 2014 rankings. The most expensive cities in the world, in mid 2014 are Zurich (CPI index 159.51), Stavanger (156.71) and Geneva (150.43). Indian cities Thiruvananthapuram (22.25), Coimbatore (24.57) and Indore (25.90) are the least expensive cities in the world. In Europe, cities in Switzerland and Norway dominate the list of most expensive cities, while the least expensive cities in Europe are Bitola (index 37.88), followed by Chisinau (38.40) and Dnipropetrovsk (40.53). Cities in Europe, out of all

The Most Expensive Cities in 2014 by Numbeo's Cost of Living International Rankings

28 January 2014 @ 11:33 am

The biggest free cost of living database, Numbeo, collected more than 1.1 million data from more than 130000 contributors since 2009. The result of Numbeo's survey, shows, that in the beginning of 2014, the most expensive cities (excluding rent) are Zurich (index 157.47), Trondheim (152.89) and Geneva (162.34). The least expensive are Thiruvananthapuram (21.17), Tiruchirapalli (23.23) and Indore (23.94) in India. Numbeo is currently tracking the prices of 48 goods and services. In Numbeo's survey, New York is used as the base city for the index and scores 100 points, all cities are compared against New York and currency movements are measured against US Dollar and EURO. Lucerne in Switzerland scores 150.75 points and is nearly three times as costly as Consanta in Romania with an index score of 50.32. In Europe, many cities in Switzerland and Norway are among the most expensive on the list, followed by Paris (120.68). In

New Numbeo release brings support for mobile phones!

7 October 2013 @ 11:56 am

New www.numbeo.com release brings support for mobile phones. Let me know if you encounter any problem. New mobile version of the website is supposed to load automatically when you access the website from the mobile phone.

BudgetDirect Provides Interesting User Experience over Numbeo Data

2 October 2013 @ 7:11 am

BudgetDirect do provide interesting user experience using Numbeo data in their cost of living tool . I'm interested to hear what do you like and what do you dislike in their tool, especially regarding look&feel.

Numbeo, the world’s largest database of user contributed data about cities and countries worldwide, has chosen Iceland as the least polluted country in 2013

27 February 2013 @ 12:28 pm

Top 10 the least polluted countries, according to Numbeo are: - Iceland (pollution index 9.85) - Estonia (16.38) - Finland (18.53) - Sweden (18.79) - Australia (20.89) - New Zealand (21.80) - Switzerland (22.97) - Norway (23.35) - Lithuania (25.17) - Canada (26.52) The full list is available at: http://www.numbeo.com/pollution/rankings_by_country.jsp

Top 10 Safest Countries in the World in 2013

27 February 2013 @ 12:28 pm

Japan is the safest country in the world in 2013, according to Numbeo, the world’s largest database of user contributed data about cities and countries worldwide. Top 10 safest countries, according to Numbeo are: - Japan (safety index 86.89) - Taiwan (83.74) - Hong Kong (83.43) - South Korea (82.60) - United Arab Emirates (81.99) - Malta (81.46) - Luxembourg (81.25) - Georgia (80.43) - Bahrain (80.21) - Singapore (80.02) - Iceland (77.68) The full list is available at: http://www.numbeo.com/crime/rankings_by_country.jsp

Numbeo: Quality of Life Index by City 2013

27 February 2013 @ 12:27 pm

ZURICH is the city with the best quality of life in 2013, according to an annual report by Numbeo, the world's largest database of user contributed data about cities and countries worldwide. For its quality of life index 2013 it gathered data from more than 76000 people around the world. The cities which are ranked highest in quality of life are: - Zurich, Switzerland (score 233.72) - Canberra, Australia (219.15) - Adelaide, Australia (214.61) - Berlin, Germany (213.50) - Munich, Germany (210.24) - Edmonton, Canada (208.74) - Calgary, Canada (202.72) - Hamburg, Germany (201.55) - Austin, TX, United States (199.52) - Dubai, United Arab Emirates (195.49) Full rankings are available at: http://www.numbeo.com/quality-of-life/rankings.jsp About Numbeo: Numbeo is the worl

Property Prices Indexes 2013

4 February 2013 @ 11:19 am

Numbeo did publish it's property price indexes for 2013. Property Price Index by city is available at: http://www.numbeo.com/property-investment/rankings.jsp Property Price Index by country is available at : http://www.numbeo.com/property-investment/rankings_by_country.jsp

Cost of Living Index for 2013 - Norway, Switzerland and Australia are most expensive

4 February 2013 @ 11:16 am

Based on 48 goods and services, Numbeo's survey for 2013 is made using a data cut on 4th of February 2013. This year data cut contains 367958 entries from 33448 individual contributors worldwide. The data on city level are showing Norwegian cities Stavanger, Trondheim, Oslo and Bergen on top of the list of most expensive cities. Several cities in Switzerland are also among the most expensive in the world: Zurich, Geneva, Basel, Lausanne and Bern. Among the 25 most expensive cities in the world, our list includes also eight Australian cities: Perth, Sydney, Canberra, Hobart, Darwin, Brisbane, Melbourne and Adelaide. Only a few cities which are not in Norway, Switzerland and Australia made their way into the top 25 most expensive list: Luanda in Angola, Stockholm in Sweden, Arhus and Copenhagen in Denmark, Paris in France, Luxembourg and on 25th place Tokyo in Japan. List with details on city level is available at: