[WP] The moment you die, you see a screen that has a numeric score and the words GAME OVER. PLAY AGAIN FOR A HIGHER SCORE? PLEASE CHOOSE YES or NO You briefly see a list of names with high scores.
πŸ‘︎ 87
πŸ’¬︎
πŸ‘€︎ u/brougmj
πŸ“…︎ Jun 15 2016
🚨︎ report
How to generate a numeric list when the number is in the middle of a file name

Hello Excel!

I am currently working on a project which requires me to place 1300 PDFs on an 8.5x11 sheet, 4 up. Instead of spending god knows how many hours placing these manually, I thought it might be a better solution to do a Data Merge in inDesign.

The customer has provided me with Powerpoint that has 1300 slides. I then export it as a PDF resulting in the name "PPT_TEST1.PDF, PPT_TEST2.PDF, PPT_TEST3.PDF ... PPT_TEST1300.PDF." Next I need to create an Excel file that calls each PDF so I can Data Merge.

When I create an Excel Document starting with: PPT_TEST1.PDF PPT_TEST2.PDF PPT_TEST3.PDF And then try to repeat the values hoping it would add 4.PDF, 5.PDF, 6.PDF, 7.PDF, 8.PDF... it actually repeats 1,2,3,1,2,3.

I then tried PPT_TEST =ROW().PDF but =ROW doesn't work inline with other text.

Are there any other solutions in which this would work? I basically need PPT_TEST*.pdf where * changes to the number of the row.

Let me know if this is a confusing explanation and I'll try to explain further.

Best,

Jason

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/jasonsizzle
πŸ“…︎ Jul 12 2018
🚨︎ report
A writer on The Good Place submitted the following list of restaurant name puns with the script for her episode. It includes gems like "Squab Goals" and "Pie Another Day." twitter.com/meganamram/st…
πŸ‘︎ 16
πŸ’¬︎
πŸ“…︎ Sep 09 2018
🚨︎ report
How do I create a formula that will come up with the sum count for a range of data, containing numeric names?

Hello,

I need help, creating a formula that will provide the sum count of EACH cell that contains numeric titles/names..

I have attached a screenshot of the said "Sample #" data.

For example, the first 3 cells going down are Samples #20040001, 20040002, and 20040004.

For those 3 cells, the end product for each of them should equal "1" because that's how many samples there are (20040001= 1 sample logged in).

Then for the 4th cell, 20040005-0006, the end product should equal 2 samples logged in because 20040005 & 20040006 are 2 samples on their own.

Same for the 5th cell.

For the 6th cell, 20040009-0014, the end product should equal 6 samples logged in.

I just don't know to be able to translate that thought process above into a working formula or formulas.

Any ideas are welcome.

Thank you.

https://preview.redd.it/5cbw28gbzls41.jpg?width=110&format=pjpg&auto=webp&s=b02d49c4360612016b7174a12d6216947354eaaf

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/itacatt
πŸ“…︎ Apr 13 2020
🚨︎ report
Reddcoin the sleeper. Have you heard about what they are doing? You will soon. A strong community. Real world use. Redd ID is going live. One of the greatest features of any crypto. You will be able to social tip with crypto using real names not long alpha numeric addresses.
πŸ‘︎ 58
πŸ’¬︎
πŸ‘€︎ u/cryptocrew72
πŸ“…︎ Sep 30 2018
🚨︎ report
Spiderman and his Roommate Boomerang At The Bar With No Name, the place where everyone's favourite C and D list Villains go to hang out. Honestly Bad Guy bars are some of the most fun locations in stories, love the trope
πŸ‘︎ 139
πŸ’¬︎
πŸ‘€︎ u/kenshin317
πŸ“…︎ Apr 19 2019
🚨︎ report
The cast list of extras from the last episode makes me want to believe it took place in a reality where famous Australian's were born with the first letters of their first and last names switched around and then decided to settle for less exciting lives.
πŸ‘︎ 479
πŸ’¬︎
πŸ‘€︎ u/howcanbereal
πŸ“…︎ Oct 21 2018
🚨︎ report
TIL: You can use an ActiveRecord's Enum with Single Table Inheritance to make the type column numeric instead of a string with class names

Model inheritance in Rails is miserable for many reasons. Among the worst is that type column with string class names.

  • It takes up huge amounts of space. It takes up an even huger amount of space if you need to index the column. And you probably need to index it if you ever run queries from any subclass.
  • I'm not sure how big the difference actually is, but generally integers are faster than strings. The indexes are smaller too.
  • Changing class names is difficult because you need to update every row containing the old class name. On large tables, this can take ages.

What if we could use numbers in the type column, alias those numbers to class names in the application, and have ActiveRecord do the right thing? Maybe this is common knowledge, but it turns out you can use AR's enum feature to do exactly that.

As an example, suppose you want to store network addresses, which may be either hostnames, IPv4 IPs, or IPv6 IPs. Create an integer column named "type" on your table:

create_table :network_addresses do |t|
  t.integer :type # Add "null: false" to force all rows to become a subclass
  t.index :type # You probably want to do this
    
  # Whatever other attributes you want
  t.string :address, null: false
  t.index :address
end

Then create the base model and enumerate your subclasses:

# app/models/network_address.rb

class NetworkAddress < ApplicationRecord

  # Enumerate your allowed subclasses
  enum type: {
    'NetworkAddressHostname'=> 0,
    'NetworkAddressIpv4' => 1,
    'NetworkAddressIpv6' => 2
  }

  # Add this if you wish force all your objects to be one of your
  # enumerated subclasses.  Otherwise, it is possible to create
  # basic NetworkAddress objects.
  # validates_presence_of :type
  
  # Do whatever else you want for your base class
  validates_presence_of :address

  def to_s
    address
  end
end

And a subclass for each class you listed in the enum above:

# app/models/network_address_hostname.rb

class NetworkAddressHostname < NetworkAddress
  # Type specific validation.  Neat!
  validates_format_of :address, with: /\A[a-zA-Z][a-zA-Z0-9\-.]*\z/
end

# app/models/network_address_ipv4.rb

class NetworkAddressIpv4 < NetworkAddress
  validates_format_of :address, with: Resolv::IPv4::Regex
end

# app/models/network_addres
... keep reading on reddit ➑

πŸ‘︎ 23
πŸ’¬︎
πŸ“…︎ Oct 10 2018
🚨︎ report
[Anime Spoilers] Need name of OST during a scene. is there a place that lists all the episodes with timestamps for the specific music?

specifically looking for the music during Armin death scene and armin re emerging out of titan scene?

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Beejsbj
πŸ“…︎ Jun 30 2019
🚨︎ report
List of the most common U.S. place names: First place, Washington With 88. en.wikipedia.org/wiki/Lis…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/slinkslowdown
πŸ“…︎ Dec 30 2019
🚨︎ report
Reddcoin the sleeper. Have you heard about what they are doing? You will soon. A strong community. Real world use. Redd ID is going live. One of the greatest features of any crypto. You will be able to social tip with crypto using real names not long alpha numeric addresses.
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Cryptomarmite
πŸ“…︎ Sep 30 2018
🚨︎ report
If the biblical Exodus and Conquests never took place, how does one account for the highly specific lists of names, numbers and dates associated with these events?

While it is easy enough to imagine a general narrative being constructed from fragmentary memory (or just made up) it is much more difficult, to me, to account for the much more specific (and frankly dull) information such as names of the leaders of the tribes as they left Egypt, the precise numbers of people in the tribes, the specific names and sequence of conquered cities and their kings, etc..

Who would make up such stuff and why?

πŸ‘︎ 12
πŸ’¬︎
πŸ“…︎ Jun 28 2015
🚨︎ report
Heard of Portis? Portis is a non custodial, multi-blockchain Wallet. Similar to Metamask but more easy to use, not restricted to only ETH network and works perfectly with numerous browsers. Learn more about Portis on The Dapp List #LearnWeb3 series. https://thedapplist.com/learn/what-is-portis. reddit.com/gallery/r5vdvz
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Rain--bow
πŸ“…︎ Nov 30 2021
🚨︎ report
Digest-list of places where you can go for the winter holidays and pay with Bitcoin:

Roma

29Β Via Gregorio Ricci Curbastro,Β Roma,Β Lazio,Β Italy

https://bitcoinwide.com/map/atrastevere-ed81d106-fb74-42f6-a46c-42c6780ff1ef

All rooms at the Trastevere have a nice little terrace.

A stone's throw from the building are: aesthetic center, pizzeria-restaurant, bar and other businesses.

ZΓΌrich

87Β Bahnhofstrasse,Β ZΓΌrich,Β Switzerland,

https://bitcoinwide.com/map/hotel-gotthard-dc7e214d-6715-49b5-8c75-aa39651f4efb

Hotel St. Gotthard Zurich provide the perfect venue for prestigious meetings and Plan your stay Zurich, Hotel St. Gotthard - You will certainly enjoy yourself! The Hummerbar - one of the leading restaurants in the Bahnhofstrasse Zurich - is a very famous and popular institution in culinary circles.

Wien

31 Große Stadtgutgasse, Wien, Austria

https://bitcoinwide.com/map/krypto-hotel-vienna-d22c13ab-5572-4cbf-8a00-d38196ea2c3f

The KRYPTO HOTEL VIENNA is typically Viennese - charming, cozy and dignified. It has been run as a family company with passion and commitment for more than 50 years.

More information can be found on our website - https://bitcoinwide.com/

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/BitcoinWide
πŸ“…︎ Dec 02 2021
🚨︎ report
What was the name of the place on Mcleod with the singing robots in the 90's

Had a nostalgia moment today, but do you think I can rember the name of it.

I'm pretty certain it was on Mcleod. They served pizza there and they had singing robots, FNAF style, but with less murder. Pretty certain they had a Rocky and Bullwinkle robot duo. This was in the late 80's, 90's.

πŸ‘︎ 26
πŸ’¬︎
πŸ‘€︎ u/RobBrown4PM
πŸ“…︎ Oct 22 2021
🚨︎ report
You can put your favorite decks at the beginning of the deck list by adding numbers in front of the name. The ordering is first numerical then alphabetical
πŸ‘︎ 259
πŸ’¬︎
πŸ‘€︎ u/Shirco
πŸ“…︎ Feb 19 2020
🚨︎ report
A Map of Places where you can Ride on a Horse with no name.
πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/EmpathicLlama9
πŸ“…︎ Dec 20 2021
🚨︎ report
I've been to Valley of the Kings, Lake Titicaca & Garden of the Gods... what other places with "legendary" names should I add to this list?
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/chan1628
πŸ“…︎ May 07 2014
🚨︎ report
reading a book abt anorexia and apparently people with eating disorders have less activity in the part of your brain that deals with internal perception and so they rely on more external cues such as numeric values and other people’s comments to form images of themselves
πŸ‘︎ 357
πŸ’¬︎
πŸ‘€︎ u/lunebest
πŸ“…︎ May 21 2021
🚨︎ report
I was reading wintersteal and I forgot a lot of characters is there place i can find list of names that doesn't include wintersteal ?
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/Hunter2225
πŸ“…︎ Oct 08 2020
🚨︎ report
List of places with unusual names en.wikipedia.org/wiki/Wik…
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/5unkEn
πŸ“…︎ Oct 24 2016
🚨︎ report
[Article] I noticed a lot of the places with the top decks from GP Atlanta had some incorrect deck lists and names. I've fixed all that. grinningremnant.com/top-8…
πŸ‘︎ 16
πŸ’¬︎
πŸ“…︎ Feb 15 2017
🚨︎ report
VBA copy multiple sheets with numeric names to a master sheet

I'm trying to find this online but haven't had luck so far. Looking for a VBA script that will copy all sheet data to a master sheet as long as the sheet name is numeric. So for example, some sheets are called data and forecast and then the majority of them are just 4 digit codes. I only want to copy the 4 digit code sheets and append them together in the master sheet.

Anyone have any knowledge on this?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Reezen
πŸ“…︎ May 22 2019
🚨︎ report
A list of my favorite place names

Here is a list of my favorite names inspired by countries, cities, or else where. I consider them all unisex, because it's 2020 and I'm not a little bitch.

The People's Republic of Chyna

The Democratic Republic of the Congo

Kyrgyzstan

Bologna

Dijon

Westphalia

Helsinki

District of Columbia

Venice, but pronounced Vah-nee-see

Anyway, yeah, lemme know what ya think.

πŸ‘︎ 43
πŸ’¬︎
πŸ‘€︎ u/cb1216
πŸ“…︎ Feb 13 2020
🚨︎ report
How to place columns of data set from excel file into numeric arrays

I have an excel file that I grab by:

ds = dataset('XLSFile',fullfile('file path here', 'waterReal.xlsx'))  

It looks like this: https://i.imgur.com/urgag7w.png

I want each column in its own numeric array though! Like how when I load an example dataset: load carsmall, I get a bunch of individual numeric arrays. But I can't figure out how to do that.

I can do this individually by writing:

A = ds.TEMP, B = ds.PROD, ...

Bu what if I had BIG excel file? What then?

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/Ozera_
πŸ“…︎ Nov 04 2019
🚨︎ report
Why did the last 4 months just get stuck with boring numeric names?

I can't find any Romans to ask personally, so I thought I'd toss this out to everyone here.

The first six months of the year all got really cool names from the Romans, based on gods, goddesses or ancient festivals of purification.

Later, they stuck in two more months, and named those after a couple of their most beloved emperors.

But then it seems they just gave up, or ran out of ideas or something, settling on Seventh Month, Eighth Month, Ninth Month and Tenth Month to finish out the year. It's like they gave the naming job to the least interesting person in the empire.

Why? Why such cool names at the top of the list, and such uninspired boiler plate at the end?

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/Howl_Skank
πŸ“…︎ Nov 22 2018
🚨︎ report
Is there a list of all the Guitar Hero Guitars and their names somewhere, with a breakdown of rarity or good to know info on them?

I'm currently looking into getting a couple guitars right now, and going down this rabbit hole is really opening my eyes as to just how many different variations of this classic guitar controller there actually are...

It's hard to know which ones to look for, what's a good one, and which ones are duds so to speak, and before I know it, I've found yet another totally new looking guitar that I haven't seen before and I'm wondering if it's worth the price tag.

Basically, I just figured there might be a comprehensive list of guitars here or something, that was my hope. If not here, then where would this info be right? Which ones are good to get, which ones are best for using with PC and emulation, and which ones are to be avoided for build quality issues or whatever else.

Cheers, and sorry if this is considered a repeated question but I did google for a list first and couldn't find one in my immediate search results, so figured I'd cut to the chase here, and maybe future Guitarists will stumble on this thread with the answers they also seek.

πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/GreyWolfx
πŸ“…︎ Sep 08 2021
🚨︎ report
This dog grooming website has the best list of names (fantasy, mythological, and otherwise) I have ever seen in one place. I'm never going to run out of names for NPCs now. lowchensaustralia.com/nam…
πŸ‘︎ 664
πŸ’¬︎
πŸ‘€︎ u/Satranath
πŸ“…︎ Mar 10 2019
🚨︎ report
Sorry if this isn’t allowed, but I’m trying to better understand... My email and correct phone number appeared on the Fogo De Chao mailing list from the KC location, but with a different name attached to the account, and ive never been to the place.. should I be concerned?

I clicked update your information and it was my email and correct phone number listed, but the name was someone I’ve never heard of. I’ve never been to a Fogo de Chao. Any ideas how this happened?

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/Metrologyyy
πŸ“…︎ Jul 20 2019
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.