Skip to content

Instantly share code, notes, and snippets.

View lucahammer's full-sized avatar
💭
Cleaning code.

Luca Hammer lucahammer

💭
Cleaning code.
View GitHub Profile
'''
MIT License
Copyright (c) 2022 Luca Hammer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@lucahammer
lucahammer / twecoll
Last active December 12, 2021 08:42
Modified version of twecoll to generate GDF files for use with Gephi. Use "python twecoll.py edgelist -g -m USERNAME"
#!/usr/bin/env python
'''
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
@lucahammer
lucahammer / tweets-jsonl-to-co-hashtag-gexf.py
Last active October 13, 2021 11:50
DMI Summerschool Deepfakes Co-Hashtag Network
'''
Copyright 2021 Luca Hammer
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:
@lucahammer
lucahammer / voteswiper-to-gdf.py
Last active August 21, 2021 12:11
Python script to create a Gephi network from voteswiper.org data
'''
Copyright 2021 Luca Hammer
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
@lucahammer
lucahammer / premiumapi.py
Last active April 6, 2021 17:22
Example script to collect old Tweets with the Twitter Premium Search API. Article: https://lucahammer.com/?p=350
'''
MIT License
Copyright (c) 2019 Luca Hammer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@lucahammer
lucahammer / readme.txt
Created October 12, 2020 14:18
Readme of Twitter data export 2020-10-12
INTRODUCTION
============
This archive was generated at the request of the following user:
- @username at the time the archive was generated: luca
- Account ID: 11985982
The easiest way to navigate your archive is to open the HTML renderer in a desktop web browser by double clicking the “Your archive” file included in the main folder once the archive is unzipped.
Note that the HTML renderer only works if the archive is less than 50GB. Also note that the HTML renderer only includes a subset of the data included in the archive. To see all the data included in the archive, please navigate the JSON files located in the “data” folder.
@lucahammer
lucahammer / multiprocessing-test.py
Created February 26, 2020 15:12
Testing python multiprocessing
from multiprocessing import Pool
import jsonlines
from datetime import datetime
def get_full_text(tweet):
if tweet['truncated']:
return(tweet['extended_tweet']['full_text'])
return (tweet['text'])
def dothings(tweets):
@lucahammer
lucahammer / perf_3900x_windows10.ipynb
Created February 26, 2020 14:56
Performance Test. Ryzen R9 3900X Windows 10
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lucahammer
lucahammer / perf_4670k_windows10.ipynb
Created February 26, 2020 14:54
Performance Test. Intel i5 4670k at 4.5GHz Windows 10
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lucahammer
lucahammer / perf_3900x_ubuntu.ipynb
Last active February 26, 2020 13:32
Performance Test. Ryzen 9 3900X Ubuntu 18.04
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.