Shit I actually need to recover from the mass deplatforming campaign

I wish I had the knowledge and resources to help but someone out there has to. You can delete this since it's not really helpful if it's shitting up the thread lol. As a last resort could u hire some innocent old lady off the street to do it by hand? Like a secretary. Lol sorry that's all I got. I have no idea about the other stuff. Take care of yourself.
 
I wish I had the knowledge and resources to help but someone out there has to. You can delete this since it's not really helpful if it's shitting up the thread lol. As a last resort could u hire some innocent old lady off the street to do it by hand? Like a secretary. Lol sorry that's all I got. I have no idea about the other stuff. Take care of yourself.
The troons have shown up in person before, it would be a potentially dangerous position to be in.
 
Josh, I live in Argentina and, even if its a third world country, most people don't give a shit about trannies or twitter.

Just food for thought, also if you want to know something you can message me and I'll help you as best as I can.
Pretty much no free speech and suing for libel/defamation is incredibly easy, a poor choice all things considered.

Also the 'Ministry of women, gender and diversity' is a thing, do I have to say more?
 
Is there a way to register a PO box without making my own information easily available to troons if I let Josh use it? Asking as I've literally never set one up in my life.
Usually you have to provide ID/info to the Post Office at least, though I don't think they are permitted to release the box owner info to randos that show up or email, etc. If the box is being used for a company, I think you need to give the Post Office a couple of company docs (forget which ones) just to show it exists and identify POC(s) that are authorized for the box.
 
The troons have shown up in person before, it would be a potentially dangerous position to be in.
Hell, I'll do it (seriously). I live in a very pro-2nd state with comprehensive castle doctrine and stand-your-ground laws. Sheriffs in this state have said -- on record in their official capacity -- that if you shoot someone in self defense while you're at home, make sure the body lands inside your property line and you're likely not even be arrested, much less charged with a crime. The press loses their shit every time and the cops fucking love it.

No family left to threaten besides gun-toting ex-military parents out-of-state, either. Good fucking luck intimidating me, trannies.
 
yes, but wyoming doesn't have corporate income tax and is a business haven.
What you need to do is find a set-up so that if you get taken down, it inconveniences as many uninvolved people as possible.

These people are the villains and it's time other people were reminded.

"These are people willing to wipe you out just to get to us. Still on their side?"
 
I have some experience with setting up SIP PBXs so I googled a bit to see if the all in one I used in the past (Elastix) had VM transcripts, and as a result I'm seeing that people figured out how to set up transcribed voicemails in that system back in 2011.

I'm not encouraging setting up a PBX just for transcripts, but the method detailed above might be helpful in giving you some ideas for setting up a rube goldberg method of getting what you want since, to quote the archived blogpost "This process can also work with recorded calls and other audio files."

ymmv
Voicemail transcription is a great feature to have in any voice system. Voicemail transcription is the process of converting voicemail audio into text, so you can read what was said in the voicemail without having to actually listen to the vo

icemail message itself. This process can also work with recorded calls and other audio files. In this article, I’m going to show you how to configure Asterisk (More specifically, Elastix) to transcribe voicemail messages and send them via email to the user.

Instructions​

These instructions are based off directions originally posted by Nickolay V. Shmyrev here but with many alterations.

Step 1​

Install the dependancies needed to compile and install PocketSphinx:

CentOS/RHEL/Fedora
Code:
yum install libtool
Ubuntu/Debian
Code:
sudo apt-get install libtool build-essentials

Step 2

Download the latest version of PocketSphinx and SpinxBase and extract it. You can find the latest version on their website: http://cmusphinx.sourceforge.net/wiki/download

You can also download the packages using wget:
Code:
wget http://cmusphinx.svn.sourceforge.net/viewvc/cmusphinx/trunk/sphinxbase/?view=tar -O sphinxbase.tgz
wget http://cmusphinx.svn.sourceforge.net/viewvc/cmusphinx/trunk/pocketsphinx/?view=tar -O pocketsphinx.tgz
And extract:
Code:
tar xvfz sphinxbase.tgz
tar xvfz pocketsphinx.tgz

Step 3​

You can then compile and install sphinxbase:
Code:
cd sphinxbase/
./autogen.sh
make
make install
Then compile and install pocketsphinx:
Code:
cd pocketsphinx/
./autogen.sh
make
make install

Step 4​

Download an acoustic model that pocketsphinx will use to transcribe the voicemails.
Code:
wget http://downloads.sourceforge.net/project/cmusphinx/Acoustic%20and%20Language%20Models/US%20English%20Communicator%20Telephone%20Acoustic%20Model/communicator_4000_20080321.tar.gz
And extract and move the acoustic model somewhere we can use it later:
Code:
tar xvfz communicator*.tar.gz
mv Communicator_40.cd_cont_4000 /var/lib/asterisk/communicator/

Step 5​

We’ll next need to create a script that will perform the transcription, and save the transcript as a text file so we can include the text in an email. You can view the script below, or download it here:
Code:
nano /sbin/voicemail-transcribe.sh
Code:
#!/bin/sh

voicemaildir=/var/spool/asterisk/voicemail/$1/$2/INBOX/

echo `date` ':' $voicemaildir >> /var/log/voicemail-notify.log

for audiofile in `ls $voicemaildir/*.wav`; do
   transcriptfile=${audiofile/wav/transcript}
   # For each message.wav we check if message.transcript
   # exists
   if [ ! -f $transcriptfile ]; then
      # If not, we create it
      /usr/local/bin/pocketsphinx_continuous -infile $audiofile \
         -hmm /var/lib/asterisk/communicator \
         -samprate 8000 2> /var/log/asterisk/voicemail-notify.log \
            > $transcriptfile

      # Now we can do whatever we want with the new transcription
      echo `cat $transcriptfile | cut -d: -f2`
   fi
done
Then, ensure that the script is executable:
Code:
chmod +x /sbin/voicemail-transcript.sh

Step 6​

We can then modify the voicemail email template to include a section for the voicemail transcription. This in an important step because we’ll be using a secondary script that will insert the voicemail transcript into the email after the keywords “Voicemail Transcript”.

Add the following text to /etc/asterisk/vm_email.inc at the end of the “emailbody=” line. Note that this must be one continuous line.
Code:
\nExtension: ${VM_MAILBOX}\nVoicemail Transcription: \n\n

Step 7​

We’ll then need to create a secondary script that will grab the email generated by Asterisk and modify it to include the voicemail transcription. You can view the script below or download it here:
Code:
nano /sbin/vm-modify.sh
Code:
#!/bin/sh
cat > /tmp/voicemail.tmp

# Grab the extension of the voicemail
EXT=`cat /tmp/voicemail.tmp | grep Extension | awk {'print $2'}`

# Transcribe the voicemail for the given extension
/sbin/voicemail-transcribe.sh default $EXT > /tmp/transcribe.tmp

# Append the outgoing email with the voicemail transcription
cat /tmp/voicemail.tmp \
| sed "/Voicemail Transcription:/ r /tmp/transcribe.tmp" \
| /usr/sbin/sendmail -t

# Clean up temporary files
rm /tmp/voicemail.tmp
rm /tmp/transcribe.tmp
Then, ensure that the script is executable:
Code:
chmod +x /sbin/vm-modify.sh

Step 8​

You’ll then need to modify the Asterisk voicemail configuration to use our script instead of the default sendmail agent:
Code:
nano /etc/asterisk/voicemail.conf
And add the mailcmd option to use our script:
Code:
[general]
…
mailcmd=/sbin/vm-modify.sh
And that’s it! Now whenever a user receives a voicemail, the message will be transcribed and sent in an email along with their voicemail message. You can also modify these scripts to perform other fancy tasks with your voicemail transcription!
 
Last edited:
In regards to the EU mailing addresses, I would check out Estonia as a whole. It is quickly becoming one of the most "digital countries" in the EU. They have recently been offering "e-residency" for people who don't even plan on going there across the world, just so they can set up or do business through Estonia. One of their most respectable companies includes mail forwarding, virtual offices Estonian number with call flow, consulting, and even a fucking virtual secretary. The process to get the eResidency is easy but does take 30 some odd days. This may not be what you're looking for but it's very interesting and worth looking at. There is more of an incentive for these types services to be consistently good since the country as a whole seems to be going all in on virtual.


B2baltics is a licensed mailbox service provider for e-residency companies. E-residency in Estonia is a government-issued digital identity that allows anyone in the world to start and manage a global business.

E-residents can establish an European Union company online within a day and then administer it remotely from anywhere in the world while accessing various tools that are necessary to grow.

The B2baltics mailbox service provides consumers with a virtual address, an official contact person, and mail forwarding. It also includes a legal address, a contact person, physical mail reception, and email forwarding.

Estonian law permits entrepreneurs to establish their company in Estonia even if the business is operated primarily outside of the country. This can happen if the company has an agreement with a licensed service provider who is responsible for receiving the company’s mail, which is otherwise known as the contact person. B2b handles bookkeeping for customers’ Estonian businesses, taking care of monthly value-added tax (VAT) reporting and annual reports.

And their mailbox service will scan and forward mail to you daily.

There is also this other Estonian company of which offers rentals for physical parcel dropboxes. Pretty much all couriers deliver to it and you just plop it down wherever there is electricity.
 
Pretty much no free speech and suing for libel/defamation is incredibly easy, a poor choice all things considered.

Also the 'Ministry of women, gender and diversity' is a thing, do I have to say more?
Okay, but what if he put a statement up on here professing his enternal hatred of the British (which is true), and how the Falklands/Malvinas should be Argentinian (which may or not be his view, but who cares)?

Ha! Checkmate Argentina! Total immunity for KF forever!

Seriously though, you can register a foreign LLC here in Arizona, but I don't think it would confer any benefit over someplace like Wyoming or Nevada. We also have corporate income tax of about 7%, and are slowing turning purple. So anything I know firsthand that I could suggest would not a stunning option compared to your alternatives.
 
  • Like
Reactions: NickGer
PROTIP: Being a "registered agent" is not some kind of regulated industry. It's literally just some retard who will accept service of process. You could potentially kill two birds with one stone by inquiring with, say, certain LOLyers of your acquaintance, if they'd be willing to accept mail and service of process on behalf of your business. It can't hurt to ask.
 
I'm not encouraging setting up a PBX just for transcripts, but the method detailed above might be helpful in giving you some ideas for setting up a rube goldberg method of getting what you want since, to quote the archived blogpost "This process can also work with recorded calls and other audio files."
For transcription you should check out https://github.com/openai/whisper for more modern AI based speech recognition.
It's very accurate and pretty easy to set up.
 
If you need help setting up an actual PO box at a post office I can help. I'm not sure if they do permanent mail forwarding but I could get something temporary set up today or tomorrow (edit: if you want to do that contact me on the email associated with my account)
 
Last edited:
  • Like
Reactions: NickGer
PROTIP: Being a "registered agent" is not some kind of regulated industry. It's literally just some retard who will accept service of process. You could potentially kill two birds with one stone by inquiring with, say, certain LOLyers of your acquaintance, if they'd be willing to accept mail and service of process on behalf of your business. It can't hurt to ask.
This.

There was a statutory agent for a 501(c)3 I worked for who was both that, and their general counsel. I always thought that was a smart move.

Texas is getting a lot of buzz these days because of their social media law, but I don't know the pros and cons of incorporating there. Or how much of a benefit that law (if any) would confer to the Farms. It seems mainly designed to keep people from getting yetted off Twitter and FB.

It's probably fair to say, based on that law, and other things, that they don't hold big tech in high regard though. Shitting on California, New York, and Washington D.C. is a time honored tradition in the Lone Star state.
 
They probably offered the pajeet to show pics of bobs and vagene in exchange for dropping service. And now the poor guy is just traumatized because of the deformed, hairy tranny-tubular-tits and lovecraftian horror stinkditches. :cryblood:
It was nothing improper like that, sir. He was just sympathetic because his uncle is also a trains man.
 
Would GabPay help as a solution to getting/sending money?


Torba may be a religious nutwhack but if his paypal alternative is as good as promised, it's certainly worth a shot, especially in light of their recent 'mistake'.

Lmao fuck that, don't touch anything Torba has his hands on and especially don't trust him to have any of your payment info
 
Back