AdityaDees: twitter

Hot

https://publishers.chitika.com/

Contact us for advertising.
Showing posts with label twitter. Show all posts
Showing posts with label twitter. Show all posts

21 February 2022

Ask Twitter Luncurkan Fitur Tip Dengan Crypto Ethereum (ETH) AdityaDs

16:00 0

Fitur Tip Jar pada twitter muncul setelah Twitter melihat banyak sekali pengguna yang menautkan akun PayPal atau metode pembayaran lain setelah tweet mereka viral dan disukai oleh banyak orang.

Dengan fitur Tip Jar, maka Twitter akan mendukung para pengguna yang ingin mendukung satu sama lain selain lewat opsi yang sudah disediakan seperti follow, like, atau retweet.

"Tip Jar adalah cara mudah untuk mendukung suara luar biasa yang membentuk percakapan di Twitter. Ini adalah langkah pertama dalam pekerjaan kami untuk menciptakan cara baru bagi orang-orang untuk menerima dan menunjukkan dukungan di Twitter, dengan uang," kata Senior Product Manager Twitter, Esther Crawford.

Untuk menggunakannya, pengguna mesti mengaktifkan fitur lebih dulu. Mereka bisa ke halaman profil, kemudian ketuk opsi edit profile, dan aktifkan Tip Jar.

Beberapa metode pembayaran untuk memberikan uang ke Tip Jar adalah Bandcmp, Cash App, Patreon, PayPal, serta Venmo. Metode ini bisa digunakan pengguna iOS maupun Android.

Selain itu, Twitter juga mengaku bahwa aplikasi tidak akan mengambil potongan apapun dalam tip. Bahkan, mereka juga memudahkan pemberian tip langsung dari Spaces.

Pada 23 September 2021 lalu. Twitter mengaktifkan fitur tip jar dengan Bitcoin yang menjadi opsi pembayaran cryptocurrency pertama yang tersedia melalui fitur tip jar-nya.

Sementara pada hari Rabu kemarin (17/02), platform media sosial raksasa tersebut menambahkan banyak layanan pembayaran baru ke opsi tip jar-nya. Termasuk koin kripto Ethereum (ETH).

Fitur Tip dari Twitter

Pengguna Twitter yang ingin menerima tip berupa Ethereum hanya perlu mengaktifkan ‘fitur tip‘ di platform dan menambahkan Ethereum address ke bagian khusus profil mereka.

Sampai saat ini, Twitter tidak memberikan perincian lain yang berkaitan mengenai pemberian tip menggunakan Ethereum.

Namun jika berbicara tentang Bitcoin, tip dapat dikirim melalui Lightning Network, yang mengirimkan pembayaran menggunakan aplikasi Strike. Sementara itu, tip bisa dikirimkan pengguna di ponsel iOS dan Android.

Pengguna yang menerima tip tersebut, baik berupa Bitcoin maupun Ethereum, twitter telah menjamin jika pengguna mereka akan menerima 100% dari tip yang mereka terima. Perusahaan menyatakan bahwa fitur ini dibuat sebagai bentuk yang menunjukkan sebuah dukungan, menunjukkan penghargaan, membantu atau memberi penghargaan kepada siapa pun yang pengguna inginkan.

Mulai dari konten kreator, para jurnalis, ataupun artis yang mereka gemari. Sementara itu, fitur tip ini juga mendukung layanan pembayaran lain seperti Cash App, GoFundMe, Patreon, Wealthsimple, dan Venmo.

Selain inovasinya untuk sektor mata uang digital seperti Bitcoin dan Ethereum, belum lama ini Twitter juga meluncurkan fitur yang memungkinkan pengguna Twitter Blue untuk mengunggah NFT sebagai gambar profil mereka, tetapi membatasi kemampuan itu untuk iOS.

Read More

13 April 2014

An (Relatively) Easy Way for Installing Social Feed Manager on Mac OSX

15:45 0

On Monday, March 24, 2014 at Code4Lib 2014 Conference in Raleigh, North Carolina, i was fortunate to get the opportunity to learn Social Feed Manager (SFM), directly from the developers, Daniel Chudnov, Daniel Kerchner and also Laura Wruber from George Washington University (thank you for all of you for patienly guide me to get SFM working). SFM is a django application for managing multiple feeds of social media data. It's been a long time i'm searching for this kind of software to grab social media feed from Twitter. I know that Twitter already provide an API to fetch tweets, but i'm too lazy to learn the API :D, so SFM is great solution for me.



This article will try to explain step by step on how to install SFM on Mac OSX. Why Mac OSX? because i use Mac OSX on Macbook Air everyday for my work. Currently at the time this article was written, i'm using Mac OSX version 10.7.5 (Lion) with latest update from Apple. Below are the specs of my Macbook Air:



Ok, lets get it started, before installing SFM on Mac OSX you NEED to have/install these requirements:


  1. A working (and fast if you have) Internet connection

  2. A Twitter account!

  3. Latest Xcode. After finished installing Xcode, open the Xcode.app and accept the Xcode license agreement.

  4. Latest PostgreSQL database server for Mac OSX. I prefer Postgres.app, "The easiest way to get started with PostgreSQL on the Mac" <- that's what they said about it, and i think it is true :)

  5. and after installing Xcode and PostgreSQL, you need to install Homebrew, a package manager similiar to apt on Ubuntu for Mac OSX.




After successfully installing above three softwares, now you must open Terminal application (press Command+Space button and type "Terminal" if you're too lazy to find it :D) and do the "geek typing" works :D. If you



First installing python package manager, "pip" by typing:

$ sudo easy_install pip



Second, you need to install python "virtualenv" package by typing:

$ sudo pip install virtualenv

with virtualenv you can localize all required python library dependacies only on project directory (in this case is SFM).



Now, we start to install the SFM itself by cloning the source code directly from the SFM GitHub repository by typing:

$ cd
$ git clone git://github.com/gwu-libraries/social-feed-manager.git
$ cd social-feed-manager

In this example, we install the SFM on our home directory. You will see that there is social-feed-manager directory on our home directory now.



Currently, we are inside the social-feed-manager directory. We will create a virtual environment directory inside this folder, and we name it ENV by invoking below commands:

$ virtualenv --no-site-packages ENV
$ source ENV/bin/activate

You will see there is something a bit different with our command shell, it is appended with "(ENV)" which means that we are already inside our python sandbox/virtual environment.





So far so good? Hopefully! :D. Don't worry we will see our SFM working in a few hour to go hahaha, just kidding, in a "few steps" to go. Next step is preparing our PostgreSQL database for SFM to store its data, so we will launch our Postgres.app application and click "Open psql" button to open "psql" terminal. On psql console type below commands:

CREATE USER sfmuser with createdb PASSWORD 'sfmuser_secret';
CREATE DATABASE sfmdb WITH OWNER sfmuser;

Remember we create a new database user/role named "sfmuser" with password "sfmuser_secret" and database named "sfmdb". We will use these values on SFM configuration file later.




Now go back to the first Terminal application where we installing SFM. We will install all python library dependancies needed by SFM such as Django, Django Social Auth, Oauth, and etc. using below command:

$ pip install -r requirements.txt

Just wait until all process finished, and if everything is running smooth you'll see like this:



Continue! now type the following commands:

$ cd sfm
$ cp sfm/local_settings.py.template sfm/local_settings.py
$ nano sfm/local_settings.py

Now you'll see that you're opening the local_settings.py file using nano text editor (yes, you can use another text editors to edit the file if you're allergic to nano), and you must edit some value inside it according to your twitter app configuration. To create your Twitter app, login to https://apps.twitter.com using your Twitter account and create new application in https://apps.twitter.com/app/new. Fill the new application form like mine below:

After creating your new Twitter application will get an API Key like this.






On local_settings.py you need to change these lines according to your database settings


DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'sfmdb',
'USER': 'sfmuser',
'PASSWORD': 'sfmuser_secret',
'HOST': 'localhost',
'PORT': '5432',
}
}

You MUST also change below lines according to your Twitter app API settings
TWITTER_DEFAULT_USERNAME = 'YOUR TWITTER USERNAME'
TWITTER_CONSUMER_KEY = 'YOUR TWITTER API KEY'
TWITTER_CONSUMER_SECRET = 'YOUR TWITTER API SECRET'

Save the changes by pressing Control+X and then press Y (if you're using nano).




Now you must edit the wsgi.py file by typing these commands:

$ cp sfm/wsgi.py.template sfm/wsgi.py
$ nano sfm/wsgi.py

Remove "#" in front of lines like below and change the ENV line so it will be look like this :
import site
ENV = '/Users/arienugraha/social-feed-manager/ENV'
site.addsitedir(ENV + '/lib/python2.7/site-packages')

Don't forget to save the changes by pressing Control+X and then press Y (if you're using nano).



Next step we will create setup a database to be used by djago by typing this command

$ ./manage.py syncdb

You'll be asked to create superuser for SFM administration page (DON'T USE YOUR TWITTER USERNAME!). In this article i create superuser with username "admin" and password "admin". If everything went smooth you'll something like this:




Next run this:

$ ./manage.py migrate



Hoorrayyyy!!! we almost finished! Next we need to run the Django built in web server (yes, you don't have to use Apache or another web server for development and testing) so we can access SFM administration UI. Run below command

$ ./manage.py runserver

Open your web browser and go to http://localhost:8000/admin to access SFM administration UI. By default Django web server will run on port 8000. If you want Django to run on another port, say it port 9090, just run the command like this :
$ ./manage.py runserver 9090

and go to http://localhost:9090/admin on your web browser! You'll see something like this on your web browser if everything is OK :




Login with username we already create on previous "syncdb" step, in this example the username is "admin" and the password is "admin", and you'll see webpage like this:





Fiuuhhhh!!! now we have our SFM installed and we are ready to grab Twitter feeds we want. The question is HOW DO I GRAB THE FEEDS THAT I WANT? Relax bro, relax :D. Suppose we want to grab tweets from Twitter user named @slims_official, what we must do is adding her/his Twitter screen name on http://localhost:8000/admin/ui/twitteruser/add/ and fill it on Name form field like this:


then click "Save" button at the bottom of the screen. Now on Terminal, run this command to grab about 3200 latest tweets from this user:
$ ./manage.py user_timeline

and you'll see something like this on your Terminal screen:

You see that SFM grab 200 tweets each time from the latest to the older tweets.



That's it hopefully you will find this article useful. Next i will try to write an article on how to use/utilize feeds from SFM with PHP. (Please don't ask me about Python and Django, i can only write standard "Hello World" using Python :D)

Read More

https://payclick.com/

Contact us for advertising.